| 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_breakpad', | |
| 23 '../chrome_elf/chrome_elf.gyp:chrome_elf_constants', | 24 '../chrome_elf/chrome_elf.gyp:chrome_elf_constants', |
| 24 '../chrome_elf/chrome_elf.gyp:chrome_elf_hook_util', | 25 '../chrome_elf/chrome_elf.gyp:chrome_elf_hook_util', |
| 25 '../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', |
| 26 '../sandbox/sandbox.gyp:sandbox', | 28 '../sandbox/sandbox.gyp:sandbox', |
| 27 ], | 29 ], |
| 28 }, | 30 }, |
| 29 { | 31 { |
| 30 'target_name': 'blacklist_test_main_dll', | 32 'target_name': 'blacklist_test_main_dll', |
| 31 'type': 'shared_library', | 33 'type': 'shared_library', |
| 32 'sources': [ | 34 'sources': [ |
| 33 'blacklist/test/blacklist_test_main_dll.cc', | 35 'blacklist/test/blacklist_test_main_dll.cc', |
| 34 'blacklist/test/blacklist_test_main_dll.def', | 36 'blacklist/test/blacklist_test_main_dll.def', |
| 35 ], | 37 ], |
| 36 'dependencies': [ | 38 'dependencies': [ |
| 37 '../base/base.gyp:base', | 39 '../base/base.gyp:base', |
| 38 '../chrome/chrome.gyp:install_static_util', | 40 '../chrome/chrome.gyp:install_static_util', |
| 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 ], |
| 44 'msvs_settings': { |
| 45 'VCLinkerTool': { |
| 46 'DelayLoadDLLs': [ |
| 47 'dbghelp.dll', |
| 48 'ole32.dll', |
| 49 'psapi.dll', |
| 50 'rpcrt4.dll', |
| 51 'shell32.dll', |
| 52 'shlwapi.dll', |
| 53 'user32.dll', |
| 54 'winhttp.dll', |
| 55 'winmm.dll', |
| 56 'ws2_32.dll', |
| 57 ], |
| 58 }, |
| 59 }, |
| 42 }, | 60 }, |
| 43 { | 61 { |
| 44 'target_name': 'blacklist_test_dll_1', | 62 'target_name': 'blacklist_test_dll_1', |
| 45 'type': 'loadable_module', | 63 'type': 'loadable_module', |
| 46 'sources': [ | 64 'sources': [ |
| 47 'blacklist/test/blacklist_test_dll_1.cc', | 65 'blacklist/test/blacklist_test_dll_1.cc', |
| 48 'blacklist/test/blacklist_test_dll_1.def', | 66 'blacklist/test/blacklist_test_dll_1.def', |
| 49 ], | 67 ], |
| 50 }, | 68 }, |
| 51 { | 69 { |
| (...skipping 13 matching lines...) Expand all Loading... |
| 65 'msvs_settings': { | 83 'msvs_settings': { |
| 66 # 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 |
| 67 # 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 |
| 68 # the .lib being "missing". | 86 # the .lib being "missing". |
| 69 'NoImportLibrary': 'true', | 87 'NoImportLibrary': 'true', |
| 70 }, | 88 }, |
| 71 }, | 89 }, |
| 72 ], | 90 ], |
| 73 } | 91 } |
| 74 | 92 |
| OLD | NEW |