| OLD | NEW |
| 1 # Copyright 2015 Google Inc. All Rights Reserved. | 1 # Copyright 2015 Google Inc. 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, |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 }, | 56 }, |
| 57 { | 57 { |
| 58 'target_name': 'refinery_unittests', | 58 'target_name': 'refinery_unittests', |
| 59 'type': 'executable', | 59 'type': 'executable', |
| 60 'sources': [ | 60 'sources': [ |
| 61 'analyzers/analysis_runner_unittest.cc', | 61 'analyzers/analysis_runner_unittest.cc', |
| 62 'analyzers/exception_analyzer_unittest.cc', | 62 'analyzers/exception_analyzer_unittest.cc', |
| 63 'analyzers/memory_analyzer_unittest.cc', | 63 'analyzers/memory_analyzer_unittest.cc', |
| 64 'analyzers/module_analyzer_unittest.cc', | 64 'analyzers/module_analyzer_unittest.cc', |
| 65 'analyzers/thread_analyzer_unittest.cc', | 65 'analyzers/thread_analyzer_unittest.cc', |
| 66 'analyzers/type_propagator_analyzer_unittest.cc', |
| 66 'analyzers/unloaded_module_analyzer_unittest.cc', | 67 'analyzers/unloaded_module_analyzer_unittest.cc', |
| 67 'core/address_unittest.cc', | 68 'core/address_unittest.cc', |
| 68 'core/addressed_data_unittest.cc', | 69 'core/addressed_data_unittest.cc', |
| 69 'detectors/lfh_entry_detector_unittest.cc', | 70 'detectors/lfh_entry_detector_unittest.cc', |
| 70 'process_state/layer_data_unittest.cc', | 71 'process_state/layer_data_unittest.cc', |
| 71 'process_state/process_state_unittest.cc', | 72 'process_state/process_state_unittest.cc', |
| 72 'process_state/process_state_util_unittest.cc', | 73 'process_state/process_state_util_unittest.cc', |
| 73 'symbols/simple_cache_unittest.cc', | 74 'symbols/simple_cache_unittest.cc', |
| 74 'symbols/symbol_provider_unittest.cc', | 75 'symbols/symbol_provider_unittest.cc', |
| 75 'symbols/symbol_provider_util_unittest.cc', | 76 'symbols/symbol_provider_util_unittest.cc', |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 'core/core.gyp:refinery_core_lib', | 142 'core/core.gyp:refinery_core_lib', |
| 142 'process_state/process_state.gyp:process_state_lib', | 143 'process_state/process_state.gyp:process_state_lib', |
| 143 'types/types.gyp:types_lib', | 144 'types/types.gyp:types_lib', |
| 144 'validators/validators.gyp:validators_lib', | 145 'validators/validators.gyp:validators_lib', |
| 145 '<(src)/base/base.gyp:base', | 146 '<(src)/base/base.gyp:base', |
| 146 '<(src)/syzygy/minidump/minidump.gyp:minidump_lib', | 147 '<(src)/syzygy/minidump/minidump.gyp:minidump_lib', |
| 147 ], | 148 ], |
| 148 }, | 149 }, |
| 149 ] | 150 ] |
| 150 } | 151 } |
| OLD | NEW |