| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 { | 4 { |
| 5 'variables': { | 5 'variables': { |
| 6 'chromium_code': 1, | 6 'chromium_code': 1, |
| 7 }, | 7 }, |
| 8 'includes': [ | 8 'includes': [ |
| 9 '../build/util/version.gypi', | 9 '../build/util/version.gypi', |
| 10 '../build/win_precompile.gypi', | 10 '../build/win_precompile.gypi', |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 'sources': [ | 36 'sources': [ |
| 37 'chrome_elf.def', | 37 'chrome_elf.def', |
| 38 'chrome_elf_main.cc', | 38 'chrome_elf_main.cc', |
| 39 'chrome_elf_main.h', | 39 'chrome_elf_main.h', |
| 40 '../chrome/app/chrome_crash_reporter_client_win.cc', | 40 '../chrome/app/chrome_crash_reporter_client_win.cc', |
| 41 '../chrome/app/chrome_crash_reporter_client_win.h', | 41 '../chrome/app/chrome_crash_reporter_client_win.h', |
| 42 '<(SHARED_INTERMEDIATE_DIR)/chrome_elf/chrome_elf_version.rc', | 42 '<(SHARED_INTERMEDIATE_DIR)/chrome_elf/chrome_elf_version.rc', |
| 43 ], | 43 ], |
| 44 'dependencies': [ | 44 'dependencies': [ |
| 45 'blacklist', | 45 'blacklist', |
| 46 'chrome_elf_breakpad', |
| 46 'chrome_elf_resources', | 47 'chrome_elf_resources', |
| 47 '../chrome/chrome.gyp:install_static_util', | 48 '../chrome/chrome.gyp:install_static_util', |
| 48 '../components/components.gyp:crash_component', | 49 '../components/components.gyp:crash_component', |
| 49 '../components/components.gyp:crash_core_common', | 50 '../components/components.gyp:crash_core_common', |
| 50 ], | 51 ], |
| 51 'msvs_settings': { | 52 'msvs_settings': { |
| 52 'VCLinkerTool': { | 53 'VCLinkerTool': { |
| 53 'conditions': [ | 54 'conditions': [ |
| 54 ['target_arch=="ia32"', { | 55 ['target_arch=="ia32"', { |
| 55 # Don't set an x64 base address (to avoid breaking HE-ASLR). | 56 # Don't set an x64 base address (to avoid breaking HE-ASLR). |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 142 'chrome_elf_constants', | 143 'chrome_elf_constants', |
| 143 ], | 144 ], |
| 144 'include_dirs': [ | 145 'include_dirs': [ |
| 145 '..', | 146 '..', |
| 146 ], | 147 ], |
| 147 'sources': [ | 148 'sources': [ |
| 148 'thunk_getter.cc', | 149 'thunk_getter.cc', |
| 149 'thunk_getter.h', | 150 'thunk_getter.h', |
| 150 ], | 151 ], |
| 151 }, | 152 }, |
| 153 { |
| 154 'target_name': 'chrome_elf_breakpad', |
| 155 'type': 'static_library', |
| 156 'include_dirs': [ |
| 157 '..', |
| 158 '<(SHARED_INTERMEDIATE_DIR)', |
| 159 ], |
| 160 'sources': [ |
| 161 'breakpad.cc', |
| 162 'breakpad.h', |
| 163 ], |
| 164 'dependencies': [ |
| 165 'chrome_elf_common', |
| 166 '../breakpad/breakpad.gyp:breakpad_handler', |
| 167 '../chrome/common_constants.gyp:version_header', |
| 168 '../chrome/chrome.gyp:install_static_util', |
| 169 ], |
| 170 }, |
| 152 ], # targets | 171 ], # targets |
| 153 'conditions': [ | 172 'conditions': [ |
| 154 ['test_isolation_mode != "noop"', { | 173 ['test_isolation_mode != "noop"', { |
| 155 'targets': [ | 174 'targets': [ |
| 156 { | 175 { |
| 157 'target_name': 'chrome_elf_unittests_run', | 176 'target_name': 'chrome_elf_unittests_run', |
| 158 'type': 'none', | 177 'type': 'none', |
| 159 'dependencies': [ | 178 'dependencies': [ |
| 160 'chrome_elf_unittests', | 179 'chrome_elf_unittests', |
| 161 ], | 180 ], |
| 162 'includes': [ '../build/isolate.gypi' ], | 181 'includes': [ '../build/isolate.gypi' ], |
| 163 'sources': [ 'chrome_elf_unittests.isolate' ], | 182 'sources': [ 'chrome_elf_unittests.isolate' ], |
| 164 }, | 183 }, |
| 165 ], | 184 ], |
| 166 }], | 185 }], |
| 167 ], | 186 ], |
| 168 } | 187 } |
| OLD | NEW |