2015-03-31 17:06:28 -04:00
|
|
|
# Copyright 2014 The Crashpad Authors. All rights reserved.
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
|
|
|
{
|
|
|
|
'includes': [
|
|
|
|
'../build/crashpad.gypi',
|
|
|
|
],
|
|
|
|
'targets': [
|
2017-04-11 14:48:10 -04:00
|
|
|
{
|
|
|
|
'target_name': 'crashpad_minidump_test_lib',
|
|
|
|
'type': 'static_library',
|
|
|
|
'dependencies': [
|
|
|
|
'minidump.gyp:crashpad_minidump',
|
2020-05-06 20:39:19 -04:00
|
|
|
'../third_party/googletest/googletest.gyp:googletest',
|
2017-04-11 14:48:10 -04:00
|
|
|
'../third_party/mini_chromium/mini_chromium.gyp:base',
|
|
|
|
],
|
|
|
|
'include_dirs': [
|
|
|
|
'..',
|
|
|
|
],
|
|
|
|
'sources': [
|
2017-10-31 14:28:20 -04:00
|
|
|
'test/minidump_byte_array_writer_test_util.cc',
|
|
|
|
'test/minidump_byte_array_writer_test_util.h',
|
2017-04-11 14:48:10 -04:00
|
|
|
'test/minidump_context_test_util.cc',
|
|
|
|
'test/minidump_context_test_util.h',
|
|
|
|
'test/minidump_file_writer_test_util.cc',
|
|
|
|
'test/minidump_file_writer_test_util.h',
|
|
|
|
'test/minidump_memory_writer_test_util.cc',
|
|
|
|
'test/minidump_memory_writer_test_util.h',
|
|
|
|
'test/minidump_rva_list_test_util.cc',
|
|
|
|
'test/minidump_rva_list_test_util.h',
|
|
|
|
'test/minidump_string_writer_test_util.cc',
|
|
|
|
'test/minidump_string_writer_test_util.h',
|
|
|
|
'test/minidump_user_extension_stream_util.cc',
|
|
|
|
'test/minidump_user_extension_stream_util.h',
|
|
|
|
'test/minidump_writable_test_util.cc',
|
|
|
|
'test/minidump_writable_test_util.h',
|
|
|
|
],
|
|
|
|
},
|
2015-03-31 17:06:28 -04:00
|
|
|
{
|
|
|
|
'target_name': 'crashpad_minidump_test',
|
|
|
|
'type': 'executable',
|
|
|
|
'dependencies': [
|
2017-04-11 14:48:10 -04:00
|
|
|
'crashpad_minidump_test_lib',
|
2015-03-31 17:06:28 -04:00
|
|
|
'minidump.gyp:crashpad_minidump',
|
|
|
|
'../snapshot/snapshot_test.gyp:crashpad_snapshot_test_lib',
|
2020-05-06 20:39:19 -04:00
|
|
|
'../test/test.gyp:crashpad_googletest_main',
|
test: Move util/test to its own top-level directory, test.
After 9e79ea1da719, it no longer makes sense for crashpad_util_test_lib
to “hide” in util/util_test.gyp. All of util/test is moved to its own
top-level directory, test, which all other test code is allowed to
depend on. test, too, is allowed to depend on all other non-test code.
In a future change, when crashpad_util_test_lib gains a dependency on
crashpad_client, it won’t look so weird for something in util (even
though it’s in util/test) to depend on something in client, because the
thing that needs to depend on client will live in test, not util.
BUG=crashpad:33
R=scottmg@chromium.org
Review URL: https://codereview.chromium.org/1051533002
2015-03-31 17:44:14 -04:00
|
|
|
'../test/test.gyp:crashpad_test',
|
2020-05-06 20:39:19 -04:00
|
|
|
'../third_party/googletest/googletest.gyp:googletest',
|
2015-03-31 17:06:28 -04:00
|
|
|
'../third_party/mini_chromium/mini_chromium.gyp:base',
|
|
|
|
'../util/util.gyp:crashpad_util',
|
|
|
|
],
|
|
|
|
'include_dirs': [
|
|
|
|
'..',
|
|
|
|
],
|
|
|
|
'sources': [
|
2017-11-01 16:22:12 -04:00
|
|
|
'minidump_annotation_writer_test.cc',
|
2017-10-31 14:28:20 -04:00
|
|
|
'minidump_byte_array_writer_test.cc',
|
2015-03-31 17:06:28 -04:00
|
|
|
'minidump_context_writer_test.cc',
|
|
|
|
'minidump_crashpad_info_writer_test.cc',
|
|
|
|
'minidump_exception_writer_test.cc',
|
|
|
|
'minidump_file_writer_test.cc',
|
2017-04-11 14:48:10 -04:00
|
|
|
'minidump_handle_writer_test.cc',
|
2015-10-13 13:15:44 -07:00
|
|
|
'minidump_memory_info_writer_test.cc',
|
2015-03-31 17:06:28 -04:00
|
|
|
'minidump_memory_writer_test.cc',
|
|
|
|
'minidump_misc_info_writer_test.cc',
|
|
|
|
'minidump_module_crashpad_info_writer_test.cc',
|
|
|
|
'minidump_module_writer_test.cc',
|
|
|
|
'minidump_rva_list_writer_test.cc',
|
|
|
|
'minidump_simple_string_dictionary_writer_test.cc',
|
|
|
|
'minidump_string_writer_test.cc',
|
|
|
|
'minidump_system_info_writer_test.cc',
|
|
|
|
'minidump_thread_id_map_test.cc',
|
|
|
|
'minidump_thread_writer_test.cc',
|
2016-02-11 17:19:30 -08:00
|
|
|
'minidump_unloaded_module_writer_test.cc',
|
2016-02-29 13:28:05 -08:00
|
|
|
'minidump_user_stream_writer_test.cc',
|
2015-03-31 17:06:28 -04:00
|
|
|
'minidump_writable_test.cc',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
}
|