| 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': [ | 9 'include_dirs': [ |
| 10 '..', | 10 '..', |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 'blacklist/test/blacklist_test_dll_2.cc', | 53 'blacklist/test/blacklist_test_dll_2.cc', |
| 54 'blacklist/test/blacklist_test_dll_2.def', | 54 'blacklist/test/blacklist_test_dll_2.def', |
| 55 ], | 55 ], |
| 56 }, | 56 }, |
| 57 { | 57 { |
| 58 'target_name': 'blacklist_test_dll_3', | 58 'target_name': 'blacklist_test_dll_3', |
| 59 'type': 'loadable_module', | 59 'type': 'loadable_module', |
| 60 'sources': [ | 60 'sources': [ |
| 61 'blacklist/test/blacklist_test_dll_3.cc', | 61 'blacklist/test/blacklist_test_dll_3.cc', |
| 62 ], | 62 ], |
| 63 'msvs_settings': { |
| 64 # There's no exports in this DLL, this tells ninja not to expect an |
| 65 # import lib so that it doesn't keep rebuilding unnecessarily due to |
| 66 # the .lib being "missing". |
| 67 'NoImportLibrary': 'true', |
| 68 }, |
| 63 }, | 69 }, |
| 64 ], | 70 ], |
| 65 } | 71 } |
| 66 | 72 |
| OLD | NEW |