OLD | NEW |
---|---|
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 782 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
793 '../sandbox/sandbox.gyp:sandbox_linux_jni_unittests_apk', | 793 '../sandbox/sandbox.gyp:sandbox_linux_jni_unittests_apk', |
794 '../sql/sql.gyp:sql_unittests_apk', | 794 '../sql/sql.gyp:sql_unittests_apk', |
795 '../sync/sync.gyp:sync_unit_tests_apk', | 795 '../sync/sync.gyp:sync_unit_tests_apk', |
796 '../tools/android/heap_profiler/heap_profiler.gyp:heap_profiler_unit tests_apk', | 796 '../tools/android/heap_profiler/heap_profiler.gyp:heap_profiler_unit tests_apk', |
797 '../ui/events/events.gyp:events_unittests_apk', | 797 '../ui/events/events.gyp:events_unittests_apk', |
798 '../ui/gfx/gfx_tests.gyp:gfx_unittests_apk', | 798 '../ui/gfx/gfx_tests.gyp:gfx_unittests_apk', |
799 '../ui/ui_unittests.gyp:ui_unittests_apk', | 799 '../ui/ui_unittests.gyp:ui_unittests_apk', |
800 ], | 800 ], |
801 }, | 801 }, |
802 { | 802 { |
803 # WebRTC Android APK tests. | |
804 'target_name': 'android_builder_webrtc', | |
805 'type': 'none', | |
806 'variables': { | |
807 # Set default value for include_tests to '0'. It is normally only | |
808 # used in WebRTC GYP files. It is set to '1' only when building | |
809 # WebRTC for Android, inside a Chromium checkout. | |
810 'include_tests%': 0, | |
811 }, | |
812 'conditions': [ | |
813 ['include_tests==1', { | |
814 'dependencies': [ | |
815 '../third_party/webrtc/build/apk_tests.gyp:*', | |
816 ], | |
817 }], | |
818 ], | |
819 }, # target_name: android_builder_webrtc | |
820 { | |
821 # WebRTC Chromium tests to run on Android. | 803 # WebRTC Chromium tests to run on Android. |
822 'target_name': 'android_builder_chromium_webrtc', | 804 'target_name': 'android_builder_chromium_webrtc', |
kjellander_chromium
2014/08/27 14:09:58
Our Chromium bots in http://build.chromium.org/p/c
| |
823 'type': 'none', | 805 'type': 'none', |
824 'dependencies': [ | 806 'dependencies': [ |
825 '../content/content_shell_and_tests.gyp:content_browsertests', | 807 '../content/content_shell_and_tests.gyp:content_browsertests', |
826 '../tools/android/android_tools.gyp:android_tools', | 808 '../tools/android/android_tools.gyp:android_tools', |
827 '../tools/android/android_tools.gyp:memconsumer', | 809 '../tools/android/android_tools.gyp:memconsumer', |
828 # Unit test bundles packaged as an apk. | 810 # Unit test bundles packaged as an apk. |
829 '../content/content_shell_and_tests.gyp:content_browsertests_apk', | 811 '../content/content_shell_and_tests.gyp:content_browsertests_apk', |
830 ], | 812 ], |
831 }, # target_name: android_builder_chromium_webrtc | 813 }, # target_name: android_builder_chromium_webrtc |
832 ], # targets | 814 ], # targets |
(...skipping 464 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1297 'dependencies': [ | 1279 'dependencies': [ |
1298 '../ui/views/examples/examples.gyp:views_examples_with_content_exe', | 1280 '../ui/views/examples/examples.gyp:views_examples_with_content_exe', |
1299 '../ui/views/views.gyp:views', | 1281 '../ui/views/views.gyp:views', |
1300 '../ui/views/views.gyp:views_unittests', | 1282 '../ui/views/views.gyp:views_unittests', |
1301 ], | 1283 ], |
1302 }, # target_name: macviews_builder | 1284 }, # target_name: macviews_builder |
1303 ], # targets | 1285 ], # targets |
1304 }], # os=='mac' and toolkit_views==1 | 1286 }], # os=='mac' and toolkit_views==1 |
1305 ], # conditions | 1287 ], # conditions |
1306 } | 1288 } |
OLD | NEW |