OLD | NEW |
1 # Copyright 2014 The Crashpad Authors. All rights reserved. | 1 # Copyright 2014 The Crashpad Authors. All rights reserved. |
2 # | 2 # |
3 # Licensed under the Apache License, Version 2.0 (the "License"); | 3 # Licensed under the Apache License, Version 2.0 (the "License"); |
4 # you may not use this file except in compliance with the License. | 4 # you may not use this file except in compliance with the License. |
5 # You may obtain a copy of the License at | 5 # You may obtain a copy of the License at |
6 # | 6 # |
7 # http://www.apache.org/licenses/LICENSE-2.0 | 7 # http://www.apache.org/licenses/LICENSE-2.0 |
8 # | 8 # |
9 # Unless required by applicable law or agreed to in writing, software | 9 # Unless required by applicable law or agreed to in writing, software |
10 # distributed under the License is distributed on an "AS IS" BASIS, | 10 # distributed under the License is distributed on an "AS IS" BASIS, |
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
12 # See the License for the specific language governing permissions and | 12 # See the License for the specific language governing permissions and |
13 # limitations under the License. | 13 # limitations under the License. |
14 | 14 |
15 { | 15 { |
16 'targets': [ | 16 'targets': [ |
17 { | 17 { |
18 'target_name': 'minidump', | 18 'target_name': 'minidump', |
19 'type': 'static_library', | 19 'type': 'static_library', |
20 'dependencies': [ | 20 'dependencies': [ |
21 '../compat/compat.gyp:compat', | 21 '../compat/compat.gyp:compat', |
| 22 '../snapshot/snapshot.gyp:snapshot', |
22 '../third_party/mini_chromium/mini_chromium/base/base.gyp:base', | 23 '../third_party/mini_chromium/mini_chromium/base/base.gyp:base', |
23 '../util/util.gyp:util', | 24 '../util/util.gyp:util', |
24 ], | 25 ], |
25 'export_dependent_settings': [ | 26 'export_dependent_settings': [ |
26 '../compat/compat.gyp:compat', | 27 '../compat/compat.gyp:compat', |
27 ], | 28 ], |
28 'include_dirs': [ | 29 'include_dirs': [ |
29 '..', | 30 '..', |
30 ], | 31 ], |
31 'sources': [ | 32 'sources': [ |
(...skipping 30 matching lines...) Expand all Loading... |
62 'minidump_writable.h', | 63 'minidump_writable.h', |
63 'minidump_writer_util.cc', | 64 'minidump_writer_util.cc', |
64 'minidump_writer_util.h', | 65 'minidump_writer_util.h', |
65 ], | 66 ], |
66 }, | 67 }, |
67 { | 68 { |
68 'target_name': 'minidump_test', | 69 'target_name': 'minidump_test', |
69 'type': 'executable', | 70 'type': 'executable', |
70 'dependencies': [ | 71 'dependencies': [ |
71 'minidump', | 72 'minidump', |
| 73 '../snapshot/snapshot.gyp:snapshot_test_lib', |
72 '../third_party/gtest/gtest.gyp:gtest', | 74 '../third_party/gtest/gtest.gyp:gtest', |
73 '../third_party/gtest/gtest.gyp:gtest_main', | 75 '../third_party/gtest/gtest.gyp:gtest_main', |
74 '../third_party/mini_chromium/mini_chromium/base/base.gyp:base', | 76 '../third_party/mini_chromium/mini_chromium/base/base.gyp:base', |
75 ], | 77 ], |
76 'include_dirs': [ | 78 'include_dirs': [ |
77 '..', | 79 '..', |
78 ], | 80 ], |
79 'sources': [ | 81 'sources': [ |
80 'minidump_context_writer_test.cc', | 82 'minidump_context_writer_test.cc', |
81 'minidump_crashpad_info_writer_test.cc', | 83 'minidump_crashpad_info_writer_test.cc', |
(...skipping 15 matching lines...) Expand all Loading... |
97 'test/minidump_memory_writer_test_util.cc', | 99 'test/minidump_memory_writer_test_util.cc', |
98 'test/minidump_memory_writer_test_util.h', | 100 'test/minidump_memory_writer_test_util.h', |
99 'test/minidump_string_writer_test_util.cc', | 101 'test/minidump_string_writer_test_util.cc', |
100 'test/minidump_string_writer_test_util.h', | 102 'test/minidump_string_writer_test_util.h', |
101 'test/minidump_writable_test_util.cc', | 103 'test/minidump_writable_test_util.cc', |
102 'test/minidump_writable_test_util.h', | 104 'test/minidump_writable_test_util.h', |
103 ], | 105 ], |
104 }, | 106 }, |
105 ], | 107 ], |
106 } | 108 } |
OLD | NEW |