| 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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 'chrome_elf_constants', | 125 'chrome_elf_constants', |
| 127 ], | 126 ], |
| 128 'include_dirs': [ | 127 'include_dirs': [ |
| 129 '..', | 128 '..', |
| 130 ], | 129 ], |
| 131 'sources': [ | 130 'sources': [ |
| 132 'thunk_getter.cc', | 131 'thunk_getter.cc', |
| 133 'thunk_getter.h', | 132 'thunk_getter.h', |
| 134 ], | 133 ], |
| 135 }, | 134 }, |
| 136 { | |
| 137 'target_name': 'chrome_elf_breakpad', | |
| 138 'type': 'static_library', | |
| 139 'include_dirs': [ | |
| 140 '..', | |
| 141 '<(SHARED_INTERMEDIATE_DIR)', | |
| 142 ], | |
| 143 'sources': [ | |
| 144 'breakpad.cc', | |
| 145 'breakpad.h', | |
| 146 ], | |
| 147 'dependencies': [ | |
| 148 'chrome_elf_common', | |
| 149 '../breakpad/breakpad.gyp:breakpad_handler', | |
| 150 '../chrome/common_constants.gyp:version_header', | |
| 151 '../chrome/chrome.gyp:install_static_util', | |
| 152 ], | |
| 153 }, | |
| 154 ], # targets | 135 ], # targets |
| 155 'conditions': [ | 136 'conditions': [ |
| 156 ['test_isolation_mode != "noop"', { | 137 ['test_isolation_mode != "noop"', { |
| 157 'targets': [ | 138 'targets': [ |
| 158 { | 139 { |
| 159 'target_name': 'chrome_elf_unittests_run', | 140 'target_name': 'chrome_elf_unittests_run', |
| 160 'type': 'none', | 141 'type': 'none', |
| 161 'dependencies': [ | 142 'dependencies': [ |
| 162 'chrome_elf_unittests', | 143 'chrome_elf_unittests', |
| 163 ], | 144 ], |
| 164 'includes': [ '../build/isolate.gypi' ], | 145 'includes': [ '../build/isolate.gypi' ], |
| 165 'sources': [ 'chrome_elf_unittests.isolate' ], | 146 'sources': [ 'chrome_elf_unittests.isolate' ], |
| 166 }, | 147 }, |
| 167 ], | 148 ], |
| 168 }], | 149 }], |
| 169 ], | 150 ], |
| 170 } | 151 } |
| OLD | NEW |