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_elf/chrome_elf.gyp:chrome_elf_breakpad', | |
22 '../chrome_elf/chrome_elf.gyp:chrome_elf_constants', | 23 '../chrome_elf/chrome_elf.gyp:chrome_elf_constants', |
| 24 '../components/components.gyp:crash_component', |
23 '../sandbox/sandbox.gyp:sandbox', | 25 '../sandbox/sandbox.gyp:sandbox', |
24 ], | 26 ], |
25 }, | 27 }, |
26 { | 28 { |
27 'target_name': 'blacklist_test_main_dll', | 29 'target_name': 'blacklist_test_main_dll', |
28 'type': 'shared_library', | 30 'type': 'shared_library', |
29 'sources': [ | 31 'sources': [ |
30 'blacklist/test/blacklist_test_main_dll.cc', | 32 'blacklist/test/blacklist_test_main_dll.cc', |
31 'blacklist/test/blacklist_test_main_dll.def', | 33 'blacklist/test/blacklist_test_main_dll.def', |
32 ], | 34 ], |
33 'dependencies': [ | 35 'dependencies': [ |
34 '../base/base.gyp:base', | 36 '../base/base.gyp:base', |
35 'blacklist', | 37 'blacklist', |
36 ], | 38 ], |
| 39 'msvs_settings': { |
| 40 'VCLinkerTool': { |
| 41 'DelayLoadDLLs': [ |
| 42 'dbghelp.dll', |
| 43 'ole32.dll', |
| 44 'psapi.dll', |
| 45 'rpcrt4.dll', |
| 46 'shell32.dll', |
| 47 'shlwapi.dll', |
| 48 'user32.dll', |
| 49 'winhttp.dll', |
| 50 'winmm.dll', |
| 51 'ws2_32.dll', |
| 52 ], |
| 53 }, |
| 54 }, |
37 }, | 55 }, |
38 { | 56 { |
39 'target_name': 'blacklist_test_dll_1', | 57 'target_name': 'blacklist_test_dll_1', |
40 'type': 'loadable_module', | 58 'type': 'loadable_module', |
41 'sources': [ | 59 'sources': [ |
42 'blacklist/test/blacklist_test_dll_1.cc', | 60 'blacklist/test/blacklist_test_dll_1.cc', |
43 'blacklist/test/blacklist_test_dll_1.def', | 61 'blacklist/test/blacklist_test_dll_1.def', |
44 ], | 62 ], |
45 }, | 63 }, |
46 { | 64 { |
(...skipping 13 matching lines...) Expand all Loading... |
60 'msvs_settings': { | 78 'msvs_settings': { |
61 # There's no exports in this DLL, this tells ninja not to expect an | 79 # There's no exports in this DLL, this tells ninja not to expect an |
62 # import lib so that it doesn't keep rebuilding unnecessarily due to | 80 # import lib so that it doesn't keep rebuilding unnecessarily due to |
63 # the .lib being "missing". | 81 # the .lib being "missing". |
64 'NoImportLibrary': 'true', | 82 'NoImportLibrary': 'true', |
65 }, | 83 }, |
66 }, | 84 }, |
67 ], | 85 ], |
68 } | 86 } |
69 | 87 |
OLD | NEW |