Chromium Code Reviews| 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', | |
|
grt (UTC plus 2)
2013/12/16 23:33:49
this appears to depend on stuff in base. please ad
robertshield
2013/12/17 03:43:04
This was explicitly not done to ensure no dependen
| |
| 13 'blacklist/blacklist_interceptions.h', | |
| 14 ], | |
| 15 'dependencies': [ | |
| 16 '../sandbox/sandbox.gyp:sandbox', | |
| 17 ], | |
| 18 }, | |
| 19 { | |
| 20 'target_name': 'blacklist_test_main_dll', | |
| 21 'type': 'shared_library', | |
| 22 'sources': [ | |
| 23 'blacklist/test/blacklist_test_main_dll.cc', | |
| 24 'blacklist/test/blacklist_test_main_dll.def', | |
| 25 ], | |
| 26 'dependencies': [ | |
| 27 '../base/base.gyp:base', | |
| 28 'blacklist', | |
| 29 ], | |
| 30 }, | |
| 31 { | |
| 32 'target_name': 'blacklist_test_dll_1', | |
| 33 'type': 'shared_library', | |
|
grt (UTC plus 2)
2013/12/16 23:33:49
it looks like this dll and the next are only loade
robertshield
2013/12/17 03:43:04
Done.
| |
| 34 'sources': [ | |
| 35 'blacklist/test/blacklist_test_dll_1.cc', | |
| 36 'blacklist/test/blacklist_test_dll_1.def', | |
| 37 ], | |
| 38 }, | |
| 39 { | |
| 40 'target_name': 'blacklist_test_dll_2', | |
| 41 'type': 'shared_library', | |
| 42 'sources': [ | |
| 43 'blacklist/test/blacklist_test_dll_2.cc', | |
| 44 'blacklist/test/blacklist_test_dll_2.def', | |
| 45 ], | |
| 46 }, | |
| 47 { | |
| 48 'target_name': 'blacklist_test_dll_3', | |
| 49 'type': 'loadable_module', | |
| 50 'sources': [ | |
| 51 'blacklist/test/blacklist_test_dll_3.cc', | |
| 52 ], | |
| 53 }, | |
| 54 ], | |
| 55 } | |
| 56 | |
| OLD | NEW |