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

Side by Side Diff: build/all.gyp

Issue 537253003: Implementing RTC debugging session objects (client and server parts). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@tunnel
Patch Set: Created 6 years, 2 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
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 787 matching lines...) Expand 10 before | Expand all | Expand 10 after
798 '../android_webview/android_webview.gyp:android_webview_test_apk', 798 '../android_webview/android_webview.gyp:android_webview_test_apk',
799 '../android_webview/android_webview.gyp:android_webview_unittests_ap k', 799 '../android_webview/android_webview.gyp:android_webview_unittests_ap k',
800 '../base/base.gyp:base_unittests_apk', 800 '../base/base.gyp:base_unittests_apk',
801 '../cc/blink/cc_blink_tests.gyp:cc_blink_unittests_apk', 801 '../cc/blink/cc_blink_tests.gyp:cc_blink_unittests_apk',
802 '../cc/cc_tests.gyp:cc_unittests_apk', 802 '../cc/cc_tests.gyp:cc_unittests_apk',
803 '../chrome/chrome.gyp:chrome_shell_test_apk', 803 '../chrome/chrome.gyp:chrome_shell_test_apk',
804 '../chrome/chrome.gyp:chrome_sync_shell_test_apk', 804 '../chrome/chrome.gyp:chrome_sync_shell_test_apk',
805 '../chrome/chrome.gyp:chrome_shell_uiautomator_tests', 805 '../chrome/chrome.gyp:chrome_shell_uiautomator_tests',
806 '../chrome/chrome.gyp:unit_tests_apk', 806 '../chrome/chrome.gyp:unit_tests_apk',
807 '../components/components_tests.gyp:components_unittests_apk', 807 '../components/components_tests.gyp:components_unittests_apk',
808 '../components/devtools_bridge.gyp:devtools_bridge_tests_apk',
809 '../content/content_shell_and_tests.gyp:content_browsertests_apk', 808 '../content/content_shell_and_tests.gyp:content_browsertests_apk',
810 '../content/content_shell_and_tests.gyp:content_gl_tests_apk', 809 '../content/content_shell_and_tests.gyp:content_gl_tests_apk',
811 '../content/content_shell_and_tests.gyp:content_unittests_apk', 810 '../content/content_shell_and_tests.gyp:content_unittests_apk',
812 '../content/content_shell_and_tests.gyp:video_decode_accelerator_uni ttest_apk', 811 '../content/content_shell_and_tests.gyp:video_decode_accelerator_uni ttest_apk',
813 '../gpu/gpu.gyp:gl_tests_apk', 812 '../gpu/gpu.gyp:gl_tests_apk',
814 '../gpu/gpu.gyp:gpu_unittests_apk', 813 '../gpu/gpu.gyp:gpu_unittests_apk',
815 '../ipc/ipc.gyp:ipc_tests_apk', 814 '../ipc/ipc.gyp:ipc_tests_apk',
816 '../media/media.gyp:media_unittests_apk', 815 '../media/media.gyp:media_unittests_apk',
817 '../net/net.gyp:net_unittests_apk', 816 '../net/net.gyp:net_unittests_apk',
818 '../sandbox/sandbox.gyp:sandbox_linux_jni_unittests_apk', 817 '../sandbox/sandbox.gyp:sandbox_linux_jni_unittests_apk',
819 '../sql/sql.gyp:sql_unittests_apk', 818 '../sql/sql.gyp:sql_unittests_apk',
820 '../sync/sync.gyp:sync_unit_tests_apk', 819 '../sync/sync.gyp:sync_unit_tests_apk',
821 '../tools/android/heap_profiler/heap_profiler.gyp:heap_profiler_unit tests_apk', 820 '../tools/android/heap_profiler/heap_profiler.gyp:heap_profiler_unit tests_apk',
822 '../ui/base/ui_base_tests.gyp:ui_base_unittests_apk', 821 '../ui/base/ui_base_tests.gyp:ui_base_unittests_apk',
823 '../ui/base/ui_base_tests.gyp:ui_unittests_apk', 822 '../ui/base/ui_base_tests.gyp:ui_unittests_apk',
824 '../ui/events/events.gyp:events_unittests_apk', 823 '../ui/events/events.gyp:events_unittests_apk',
825 '../ui/gfx/gfx_tests.gyp:gfx_unittests_apk', 824 '../ui/gfx/gfx_tests.gyp:gfx_unittests_apk',
826 ], 825 ],
826 'conditions': [
827 ['"<(libpeer_target_type)"=="static_library"', {
828 'dependencies': [
829 '../components/devtools_bridge.gyp:devtools_bridge_tests_apk',
830 ],
831 }],
832 ],
827 }, 833 },
828 { 834 {
829 # WebRTC Chromium tests to run on Android. 835 # WebRTC Chromium tests to run on Android.
830 'target_name': 'android_builder_chromium_webrtc', 836 'target_name': 'android_builder_chromium_webrtc',
831 'type': 'none', 837 'type': 'none',
832 'dependencies': [ 838 'dependencies': [
833 '../content/content_shell_and_tests.gyp:content_browsertests', 839 '../content/content_shell_and_tests.gyp:content_browsertests',
834 '../tools/android/android_tools.gyp:android_tools', 840 '../tools/android/android_tools.gyp:android_tools',
835 '../tools/android/android_tools.gyp:memconsumer', 841 '../tools/android/android_tools.gyp:memconsumer',
836 # Unit test bundles packaged as an apk. 842 # Unit test bundles packaged as an apk.
837 '../content/content_shell_and_tests.gyp:content_browsertests_apk', 843 '../content/content_shell_and_tests.gyp:content_browsertests_apk',
838 ], 844 ],
839 'conditions': [
840 ['"<(libpeer_target_type)"=="static_library"', {
841 'dependencies': [
842 '../third_party/libjingle/libjingle.gyp:libjingle_peerconnection _javalib',
843 ],
844 }],
845 ],
846 }, # target_name: android_builder_chromium_webrtc 845 }, # target_name: android_builder_chromium_webrtc
847 ], # targets 846 ], # targets
848 }], # OS="android" 847 }], # OS="android"
849 ['OS=="mac"', { 848 ['OS=="mac"', {
850 'targets': [ 849 'targets': [
851 { 850 {
852 # Target to build everything plus the dmg. We don't put the dmg 851 # Target to build everything plus the dmg. We don't put the dmg
853 # in the All target because developers really don't need it. 852 # in the All target because developers really don't need it.
854 'target_name': 'all_and_dmg', 853 'target_name': 'all_and_dmg',
855 'type': 'none', 854 'type': 'none',
(...skipping 474 matching lines...) Expand 10 before | Expand all | Expand 10 after
1330 'dependencies': [ 1329 'dependencies': [
1331 '../ui/views/examples/examples.gyp:views_examples_with_content_exe', 1330 '../ui/views/examples/examples.gyp:views_examples_with_content_exe',
1332 '../ui/views/views.gyp:views', 1331 '../ui/views/views.gyp:views',
1333 '../ui/views/views.gyp:views_unittests', 1332 '../ui/views/views.gyp:views_unittests',
1334 ], 1333 ],
1335 }, # target_name: macviews_builder 1334 }, # target_name: macviews_builder
1336 ], # targets 1335 ], # targets
1337 }], # os=='mac' and toolkit_views==1 1336 }], # os=='mac' and toolkit_views==1
1338 ], # conditions 1337 ], # conditions
1339 } 1338 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698