| 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', | |
| 47 'chrome_elf_resources', | 46 'chrome_elf_resources', |
| 48 '../chrome/chrome.gyp:install_static_util', | 47 '../chrome/chrome.gyp:install_static_util', |
| 49 '../components/components.gyp:crash_component', | 48 '../components/components.gyp:crash_component', |
| 50 '../components/components.gyp:crash_core_common', | 49 '../components/components.gyp:crash_core_common', |
| 51 ], | 50 ], |
| 52 'msvs_settings': { | 51 'msvs_settings': { |
| 53 'VCLinkerTool': { | 52 'VCLinkerTool': { |
| 54 'conditions': [ | 53 'conditions': [ |
| 55 ['target_arch=="ia32"', { | 54 ['target_arch=="ia32"', { |
| 56 # Don't set an x64 base address (to avoid breaking HE-ASLR). | 55 # 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... |
| 143 'chrome_elf_constants', | 142 'chrome_elf_constants', |
| 144 ], | 143 ], |
| 145 'include_dirs': [ | 144 'include_dirs': [ |
| 146 '..', | 145 '..', |
| 147 ], | 146 ], |
| 148 'sources': [ | 147 'sources': [ |
| 149 'thunk_getter.cc', | 148 'thunk_getter.cc', |
| 150 'thunk_getter.h', | 149 'thunk_getter.h', |
| 151 ], | 150 ], |
| 152 }, | 151 }, |
| 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 }, | |
| 171 ], # targets | 152 ], # targets |
| 172 'conditions': [ | 153 'conditions': [ |
| 173 ['test_isolation_mode != "noop"', { | 154 ['test_isolation_mode != "noop"', { |
| 174 'targets': [ | 155 'targets': [ |
| 175 { | 156 { |
| 176 'target_name': 'chrome_elf_unittests_run', | 157 'target_name': 'chrome_elf_unittests_run', |
| 177 'type': 'none', | 158 'type': 'none', |
| 178 'dependencies': [ | 159 'dependencies': [ |
| 179 'chrome_elf_unittests', | 160 'chrome_elf_unittests', |
| 180 ], | 161 ], |
| 181 'includes': [ '../build/isolate.gypi' ], | 162 'includes': [ '../build/isolate.gypi' ], |
| 182 'sources': [ 'chrome_elf_unittests.isolate' ], | 163 'sources': [ 'chrome_elf_unittests.isolate' ], |
| 183 }, | 164 }, |
| 184 ], | 165 ], |
| 185 }], | 166 }], |
| 186 ], | 167 ], |
| 187 } | 168 } |
| OLD | NEW |