| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 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 { | 5 { |
| 6 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'test_support_content', | 8 'target_name': 'test_support_content', |
| 9 'type': 'static_library', | 9 'type': 'static_library', |
| 10 'dependencies': [ | 10 'dependencies': [ |
| (...skipping 976 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 987 '..', | 987 '..', |
| 988 '<(SHARED_INTERMEDIATE_DIR)', # Needed by encrypted_media_browserte
st.cc | 988 '<(SHARED_INTERMEDIATE_DIR)', # Needed by encrypted_media_browserte
st.cc |
| 989 ], | 989 ], |
| 990 'includes': [ | 990 'includes': [ |
| 991 'browser/gpu/test_support_gpu.gypi', | 991 'browser/gpu/test_support_gpu.gypi', |
| 992 ], | 992 ], |
| 993 'defines': [ | 993 'defines': [ |
| 994 'HAS_OUT_OF_PROC_TEST_RUNNER', | 994 'HAS_OUT_OF_PROC_TEST_RUNNER', |
| 995 ], | 995 ], |
| 996 'sources': [ | 996 'sources': [ |
| 997 'app/mojo/mojo_browsertest.cc', |
| 997 'browser/accessibility/accessibility_win_browsertest.cc', | 998 'browser/accessibility/accessibility_win_browsertest.cc', |
| 998 'browser/accessibility/cross_platform_accessibility_browsertest.cc', | 999 'browser/accessibility/cross_platform_accessibility_browsertest.cc', |
| 999 'browser/accessibility/dump_accessibility_tree_browsertest.cc', | 1000 'browser/accessibility/dump_accessibility_tree_browsertest.cc', |
| 1000 'browser/compositor/image_transport_factory_browsertest.cc', | 1001 'browser/compositor/image_transport_factory_browsertest.cc', |
| 1001 'browser/bookmarklet_browsertest.cc', | 1002 'browser/bookmarklet_browsertest.cc', |
| 1002 'browser/browser_plugin/browser_plugin_host_browsertest.cc', | 1003 'browser/browser_plugin/browser_plugin_host_browsertest.cc', |
| 1003 'browser/browser_plugin/test_browser_plugin_guest.cc', | 1004 'browser/browser_plugin/test_browser_plugin_guest.cc', |
| 1004 'browser/browser_plugin/test_browser_plugin_guest.h', | 1005 'browser/browser_plugin/test_browser_plugin_guest.h', |
| 1005 'browser/browser_plugin/test_browser_plugin_guest_delegate.cc', | 1006 'browser/browser_plugin/test_browser_plugin_guest_delegate.cc', |
| 1006 'browser/browser_plugin/test_browser_plugin_guest_delegate.h', | 1007 'browser/browser_plugin/test_browser_plugin_guest_delegate.h', |
| (...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1178 ['use_aura==1 or toolkit_views==1', { | 1179 ['use_aura==1 or toolkit_views==1', { |
| 1179 'dependencies': [ | 1180 'dependencies': [ |
| 1180 '../ui/events/events.gyp:events_test_support', | 1181 '../ui/events/events.gyp:events_test_support', |
| 1181 ], | 1182 ], |
| 1182 }], | 1183 }], |
| 1183 ['use_aura!=1 and OS!="mac"', { | 1184 ['use_aura!=1 and OS!="mac"', { |
| 1184 'sources/': [ | 1185 'sources/': [ |
| 1185 ['exclude', '^browser/compositor/'], | 1186 ['exclude', '^browser/compositor/'], |
| 1186 ], | 1187 ], |
| 1187 }], | 1188 }], |
| 1189 ['use_mojo==1', { |
| 1190 'dependencies': [ |
| 1191 '../mojo/mojo.gyp:mojo_environment_chromium', |
| 1192 '../mojo/mojo.gyp:mojo_service_manager', |
| 1193 ], |
| 1194 },{ |
| 1195 'sources!': [ |
| 1196 'app/mojo/mojo_browsertest.cc', |
| 1197 ], |
| 1198 }], |
| 1188 ['OS!="android" and OS!="ios"', { | 1199 ['OS!="android" and OS!="ios"', { |
| 1189 # npapi test plugin doesn't build on android or ios | 1200 # npapi test plugin doesn't build on android or ios |
| 1190 'dependencies': [ | 1201 'dependencies': [ |
| 1191 # Runtime dependencies | 1202 # Runtime dependencies |
| 1192 'copy_npapi_test_plugin', | 1203 'copy_npapi_test_plugin', |
| 1193 ], | 1204 ], |
| 1194 }], | 1205 }], |
| 1195 ['enable_webrtc==1', { | 1206 ['enable_webrtc==1', { |
| 1196 'sources': [ | 1207 'sources': [ |
| 1197 'browser/media/webrtc_aecdump_browsertest.cc', | 1208 'browser/media/webrtc_aecdump_browsertest.cc', |
| (...skipping 560 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1758 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'], | 1769 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'], |
| 1759 }, | 1770 }, |
| 1760 ], | 1771 ], |
| 1761 }], | 1772 }], |
| 1762 ], | 1773 ], |
| 1763 }, | 1774 }, |
| 1764 ], | 1775 ], |
| 1765 }], | 1776 }], |
| 1766 ], | 1777 ], |
| 1767 } | 1778 } |
| OLD | NEW |