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

Side by Side Diff: build/all.gyp

Issue 711023002: Add remoting_host target to chromium_builder_webrtc dependencies (re-land) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Include all remoting.gyp targets and add devtools_bridge targets Created 6 years, 1 month 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 671 matching lines...) Expand 10 before | Expand all | Expand 10 after
682 'type': 'none', 682 'type': 'none',
683 'dependencies': [ 683 'dependencies': [
684 'chromium_builder_perf', 684 'chromium_builder_perf',
685 '../chrome/chrome.gyp:browser_tests', 685 '../chrome/chrome.gyp:browser_tests',
686 '../content/content_shell_and_tests.gyp:content_browsertests', 686 '../content/content_shell_and_tests.gyp:content_browsertests',
687 '../content/content_shell_and_tests.gyp:content_unittests', 687 '../content/content_shell_and_tests.gyp:content_unittests',
688 '../media/media.gyp:media_unittests', 688 '../media/media.gyp:media_unittests',
689 '../third_party/webrtc/tools/tools.gyp:frame_analyzer', 689 '../third_party/webrtc/tools/tools.gyp:frame_analyzer',
690 '../third_party/webrtc/tools/tools.gyp:rgba_to_i420_converter', 690 '../third_party/webrtc/tools/tools.gyp:rgba_to_i420_converter',
691 ], 691 ],
692 'conditions': [
693 ['remoting==1', {
694 'dependencies': [
695 '../remoting/remoting.gyp:*',
696 ],
697 }],
698 ],
692 }, # target_name: chromium_builder_webrtc 699 }, # target_name: chromium_builder_webrtc
693 { 700 {
694 'target_name': 'chromium_builder_chromedriver', 701 'target_name': 'chromium_builder_chromedriver',
695 'type': 'none', 702 'type': 'none',
696 'dependencies': [ 703 'dependencies': [
697 '../chrome/chrome.gyp:chromedriver', 704 '../chrome/chrome.gyp:chromedriver',
698 '../chrome/chrome.gyp:chromedriver_tests', 705 '../chrome/chrome.gyp:chromedriver_tests',
699 '../chrome/chrome.gyp:chromedriver_unittests', 706 '../chrome/chrome.gyp:chromedriver_unittests',
700 ], 707 ],
701 }, # target_name: chromium_builder_chromedriver 708 }, # target_name: chromium_builder_chromedriver
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
861 { 868 {
862 # WebRTC Chromium tests to run on Android. 869 # WebRTC Chromium tests to run on Android.
863 'target_name': 'android_builder_chromium_webrtc', 870 'target_name': 'android_builder_chromium_webrtc',
864 'type': 'none', 871 'type': 'none',
865 'dependencies': [ 872 'dependencies': [
866 '../build/android/pylib/device/commands/commands.gyp:chromium_comman ds', 873 '../build/android/pylib/device/commands/commands.gyp:chromium_comman ds',
867 '../content/content_shell_and_tests.gyp:content_browsertests', 874 '../content/content_shell_and_tests.gyp:content_browsertests',
868 '../tools/android/android_tools.gyp:android_tools', 875 '../tools/android/android_tools.gyp:android_tools',
869 '../tools/android/android_tools.gyp:memconsumer', 876 '../tools/android/android_tools.gyp:memconsumer',
870 # Unit test bundles packaged as an apk. 877 # Unit test bundles packaged as an apk.
878 '../components/devtools_bridge.gyp:devtools_bridge_tests_apk',
879 '../components/devtools_bridge.gyp:devtools_bridge_tests2_apk',
871 '../content/content_shell_and_tests.gyp:content_browsertests_apk', 880 '../content/content_shell_and_tests.gyp:content_browsertests_apk',
872 ], 881 ],
873 }, # target_name: android_builder_chromium_webrtc 882 }, # target_name: android_builder_chromium_webrtc
874 ], # targets 883 ], # targets
875 }], # OS="android" 884 }], # OS="android"
876 ['OS=="mac"', { 885 ['OS=="mac"', {
877 'targets': [ 886 'targets': [
878 { 887 {
879 # Target to build everything plus the dmg. We don't put the dmg 888 # Target to build everything plus the dmg. We don't put the dmg
880 # in the All target because developers really don't need it. 889 # in the All target because developers really don't need it.
(...skipping 488 matching lines...) Expand 10 before | Expand all | Expand 10 after
1369 'dependencies': [ 1378 'dependencies': [
1370 '../ui/views/examples/examples.gyp:views_examples_with_content_exe', 1379 '../ui/views/examples/examples.gyp:views_examples_with_content_exe',
1371 '../ui/views/views.gyp:views', 1380 '../ui/views/views.gyp:views',
1372 '../ui/views/views.gyp:views_unittests', 1381 '../ui/views/views.gyp:views_unittests',
1373 ], 1382 ],
1374 }, # target_name: macviews_builder 1383 }, # target_name: macviews_builder
1375 ], # targets 1384 ], # targets
1376 }], # os=='mac' and toolkit_views==1 1385 }], # os=='mac' and toolkit_views==1
1377 ], # conditions 1386 ], # conditions
1378 } 1387 }
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