| 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 'sources': [ | |
| 10 'blacklist/blacklist.cc', | |
| 11 'blacklist/blacklist.h', | |
| 12 'blacklist/blacklist_interceptions.cc', | |
| 13 'blacklist/blacklist_interceptions.h', | |
| 14 ], | |
| 15 'dependencies': [ | |
| 16 # Depend on base_static, but do NOT take a dependency on base.gyp:base | |
| 17 # as that would risk pulling in base's link-time dependencies which | |
| 18 # chrome_elf cannot do. | |
| 19 '../base/base.gyp:base_static', | |
| 20 '../sandbox/sandbox.gyp:sandbox', | |
| 21 ], | |
| 22 }, | |
| 23 { | |
| 24 'target_name': 'blacklist_test_main_dll', | |
| 25 'type': 'shared_library', | |
| 26 'sources': [ | |
| 27 'blacklist/test/blacklist_test_main_dll.cc', | |
| 28 'blacklist/test/blacklist_test_main_dll.def', | |
| 29 ], | |
| 30 'dependencies': [ | |
| 31 '../base/base.gyp:base', | |
| 32 'blacklist', | |
| 33 ], | |
| 34 }, | |
| 35 { | |
| 36 'target_name': 'blacklist_test_dll_1', | |
| 37 'type': 'loadable_module', | |
| 38 'sources': [ | |
| 39 'blacklist/test/blacklist_test_dll_1.cc', | |
| 40 'blacklist/test/blacklist_test_dll_1.def', | |
| 41 ], | |
| 42 }, | |
| 43 { | |
| 44 'target_name': 'blacklist_test_dll_2', | |
| 45 'type': 'loadable_module', | |
| 46 'sources': [ | |
| 47 'blacklist/test/blacklist_test_dll_2.cc', | |
| 48 'blacklist/test/blacklist_test_dll_2.def', | |
| 49 ], | |
| 50 }, | |
| 51 { | |
| 52 'target_name': 'blacklist_test_dll_3', | |
| 53 'type': 'loadable_module', | |
| 54 'sources': [ | |
| 55 'blacklist/test/blacklist_test_dll_3.cc', | |
| 56 ], | |
| 57 }, | |
| 58 ], | |
| 59 } | |
| 60 | |
| OLD | NEW |