| 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 'targets': [ | 5 'targets': [ |
| 6 { | 6 { |
| 7 'target_name': 'blacklist', | 7 'target_name': 'blacklist', |
| 8 'type': 'static_library', | 8 'type': 'static_library', |
| 9 'include_dirs': [ | 9 'include_dirs': [ |
| 10 '..', | 10 '..', |
| 11 '<(SHARED_INTERMEDIATE_DIR)', | 11 '<(SHARED_INTERMEDIATE_DIR)', |
| 12 ], | 12 ], |
| 13 'sources': [ | 13 'sources': [ |
| 14 'blacklist/blacklist.cc', | 14 'blacklist/blacklist.cc', |
| 15 'blacklist/blacklist.h', | 15 'blacklist/blacklist.h', |
| 16 'blacklist/blacklist_interceptions.cc', | 16 'blacklist/blacklist_interceptions.cc', |
| 17 'blacklist/blacklist_interceptions.h', | 17 'blacklist/blacklist_interceptions.h', |
| 18 'blacklist/crashpad_helper.cc', |
| 19 'blacklist/crashpad_helper.h', |
| 18 ], | 20 ], |
| 19 'dependencies': [ | 21 'dependencies': [ |
| 20 '../base/base.gyp:base', | 22 '../base/base.gyp:base', |
| 21 '../chrome/chrome.gyp:install_static_util', | 23 '../chrome/chrome.gyp:install_static_util', |
| 22 '../chrome_elf/chrome_elf.gyp:chrome_elf_constants', | 24 '../chrome_elf/chrome_elf.gyp:chrome_elf_constants', |
| 23 '../chrome_elf/chrome_elf.gyp:chrome_elf_hook_util', | 25 '../chrome_elf/chrome_elf.gyp:chrome_elf_hook_util', |
| 24 '../chrome_elf/nt_registry/nt_registry.gyp:chrome_elf_nt_registry', | 26 '../chrome_elf/nt_registry/nt_registry.gyp:chrome_elf_nt_registry', |
| 27 '../components/components.gyp:crash_component', |
| 25 '../sandbox/sandbox.gyp:sandbox', | 28 '../sandbox/sandbox.gyp:sandbox', |
| 26 ], | 29 ], |
| 27 }, | 30 }, |
| 28 { | 31 { |
| 29 'target_name': 'blacklist_test_main_dll', | 32 'target_name': 'blacklist_test_main_dll', |
| 30 'type': 'shared_library', | 33 'type': 'shared_library', |
| 31 'sources': [ | 34 'sources': [ |
| 32 'blacklist/test/blacklist_test_main_dll.cc', | 35 'blacklist/test/blacklist_test_main_dll.cc', |
| 33 'blacklist/test/blacklist_test_main_dll.def', | 36 'blacklist/test/blacklist_test_main_dll.def', |
| 34 ], | 37 ], |
| 35 'dependencies': [ | 38 'dependencies': [ |
| 36 '../base/base.gyp:base', | 39 '../base/base.gyp:base', |
| 37 '../chrome/chrome.gyp:install_static_util', | 40 '../chrome/chrome.gyp:install_static_util', |
| 38 '../chrome_elf/chrome_elf.gyp:chrome_elf_crash', | |
| 39 '../chrome_elf/nt_registry/nt_registry.gyp:chrome_elf_nt_registry', | 41 '../chrome_elf/nt_registry/nt_registry.gyp:chrome_elf_nt_registry', |
| 40 'blacklist', | 42 'blacklist', |
| 41 ], | 43 ], |
| 42 'msvs_settings': { | 44 'msvs_settings': { |
| 43 'VCLinkerTool': { | 45 'VCLinkerTool': { |
| 44 'DelayLoadDLLs': [ | 46 'DelayLoadDLLs': [ |
| 45 'dbghelp.dll', | 47 'dbghelp.dll', |
| 46 'ole32.dll', | 48 'ole32.dll', |
| 47 'psapi.dll', | 49 'psapi.dll', |
| 48 'rpcrt4.dll', | 50 'rpcrt4.dll', |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 'msvs_settings': { | 83 'msvs_settings': { |
| 82 # There's no exports in this DLL, this tells ninja not to expect an | 84 # There's no exports in this DLL, this tells ninja not to expect an |
| 83 # import lib so that it doesn't keep rebuilding unnecessarily due to | 85 # import lib so that it doesn't keep rebuilding unnecessarily due to |
| 84 # the .lib being "missing". | 86 # the .lib being "missing". |
| 85 'NoImportLibrary': 'true', | 87 'NoImportLibrary': 'true', |
| 86 }, | 88 }, |
| 87 }, | 89 }, |
| 88 ], | 90 ], |
| 89 } | 91 } |
| 90 | 92 |
| OLD | NEW |