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 19 matching lines...) Expand all Loading... |
30 { | 30 { |
31 'target_name': 'chrome_elf', | 31 'target_name': 'chrome_elf', |
32 'type': 'shared_library', | 32 'type': 'shared_library', |
33 'include_dirs': [ | 33 'include_dirs': [ |
34 '..', | 34 '..', |
35 ], | 35 ], |
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 '<(SHARED_INTERMEDIATE_DIR)/chrome_elf/chrome_elf_version.rc', | 41 '<(SHARED_INTERMEDIATE_DIR)/chrome_elf/chrome_elf_version.rc', |
41 ], | 42 ], |
42 'dependencies': [ | 43 'dependencies': [ |
43 'blacklist', | 44 'blacklist', |
44 'chrome_elf_breakpad', | 45 'chrome_elf_breakpad', |
45 'chrome_elf_resources', | 46 'chrome_elf_resources', |
46 '../chrome/chrome.gyp:install_static_util', | 47 '../chrome/chrome.gyp:install_static_util', |
| 48 '../components/components.gyp:crash_component', |
| 49 '../components/components.gyp:crash_core_common', |
47 ], | 50 ], |
48 'msvs_settings': { | 51 'msvs_settings': { |
49 'VCLinkerTool': { | 52 'VCLinkerTool': { |
50 'conditions': [ | 53 'conditions': [ |
51 ['target_arch=="ia32"', { | 54 ['target_arch=="ia32"', { |
52 # 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). |
53 'BaseAddress': '0x01c20000', | 56 'BaseAddress': '0x01c20000', |
54 }], | 57 }], |
55 ], | 58 ], |
56 # Set /SUBSYSTEM:WINDOWS. | 59 # Set /SUBSYSTEM:WINDOWS. |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
157 'dependencies': [ | 160 'dependencies': [ |
158 'chrome_elf_unittests', | 161 'chrome_elf_unittests', |
159 ], | 162 ], |
160 'includes': [ '../build/isolate.gypi' ], | 163 'includes': [ '../build/isolate.gypi' ], |
161 'sources': [ 'chrome_elf_unittests.isolate' ], | 164 'sources': [ 'chrome_elf_unittests.isolate' ], |
162 }, | 165 }, |
163 ], | 166 ], |
164 }], | 167 }], |
165 ], | 168 ], |
166 } | 169 } |
OLD | NEW |