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