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 784 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
795 '../sandbox/sandbox.gyp:sandbox_linux_jni_unittests_apk', | 795 '../sandbox/sandbox.gyp:sandbox_linux_jni_unittests_apk', |
796 '../sql/sql.gyp:sql_unittests_apk', | 796 '../sql/sql.gyp:sql_unittests_apk', |
797 '../sync/sync.gyp:sync_unit_tests_apk', | 797 '../sync/sync.gyp:sync_unit_tests_apk', |
798 '../tools/android/heap_profiler/heap_profiler.gyp:heap_profiler_unit
tests_apk', | 798 '../tools/android/heap_profiler/heap_profiler.gyp:heap_profiler_unit
tests_apk', |
799 '../ui/events/events.gyp:events_unittests_apk', | 799 '../ui/events/events.gyp:events_unittests_apk', |
800 '../ui/gfx/gfx_tests.gyp:gfx_unittests_apk', | 800 '../ui/gfx/gfx_tests.gyp:gfx_unittests_apk', |
801 '../ui/ui_unittests.gyp:ui_unittests_apk', | 801 '../ui/ui_unittests.gyp:ui_unittests_apk', |
802 ], | 802 ], |
803 }, | 803 }, |
804 { | 804 { |
805 # WebRTC Android APK tests. | |
806 'target_name': 'android_builder_webrtc', | |
807 'type': 'none', | |
808 'variables': { | |
809 # Set default value for include_tests to '0'. It is normally only | |
810 # used in WebRTC GYP files. It is set to '1' only when building | |
811 # WebRTC for Android, inside a Chromium checkout. | |
812 'include_tests%': 0, | |
813 }, | |
814 'conditions': [ | |
815 ['include_tests==1', { | |
816 'dependencies': [ | |
817 '../third_party/webrtc/build/apk_tests.gyp:*', | |
818 ], | |
819 }], | |
820 ], | |
821 }, # target_name: android_builder_webrtc | |
822 { | |
823 # WebRTC Chromium tests to run on Android. | 805 # WebRTC Chromium tests to run on Android. |
824 'target_name': 'android_builder_chromium_webrtc', | 806 'target_name': 'android_builder_chromium_webrtc', |
825 'type': 'none', | 807 'type': 'none', |
826 'dependencies': [ | 808 'dependencies': [ |
827 '../content/content_shell_and_tests.gyp:content_browsertests', | 809 '../content/content_shell_and_tests.gyp:content_browsertests', |
828 '../tools/android/android_tools.gyp:android_tools', | 810 '../tools/android/android_tools.gyp:android_tools', |
829 '../tools/android/android_tools.gyp:memconsumer', | 811 '../tools/android/android_tools.gyp:memconsumer', |
830 # Unit test bundles packaged as an apk. | 812 # Unit test bundles packaged as an apk. |
831 '../content/content_shell_and_tests.gyp:content_browsertests_apk', | 813 '../content/content_shell_and_tests.gyp:content_browsertests_apk', |
832 ], | 814 ], |
(...skipping 473 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1306 'dependencies': [ | 1288 'dependencies': [ |
1307 '../ui/views/examples/examples.gyp:views_examples_with_content_exe', | 1289 '../ui/views/examples/examples.gyp:views_examples_with_content_exe', |
1308 '../ui/views/views.gyp:views', | 1290 '../ui/views/views.gyp:views', |
1309 '../ui/views/views.gyp:views_unittests', | 1291 '../ui/views/views.gyp:views_unittests', |
1310 ], | 1292 ], |
1311 }, # target_name: macviews_builder | 1293 }, # target_name: macviews_builder |
1312 ], # targets | 1294 ], # targets |
1313 }], # os=='mac' and toolkit_views==1 | 1295 }], # os=='mac' and toolkit_views==1 |
1314 ], # conditions | 1296 ], # conditions |
1315 } | 1297 } |
OLD | NEW |