| OLD | NEW |
| 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 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 'synth_minidump.h', | 127 'synth_minidump.h', |
| 128 'tokenize.cc', | 128 'tokenize.cc', |
| 129 'tokenize.h', | 129 'tokenize.h', |
| 130 'windows_frame_info.h', | 130 'windows_frame_info.h', |
| 131 ], | 131 ], |
| 132 'include_dirs': [ | 132 'include_dirs': [ |
| 133 '..', | 133 '..', |
| 134 ], | 134 ], |
| 135 'dependencies': [ | 135 'dependencies': [ |
| 136 '../common/common.gyp:common', | 136 '../common/common.gyp:common', |
| 137 '../third_party/libdisasm/libdisasm.gyp:libdisasm', | 137 '../third_party/capstone.gyp:capstone', |
| 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 'cfi_frame_info_unittest.cc', | 146 'cfi_frame_info_unittest.cc', |
| 147 'contained_range_map_unittest.cc', | 147 'contained_range_map_unittest.cc', |
| (...skipping 26 matching lines...) Expand all Loading... |
| 174 '..', | 174 '..', |
| 175 ], | 175 ], |
| 176 'dependencies': [ | 176 'dependencies': [ |
| 177 'processor', | 177 'processor', |
| 178 '../build/testing.gypi:gmock', | 178 '../build/testing.gypi:gmock', |
| 179 '../build/testing.gypi:gtest', | 179 '../build/testing.gypi:gtest', |
| 180 ], | 180 ], |
| 181 }, | 181 }, |
| 182 ], | 182 ], |
| 183 } | 183 } |
| OLD | NEW |