| OLD | NEW |
| (Empty) |
| 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 | |
| 3 # found in the LICENSE file. | |
| 4 { | |
| 5 'targets': [ | |
| 6 { | |
| 7 'target_name': 'blacklist', | |
| 8 'type': 'static_library', | |
| 9 'include_dirs': [ | |
| 10 '..', | |
| 11 '<(SHARED_INTERMEDIATE_DIR)', | |
| 12 ], | |
| 13 'sources': [ | |
| 14 'blacklist/blacklist.cc', | |
| 15 'blacklist/blacklist.h', | |
| 16 'blacklist/blacklist_interceptions.cc', | |
| 17 'blacklist/blacklist_interceptions.h', | |
| 18 ], | |
| 19 'dependencies': [ | |
| 20 '../base/base.gyp:base', | |
| 21 '../chrome/chrome.gyp:install_static_util', | |
| 22 '../chrome_elf/chrome_elf.gyp:chrome_elf_constants', | |
| 23 '../chrome_elf/chrome_elf.gyp:chrome_elf_hook_util', | |
| 24 '../chrome_elf/nt_registry/nt_registry.gyp:chrome_elf_nt_registry', | |
| 25 '../sandbox/sandbox.gyp:sandbox', | |
| 26 ], | |
| 27 }, | |
| 28 { | |
| 29 'target_name': 'blacklist_test_main_dll', | |
| 30 'type': 'shared_library', | |
| 31 'sources': [ | |
| 32 'blacklist/test/blacklist_test_main_dll.cc', | |
| 33 'blacklist/test/blacklist_test_main_dll.def', | |
| 34 ], | |
| 35 'dependencies': [ | |
| 36 '../base/base.gyp:base', | |
| 37 '../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', | |
| 40 'blacklist', | |
| 41 ], | |
| 42 'msvs_settings': { | |
| 43 'VCLinkerTool': { | |
| 44 'DelayLoadDLLs': [ | |
| 45 'dbghelp.dll', | |
| 46 'ole32.dll', | |
| 47 'psapi.dll', | |
| 48 'rpcrt4.dll', | |
| 49 'shell32.dll', | |
| 50 'shlwapi.dll', | |
| 51 'user32.dll', | |
| 52 'winhttp.dll', | |
| 53 'winmm.dll', | |
| 54 'ws2_32.dll', | |
| 55 ], | |
| 56 }, | |
| 57 }, | |
| 58 }, | |
| 59 { | |
| 60 'target_name': 'blacklist_test_dll_1', | |
| 61 'type': 'loadable_module', | |
| 62 'sources': [ | |
| 63 'blacklist/test/blacklist_test_dll_1.cc', | |
| 64 'blacklist/test/blacklist_test_dll_1.def', | |
| 65 ], | |
| 66 }, | |
| 67 { | |
| 68 'target_name': 'blacklist_test_dll_2', | |
| 69 'type': 'loadable_module', | |
| 70 'sources': [ | |
| 71 'blacklist/test/blacklist_test_dll_2.cc', | |
| 72 'blacklist/test/blacklist_test_dll_2.def', | |
| 73 ], | |
| 74 }, | |
| 75 { | |
| 76 'target_name': 'blacklist_test_dll_3', | |
| 77 'type': 'loadable_module', | |
| 78 'sources': [ | |
| 79 'blacklist/test/blacklist_test_dll_3.cc', | |
| 80 ], | |
| 81 'msvs_settings': { | |
| 82 # 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 | |
| 84 # the .lib being "missing". | |
| 85 'NoImportLibrary': 'true', | |
| 86 }, | |
| 87 }, | |
| 88 ], | |
| 89 } | |
| 90 | |
| OLD | NEW |