| 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_elf/chrome_elf.gyp:chrome_elf_breakpad', | |
| 22 '../chrome_elf/chrome_elf.gyp:chrome_elf_constants', | |
| 23 '../sandbox/sandbox.gyp:sandbox', | |
| 24 ], | |
| 25 }, | |
| 26 { | |
| 27 'target_name': 'blacklist_test_main_dll', | |
| 28 'type': 'shared_library', | |
| 29 'sources': [ | |
| 30 'blacklist/test/blacklist_test_main_dll.cc', | |
| 31 'blacklist/test/blacklist_test_main_dll.def', | |
| 32 ], | |
| 33 'dependencies': [ | |
| 34 '../base/base.gyp:base', | |
| 35 'blacklist', | |
| 36 ], | |
| 37 }, | |
| 38 { | |
| 39 'target_name': 'blacklist_test_dll_1', | |
| 40 'type': 'loadable_module', | |
| 41 'sources': [ | |
| 42 'blacklist/test/blacklist_test_dll_1.cc', | |
| 43 'blacklist/test/blacklist_test_dll_1.def', | |
| 44 ], | |
| 45 }, | |
| 46 { | |
| 47 'target_name': 'blacklist_test_dll_2', | |
| 48 'type': 'loadable_module', | |
| 49 'sources': [ | |
| 50 'blacklist/test/blacklist_test_dll_2.cc', | |
| 51 'blacklist/test/blacklist_test_dll_2.def', | |
| 52 ], | |
| 53 }, | |
| 54 { | |
| 55 'target_name': 'blacklist_test_dll_3', | |
| 56 'type': 'loadable_module', | |
| 57 'sources': [ | |
| 58 'blacklist/test/blacklist_test_dll_3.cc', | |
| 59 ], | |
| 60 'msvs_settings': { | |
| 61 # 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 | |
| 63 # the .lib being "missing". | |
| 64 'NoImportLibrary': 'true', | |
| 65 }, | |
| 66 }, | |
| 67 ], | |
| 68 } | |
| 69 | |
| OLD | NEW |