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

Side by Side Diff: build/all.gyp

Issue 587173004: Add media_unittests to chromium_builder_webrtc GYP target. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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 | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 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 { 5 {
6 'variables': { 6 'variables': {
7 # A hook that can be overridden in other repositories to add additional 7 # A hook that can be overridden in other repositories to add additional
8 # compilation targets to 'All'. Only used on Android. 8 # compilation targets to 'All'. Only used on Android.
9 'android_app_targets%': [], 9 'android_app_targets%': [],
10 }, 10 },
(...skipping 634 matching lines...) Expand 10 before | Expand all | Expand 10 after
645 'chromium_builder_qa', # needed for perf pyauto tests 645 'chromium_builder_qa', # needed for perf pyauto tests
646 ], 646 ],
647 }, # target_name: chromium_builder_perf_av 647 }, # target_name: chromium_builder_perf_av
648 { 648 {
649 # This target contains everything we need to run tests on the special 649 # This target contains everything we need to run tests on the special
650 # device-equipped WebRTC bots. We have device-requiring tests in 650 # device-equipped WebRTC bots. We have device-requiring tests in
651 # browser_tests and content_browsertests. 651 # browser_tests and content_browsertests.
652 'target_name': 'chromium_builder_webrtc', 652 'target_name': 'chromium_builder_webrtc',
653 'type': 'none', 653 'type': 'none',
654 'dependencies': [ 654 'dependencies': [
655 'chromium_builder_qa', # TODO(phoglund): not sure if needed? 655 'chromium_builder_perf',
656 '../chrome/chrome.gyp:browser_tests', 656 '../chrome/chrome.gyp:browser_tests',
657 '../content/content_shell_and_tests.gyp:content_browsertests', 657 '../content/content_shell_and_tests.gyp:content_browsertests',
658 '../content/content_shell_and_tests.gyp:content_unittests', 658 '../content/content_shell_and_tests.gyp:content_unittests',
659 '../media/media.gyp:media_unittests',
659 '../third_party/webrtc/tools/tools.gyp:frame_analyzer', 660 '../third_party/webrtc/tools/tools.gyp:frame_analyzer',
660 '../third_party/webrtc/tools/tools.gyp:rgba_to_i420_converter', 661 '../third_party/webrtc/tools/tools.gyp:rgba_to_i420_converter',
661 ], 662 ],
662 'conditions': [
663 ['OS=="win"', {
664 'dependencies': [
665 '../chrome/chrome.gyp:crash_service',
666 ],
667 }],
668 ],
669 }, # target_name: chromium_builder_webrtc 663 }, # target_name: chromium_builder_webrtc
670 { 664 {
671 'target_name': 'chromium_builder_chromedriver', 665 'target_name': 'chromium_builder_chromedriver',
672 'type': 'none', 666 'type': 'none',
673 'dependencies': [ 667 'dependencies': [
674 '../chrome/chrome.gyp:chromedriver', 668 '../chrome/chrome.gyp:chromedriver',
675 '../chrome/chrome.gyp:chromedriver_tests', 669 '../chrome/chrome.gyp:chromedriver_tests',
676 '../chrome/chrome.gyp:chromedriver_unittests', 670 '../chrome/chrome.gyp:chromedriver_unittests',
677 ], 671 ],
678 }, # target_name: chromium_builder_chromedriver 672 }, # target_name: chromium_builder_chromedriver
(...skipping 461 matching lines...) Expand 10 before | Expand all | Expand 10 after
1140 ], # targets 1134 ], # targets
1141 'conditions': [ 1135 'conditions': [
1142 ['branding=="Chrome"', { 1136 ['branding=="Chrome"', {
1143 'targets': [ 1137 'targets': [
1144 { 1138 {
1145 'target_name': 'chrome_official_builder', 1139 'target_name': 'chrome_official_builder',
1146 'type': 'none', 1140 'type': 'none',
1147 'dependencies': [ 1141 'dependencies': [
1148 '../base/base.gyp:base_unittests', 1142 '../base/base.gyp:base_unittests',
1149 '../chrome/chrome.gyp:browser_tests', 1143 '../chrome/chrome.gyp:browser_tests',
1150 '../chrome/chrome.gyp:sync_integration_tests', 1144 '../chrome/chrome.gyp:sync_integration_tests',
1151 '../chrome/chrome.gyp:crash_service', 1145 '../chrome/chrome.gyp:crash_service',
1152 '../chrome/chrome.gyp:gcapi_dll', 1146 '../chrome/chrome.gyp:gcapi_dll',
1153 '../chrome/chrome.gyp:pack_policy_templates', 1147 '../chrome/chrome.gyp:pack_policy_templates',
1154 '../chrome/installer/mini_installer.gyp:mini_installer', 1148 '../chrome/installer/mini_installer.gyp:mini_installer',
1155 '../cloud_print/cloud_print.gyp:cloud_print', 1149 '../cloud_print/cloud_print.gyp:cloud_print',
1156 '../courgette/courgette.gyp:courgette', 1150 '../courgette/courgette.gyp:courgette',
1157 '../courgette/courgette.gyp:courgette64', 1151 '../courgette/courgette.gyp:courgette64',
1158 '../ipc/ipc.gyp:ipc_tests', 1152 '../ipc/ipc.gyp:ipc_tests',
1159 '../media/media.gyp:media_unittests', 1153 '../media/media.gyp:media_unittests',
1160 '../net/net.gyp:net_unittests_run', 1154 '../net/net.gyp:net_unittests_run',
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
1311 'dependencies': [ 1305 'dependencies': [
1312 '../ui/views/examples/examples.gyp:views_examples_with_content_exe', 1306 '../ui/views/examples/examples.gyp:views_examples_with_content_exe',
1313 '../ui/views/views.gyp:views', 1307 '../ui/views/views.gyp:views',
1314 '../ui/views/views.gyp:views_unittests', 1308 '../ui/views/views.gyp:views_unittests',
1315 ], 1309 ],
1316 }, # target_name: macviews_builder 1310 }, # target_name: macviews_builder
1317 ], # targets 1311 ], # targets
1318 }], # os=='mac' and toolkit_views==1 1312 }], # os=='mac' and toolkit_views==1
1319 ], # conditions 1313 ], # conditions
1320 } 1314 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698