Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(101)

Side by Side Diff: chrome/chrome_tests.gypi

Issue 1728453002: Enable H.264 video WebRTC behind run-time flag and add WebRtcBrowserTest for H.264 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: #define macro instead of BUILDFLAG. common_features (aka renderer_features) deleted. Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/browser/media/chrome_webrtc_browsertest.cc ('k') | chrome/test/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 'variables': { 5 'variables': {
6 'chrome_browser_extensions_test_support_sources': [ 6 'chrome_browser_extensions_test_support_sources': [
7 # A list of sources which is shared between different browser tests. 7 # A list of sources which is shared between different browser tests.
8 'browser/apps/app_browsertest_util.cc', 8 'browser/apps/app_browsertest_util.cc',
9 'browser/apps/app_browsertest_util.h', 9 'browser/apps/app_browsertest_util.h',
10 'browser/extensions/browsertest_util.cc', 10 'browser/extensions/browsertest_util.cc',
(...skipping 2109 matching lines...) Expand 10 before | Expand all | Expand 10 after
2120 'sources': [ 2120 'sources': [
2121 '<@(chrome_driver_tests_sources)', 2121 '<@(chrome_driver_tests_sources)',
2122 ], 2122 ],
2123 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 2123 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
2124 'msvs_disabled_warnings': [ 4267, ], 2124 'msvs_disabled_warnings': [ 4267, ],
2125 }, 2125 },
2126 { 2126 {
2127 # Executable that runs each browser test in a new process. 2127 # Executable that runs each browser test in a new process.
2128 'target_name': 'browser_tests', 2128 'target_name': 'browser_tests',
2129 'type': 'executable', 2129 'type': 'executable',
2130 'includes': [
2131 '../third_party/webrtc/build/common.gypi',
2132 ],
2130 'dependencies': [ 2133 'dependencies': [
2131 'browser', 2134 'browser',
2132 'chrome_features.gyp:chrome_common_features', 2135 'chrome_features.gyp:chrome_common_features',
2133 'chrome_resources.gyp:browser_tests_pak', 2136 'chrome_resources.gyp:browser_tests_pak',
2134 'chrome_resources.gyp:chrome_resources', 2137 'chrome_resources.gyp:chrome_resources',
2135 'chrome_resources.gyp:chrome_strings', 2138 'chrome_resources.gyp:chrome_strings',
2136 'chrome_resources.gyp:packed_extra_resources', 2139 'chrome_resources.gyp:packed_extra_resources',
2137 'chrome_resources.gyp:packed_resources', 2140 'chrome_resources.gyp:packed_resources',
2138 'common/extensions/api/api.gyp:chrome_api', 2141 'common/extensions/api/api.gyp:chrome_api',
2139 'renderer', 2142 'renderer',
(...skipping 12 matching lines...) Expand all
2152 '../components/components.gyp:dom_distiller_test_support', 2155 '../components/components.gyp:dom_distiller_test_support',
2153 '../components/components.gyp:guest_view_test_support', 2156 '../components/components.gyp:guest_view_test_support',
2154 '../components/components.gyp:history_core_test_support', 2157 '../components/components.gyp:history_core_test_support',
2155 '../components/components.gyp:safe_browsing_db', 2158 '../components/components.gyp:safe_browsing_db',
2156 '../components/components.gyp:ssl_config', 2159 '../components/components.gyp:ssl_config',
2157 '../components/components.gyp:test_database_manager', 2160 '../components/components.gyp:test_database_manager',
2158 '../components/components.gyp:translate_core_common', 2161 '../components/components.gyp:translate_core_common',
2159 '../components/components.gyp:ui_zoom_test_support', 2162 '../components/components.gyp:ui_zoom_test_support',
2160 '../components/components_resources.gyp:components_resources', 2163 '../components/components_resources.gyp:components_resources',
2161 '../components/components_strings.gyp:components_strings', 2164 '../components/components_strings.gyp:components_strings',
2165 '../content/content.gyp:feature_h264_with_openh264_ffmpeg',
2162 '../content/content_shell_and_tests.gyp:content_browser_test_base', 2166 '../content/content_shell_and_tests.gyp:content_browser_test_base',
2163 '../crypto/crypto.gyp:crypto_test_support', 2167 '../crypto/crypto.gyp:crypto_test_support',
2164 '../device/bluetooth/bluetooth.gyp:device_bluetooth_mocks', 2168 '../device/bluetooth/bluetooth.gyp:device_bluetooth_mocks',
2165 '../device/serial/serial.gyp:device_serial_test_util', 2169 '../device/serial/serial.gyp:device_serial_test_util',
2166 '../extensions/common/api/api.gyp:extensions_api', 2170 '../extensions/common/api/api.gyp:extensions_api',
2167 '../google_apis/google_apis.gyp:google_apis_test_support', 2171 '../google_apis/google_apis.gyp:google_apis_test_support',
2168 '../media/cast/cast.gyp:cast_test_utility', 2172 '../media/cast/cast.gyp:cast_test_utility',
2169 '../media/media.gyp:media', 2173 '../media/media.gyp:media',
2170 '../net/net.gyp:net', 2174 '../net/net.gyp:net',
2171 '../net/net.gyp:net_test_support', 2175 '../net/net.gyp:net_test_support',
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after
2427 ['enable_captive_portal_detection==1', { 2431 ['enable_captive_portal_detection==1', {
2428 'sources': [ 'browser/captive_portal/captive_portal_browsertest.cc' ], 2432 'sources': [ 'browser/captive_portal/captive_portal_browsertest.cc' ],
2429 }], 2433 }],
2430 ['enable_webrtc==0', { 2434 ['enable_webrtc==0', {
2431 'sources!': [ 2435 'sources!': [
2432 'browser/extensions/api/webrtc_audio_private/webrtc_audio_private_br owsertest.cc', 2436 'browser/extensions/api/webrtc_audio_private/webrtc_audio_private_br owsertest.cc',
2433 'browser/extensions/api/webrtc_logging_private/webrtc_logging_privat e_apitest.cc', 2437 'browser/extensions/api/webrtc_logging_private/webrtc_logging_privat e_apitest.cc',
2434 'browser/media/chrome_webrtc_browsertest.cc', 2438 'browser/media/chrome_webrtc_browsertest.cc',
2435 'browser/media/chrome_webrtc_disable_encryption_flag_browsertest.cc' , 2439 'browser/media/chrome_webrtc_disable_encryption_flag_browsertest.cc' ,
2436 'browser/media/chrome_webrtc_getmediadevices_browsertest.cc', 2440 'browser/media/chrome_webrtc_getmediadevices_browsertest.cc',
2437 ], 2441 ],
2442 }],
2443 ['rtc_use_h264==1', {
2444 'defines': [
2445 'BUILDFLAG_RTC_USE_H264',
2446 ],
2438 }], 2447 }],
2439 ['OS=="win"', { 2448 ['OS=="win"', {
2440 'sources': [ 2449 'sources': [
2441 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/other_version.rc', 2450 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/other_version.rc',
2442 '<(SHARED_INTERMEDIATE_DIR)/ui/resources/ui_unscaled_resources.rc', 2451 '<(SHARED_INTERMEDIATE_DIR)/ui/resources/ui_unscaled_resources.rc',
2443 ], 2452 ],
2444 'include_dirs': [ 2453 'include_dirs': [
2445 '<(DEPTH)/third_party/wtl/include', 2454 '<(DEPTH)/third_party/wtl/include',
2446 ], 2455 ],
2447 'dependencies': [ 2456 'dependencies': [
(...skipping 1069 matching lines...) Expand 10 before | Expand all | Expand 10 after
3517 'browser', 3526 'browser',
3518 ], 3527 ],
3519 'sources': [ 3528 'sources': [
3520 'tools/service_discovery_sniffer/service_discovery_sniffer.cc', 3529 'tools/service_discovery_sniffer/service_discovery_sniffer.cc',
3521 'tools/service_discovery_sniffer/service_discovery_sniffer.h', 3530 'tools/service_discovery_sniffer/service_discovery_sniffer.h',
3522 ], 3531 ],
3523 }] 3532 }]
3524 }], 3533 }],
3525 ], # 'conditions' 3534 ], # 'conditions'
3526 } 3535 }
OLDNEW
« no previous file with comments | « chrome/browser/media/chrome_webrtc_browsertest.cc ('k') | chrome/test/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698