Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(230)

Side by Side Diff: src/processor/processor.gyp

Issue 1643633004: Improvements to GYP build (Closed) Base URL: https://chromium.googlesource.com/breakpad/breakpad@master
Patch Set: Address review comments Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/common/common.gyp ('k') | src/third_party/libdisasm/libdisasm.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 Google Inc. All rights reserved. 1 # Copyright 2014 Google Inc. All rights reserved.
2 # 2 #
3 # Redistribution and use in source and binary forms, with or without 3 # Redistribution and use in source and binary forms, with or without
4 # modification, are permitted provided that the following conditions are 4 # modification, are permitted provided that the following conditions are
5 # met: 5 # met:
6 # 6 #
7 # * Redistributions of source code must retain the above copyright 7 # * Redistributions of source code must retain the above copyright
8 # notice, this list of conditions and the following disclaimer. 8 # notice, this list of conditions and the following disclaimer.
9 # * Redistributions in binary form must reproduce the above 9 # * Redistributions in binary form must reproduce the above
10 # copyright notice, this list of conditions and the following disclaimer 10 # copyright notice, this list of conditions and the following disclaimer
(...skipping 10 matching lines...) Expand all
21 # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 21 # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 22 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 23 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 24 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 25 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 26 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 28
29 { 29 {
30 'includes': [ 30 'includes': [
31 '../build/common.gypi',
31 'processor_tools.gypi', 32 'processor_tools.gypi',
32 ], 33 ],
33 'targets': [ 34 'targets': [
34 { 35 {
35 'target_name': 'processor', 36 'target_name': 'processor',
36 'type': 'static_library', 37 'type': 'static_library',
37 'sources': [ 38 'sources': [
38 'address_map-inl.h', 39 'address_map-inl.h',
39 'address_map.h', 40 'address_map.h',
40 'basic_code_module.h', 41 'basic_code_module.h',
41 'basic_code_modules.cc', 42 'basic_code_modules.cc',
42 'basic_code_modules.h', 43 'basic_code_modules.h',
43 'basic_source_line_resolver.cc', 44 'basic_source_line_resolver.cc',
44 'basic_source_line_resolver_types.h', 45 'basic_source_line_resolver_types.h',
45 'binarystream.cc',
46 'binarystream.h',
47 'call_stack.cc', 46 'call_stack.cc',
48 'cfi_frame_info-inl.h', 47 'cfi_frame_info-inl.h',
49 'cfi_frame_info.cc', 48 'cfi_frame_info.cc',
50 'cfi_frame_info.h', 49 'cfi_frame_info.h',
51 'contained_range_map-inl.h', 50 'contained_range_map-inl.h',
52 'contained_range_map.h', 51 'contained_range_map.h',
53 'disassembler_x86.cc', 52 'disassembler_x86.cc',
54 'disassembler_x86.h', 53 'disassembler_x86.h',
55 'dump_context.cc', 54 'dump_context.cc',
56 'dump_object.cc', 55 'dump_object.cc',
(...skipping 14 matching lines...) Expand all
71 'minidump_processor.cc', 70 'minidump_processor.cc',
72 'module_comparer.cc', 71 'module_comparer.cc',
73 'module_comparer.h', 72 'module_comparer.h',
74 'module_factory.h', 73 'module_factory.h',
75 'module_serializer.cc', 74 'module_serializer.cc',
76 'module_serializer.h', 75 'module_serializer.h',
77 'pathname_stripper.cc', 76 'pathname_stripper.cc',
78 'pathname_stripper.h', 77 'pathname_stripper.h',
79 'postfix_evaluator-inl.h', 78 'postfix_evaluator-inl.h',
80 'postfix_evaluator.h', 79 'postfix_evaluator.h',
80 'proc_maps_linux.cc',
81 'process_state.cc', 81 'process_state.cc',
82 'range_map-inl.h', 82 'range_map-inl.h',
83 'range_map.h', 83 'range_map.h',
84 'simple_serializer-inl.h', 84 'simple_serializer-inl.h',
85 'simple_serializer.h', 85 'simple_serializer.h',
86 'simple_symbol_supplier.cc', 86 'simple_symbol_supplier.cc',
87 'simple_symbol_supplier.h', 87 'simple_symbol_supplier.h',
88 'source_line_resolver_base.cc', 88 'source_line_resolver_base.cc',
89 'source_line_resolver_base_types.h', 89 'source_line_resolver_base_types.h',
90 'stack_frame_cpu.cc', 90 'stack_frame_cpu.cc',
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 '../common/common.gyp:common', 136 '../common/common.gyp:common',
137 '../third_party/libdisasm/libdisasm.gyp:libdisasm', 137 '../third_party/libdisasm/libdisasm.gyp:libdisasm',
138 ], 138 ],
139 }, 139 },
140 { 140 {
141 'target_name': 'processor_unittests', 141 'target_name': 'processor_unittests',
142 'type': 'executable', 142 'type': 'executable',
143 'sources': [ 143 'sources': [
144 'address_map_unittest.cc', 144 'address_map_unittest.cc',
145 'basic_source_line_resolver_unittest.cc', 145 'basic_source_line_resolver_unittest.cc',
146 'binarystream_unittest.cc',
147 'cfi_frame_info_unittest.cc', 146 'cfi_frame_info_unittest.cc',
148 'contained_range_map_unittest.cc', 147 'contained_range_map_unittest.cc',
149 'disassembler_x86_unittest.cc', 148 'disassembler_x86_unittest.cc',
150 'exploitability_unittest.cc', 149 'exploitability_unittest.cc',
151 'fast_source_line_resolver_unittest.cc', 150 'fast_source_line_resolver_unittest.cc',
152 'map_serializers_unittest.cc', 151 'map_serializers_unittest.cc',
153 'microdump_processor_unittest.cc', 152 'microdump_processor_unittest.cc',
154 'minidump_processor_unittest.cc', 153 'minidump_processor_unittest.cc',
155 'minidump_unittest.cc', 154 'minidump_unittest.cc',
156 'pathname_stripper_unittest.cc', 155 'pathname_stripper_unittest.cc',
(...skipping 17 matching lines...) Expand all
174 '..', 173 '..',
175 ], 174 ],
176 'dependencies': [ 175 'dependencies': [
177 'processor', 176 'processor',
178 '../build/testing.gypi:gmock', 177 '../build/testing.gypi:gmock',
179 '../build/testing.gypi:gtest', 178 '../build/testing.gypi:gtest',
180 ], 179 ],
181 }, 180 },
182 ], 181 ],
183 } 182 }
OLDNEW
« no previous file with comments | « src/common/common.gyp ('k') | src/third_party/libdisasm/libdisasm.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698