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