| 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 29 matching lines...) Expand all Loading... |
| 40 'chrome_elf.def', | 40 'chrome_elf.def', |
| 41 'chrome_elf_main.cc', | 41 'chrome_elf_main.cc', |
| 42 'chrome_elf_main.h', | 42 'chrome_elf_main.h', |
| 43 '../chrome/app/chrome_crash_reporter_client_win.cc', | 43 '../chrome/app/chrome_crash_reporter_client_win.cc', |
| 44 '../chrome/app/chrome_crash_reporter_client_win.h', | 44 '../chrome/app/chrome_crash_reporter_client_win.h', |
| 45 '<(SHARED_INTERMEDIATE_DIR)/chrome_elf/chrome_elf_version.rc', | 45 '<(SHARED_INTERMEDIATE_DIR)/chrome_elf/chrome_elf_version.rc', |
| 46 ], | 46 ], |
| 47 'dependencies': [ | 47 'dependencies': [ |
| 48 '../chrome/chrome.gyp:install_static_util', | 48 '../chrome/chrome.gyp:install_static_util', |
| 49 'blacklist', | 49 'blacklist', |
| 50 'chrome_elf_breakpad', | |
| 51 'chrome_elf_hook_util', | 50 'chrome_elf_hook_util', |
| 52 'chrome_elf_resources', | 51 'chrome_elf_resources', |
| 53 'chrome_elf_security', | 52 'chrome_elf_security', |
| 54 'nt_registry/nt_registry.gyp:chrome_elf_nt_registry', | 53 'nt_registry/nt_registry.gyp:chrome_elf_nt_registry', |
| 55 '../chrome/chrome.gyp:install_static_util', | 54 '../chrome/chrome.gyp:install_static_util', |
| 56 '../components/components.gyp:crash_component', | 55 '../components/components.gyp:crash_component', |
| 57 '../components/components.gyp:crash_core_common', | 56 '../components/components.gyp:crash_core_common', |
| 58 ], | 57 ], |
| 59 'msvs_settings': { | 58 'msvs_settings': { |
| 60 'VCLinkerTool': { | 59 'VCLinkerTool': { |
| (...skipping 22 matching lines...) Expand all Loading... |
| 83 'type': 'static_library', | 82 'type': 'static_library', |
| 84 'include_dirs': [ | 83 'include_dirs': [ |
| 85 '..', | 84 '..', |
| 86 ], | 85 ], |
| 87 'sources': [ | 86 'sources': [ |
| 88 'chrome_elf_constants.cc', | 87 'chrome_elf_constants.cc', |
| 89 'chrome_elf_constants.h', | 88 'chrome_elf_constants.h', |
| 90 ], | 89 ], |
| 91 }, | 90 }, |
| 92 { | 91 { |
| 93 'target_name': 'chrome_elf_breakpad', | |
| 94 'type': 'static_library', | |
| 95 'include_dirs': [ | |
| 96 '..', | |
| 97 '<(SHARED_INTERMEDIATE_DIR)', | |
| 98 ], | |
| 99 'sources': [ | |
| 100 'breakpad/breakpad.cc', | |
| 101 'breakpad/breakpad.h', | |
| 102 ], | |
| 103 'dependencies': [ | |
| 104 '../breakpad/breakpad.gyp:breakpad_handler', | |
| 105 '../chrome/chrome.gyp:install_static_util', | |
| 106 '../chrome/common_constants.gyp:version_header', | |
| 107 'nt_registry/nt_registry.gyp:chrome_elf_nt_registry', | |
| 108 ], | |
| 109 }, | |
| 110 { | |
| 111 'target_name': 'chrome_elf_hook_util', | 92 'target_name': 'chrome_elf_hook_util', |
| 112 'type': 'static_library', | 93 'type': 'static_library', |
| 113 'include_dirs': [ | 94 'include_dirs': [ |
| 114 '..', | 95 '..', |
| 115 ], | 96 ], |
| 116 'sources': [ | 97 'sources': [ |
| 117 'hook_util/thunk_getter.cc', | 98 'hook_util/thunk_getter.cc', |
| 118 'hook_util/thunk_getter.h', | 99 'hook_util/thunk_getter.h', |
| 119 ], | 100 ], |
| 120 }, | 101 }, |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 209 'dependencies': [ | 190 'dependencies': [ |
| 210 'chrome_elf_unittests', | 191 'chrome_elf_unittests', |
| 211 ], | 192 ], |
| 212 'includes': [ '../build/isolate.gypi' ], | 193 'includes': [ '../build/isolate.gypi' ], |
| 213 'sources': [ 'chrome_elf_unittests.isolate' ], | 194 'sources': [ 'chrome_elf_unittests.isolate' ], |
| 214 }, | 195 }, |
| 215 ], | 196 ], |
| 216 }], | 197 }], |
| 217 ], | 198 ], |
| 218 } | 199 } |
| OLD | NEW |