OLD | NEW |
---|---|
1 # Copyright 2012 The Chromium Authors. All rights reserved. | 1 # Copyright 2012 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 # This target contains mocks and test utilities that don't belong in | 7 # This target contains mocks and test utilities that don't belong in |
8 # production libraries but are used by more than one test executable. | 8 # production libraries but are used by more than one test executable. |
9 'target_name': 'test_support_common', | 9 'target_name': 'test_support_common', |
10 'type': 'static_library', | 10 'type': 'static_library', |
(...skipping 1809 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1820 'sources/': [ | 1820 'sources/': [ |
1821 ['exclude', '^browser/safe_browsing/'], | 1821 ['exclude', '^browser/safe_browsing/'], |
1822 ['exclude', '^renderer/safe_browsing/'], | 1822 ['exclude', '^renderer/safe_browsing/'], |
1823 ], | 1823 ], |
1824 }], | 1824 }], |
1825 ['enable_automation!=1', { | 1825 ['enable_automation!=1', { |
1826 'sources/': [ | 1826 'sources/': [ |
1827 ['exclude', '^browser/automation/'], | 1827 ['exclude', '^browser/automation/'], |
1828 ], | 1828 ], |
1829 }], | 1829 }], |
1830 ['enable_plugins==0', { | |
1831 'sources!': [ | |
1832 'browser/extensions/extension_service_unittest.cc', # Needs PluginSe rvice | |
jam
2012/12/19 01:55:15
this seems too wide? i.e. if someone disables plug
nilesh
2012/12/19 21:07:44
Done.
| |
1833 'browser/extensions/user_script_listener_unittest.cc', | |
1834 'browser/renderer_host/plugin_info_message_filter_unittest.cc', | |
1835 'browser/plugins/plugin_prefs_unittest.cc', | |
1836 ], | |
1837 }], | |
1830 ['enable_printing!=1', { | 1838 ['enable_printing!=1', { |
1831 'sources/': [ | 1839 'sources/': [ |
1832 ['exclude', '^browser/printing/'], | 1840 ['exclude', '^browser/printing/'], |
1833 ['exclude', '^browser/ui/webui/print_preview/'], | 1841 ['exclude', '^browser/ui/webui/print_preview/'], |
1834 ], | 1842 ], |
1835 }], | 1843 }], |
1836 ['enable_captive_portal_detection!=1', { | 1844 ['enable_captive_portal_detection!=1', { |
1837 'sources/': [ | 1845 'sources/': [ |
1838 ['exclude', '^browser/captive_portal/'], | 1846 ['exclude', '^browser/captive_portal/'], |
1839 ], | 1847 ], |
(...skipping 466 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2306 'unit_tests.isolate', | 2314 'unit_tests.isolate', |
2307 ], | 2315 ], |
2308 'sources': [ | 2316 'sources': [ |
2309 'unit_tests.isolate', | 2317 'unit_tests.isolate', |
2310 ], | 2318 ], |
2311 }, | 2319 }, |
2312 ], | 2320 ], |
2313 }], | 2321 }], |
2314 ], # 'conditions' | 2322 ], # 'conditions' |
2315 } | 2323 } |
OLD | NEW |