| 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': [ | |
| 10 '<(SHARED_INTERMEDIATE_DIR)', | |
| 11 ], | |
| 12 'sources': [ | 9 'sources': [ |
| 13 'blacklist/blacklist.cc', | 10 'blacklist/blacklist.cc', |
| 14 'blacklist/blacklist.h', | 11 'blacklist/blacklist.h', |
| 15 'blacklist/blacklist_interceptions.cc', | 12 'blacklist/blacklist_interceptions.cc', |
| 16 'blacklist/blacklist_interceptions.h', | 13 'blacklist/blacklist_interceptions.h', |
| 17 ], | 14 ], |
| 18 'dependencies': [ | 15 'dependencies': [ |
| 19 # Depend on base_static, but do NOT take a dependency on base.gyp:base | 16 # Depend on base_static, but do NOT take a dependency on base.gyp:base |
| 20 # as that would risk pulling in base's link-time dependencies which | 17 # as that would risk pulling in base's link-time dependencies which |
| 21 # chrome_elf cannot do. | 18 # chrome_elf cannot do. |
| 22 '../base/base.gyp:base_static', | 19 '../base/base.gyp:base_static', |
| 23 '../chrome/chrome.gyp:chrome_version_header', | 20 '../sandbox/sandbox.gyp:sandbox', |
| 24 '../sandbox/sandbox.gyp:sandbox', | |
| 25 ], | 21 ], |
| 26 }, | 22 }, |
| 27 { | 23 { |
| 28 'target_name': 'blacklist_test_main_dll', | 24 'target_name': 'blacklist_test_main_dll', |
| 29 'type': 'shared_library', | 25 'type': 'shared_library', |
| 30 'sources': [ | 26 'sources': [ |
| 31 'blacklist/test/blacklist_test_main_dll.cc', | 27 'blacklist/test/blacklist_test_main_dll.cc', |
| 32 'blacklist/test/blacklist_test_main_dll.def', | 28 'blacklist/test/blacklist_test_main_dll.def', |
| 33 ], | 29 ], |
| 34 'dependencies': [ | 30 'dependencies': [ |
| (...skipping 20 matching lines...) Expand all Loading... |
| 55 { | 51 { |
| 56 'target_name': 'blacklist_test_dll_3', | 52 'target_name': 'blacklist_test_dll_3', |
| 57 'type': 'loadable_module', | 53 'type': 'loadable_module', |
| 58 'sources': [ | 54 'sources': [ |
| 59 'blacklist/test/blacklist_test_dll_3.cc', | 55 'blacklist/test/blacklist_test_dll_3.cc', |
| 60 ], | 56 ], |
| 61 }, | 57 }, |
| 62 ], | 58 ], |
| 63 } | 59 } |
| 64 | 60 |
| OLD | NEW |