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 # This is all.gyp file for Android to prevent breakage in Android and other | 5 # This is all.gyp file for Android to prevent breakage in Android and other |
6 # platform; It will be churning a lot in the short term and eventually be merged | 6 # platform; It will be churning a lot in the short term and eventually be merged |
7 # into all.gyp. | 7 # into all.gyp. |
8 | 8 |
9 { | 9 { |
10 'variables': { | 10 'variables': { |
11 # A hook that can be overridden in other repositories to add additional | 11 # A hook that can be overridden in other repositories to add additional |
12 # compilation targets to 'All' | 12 # compilation targets to 'All' |
13 'android_app_targets%': [], | 13 'android_app_targets%': [], |
14 }, | 14 }, |
15 'targets': [ | 15 'targets': [ |
16 { | 16 { |
17 'target_name': 'All', | 17 'target_name': 'All', |
18 'type': 'none', | 18 'type': 'none', |
19 'dependencies': [ | 19 'dependencies': [ |
20 '../content/content.gyp:content_shell_apk', | 20 '../content/content.gyp:content_shell_apk', |
21 '<@(android_app_targets)', | 21 '<@(android_app_targets)', |
22 'android_builder_tests', | 22 'android_builder_tests', |
| 23 '../android_webview/android_webview.gyp:android_webview_apk', |
| 24 '../chrome/chrome.gyp:chromium_testshell', |
23 ], | 25 ], |
24 'conditions': [ | |
25 ['sdk_build==1', { | |
26 'dependencies': [ | |
27 '../android_webview/android_webview.gyp:android_webview_apk', | |
28 '../chrome/chrome.gyp:chromium_testshell', | |
29 ], | |
30 }], # sdk_build==1 | |
31 ], # conditions | |
32 }, # target_name: All | 26 }, # target_name: All |
33 { | 27 { |
34 # The current list of tests for android. This is temporary | 28 # The current list of tests for android. This is temporary |
35 # until the full set supported. If adding a new test here, | 29 # until the full set supported. If adding a new test here, |
36 # please also add it to build/android/run_tests.py, else the | 30 # please also add it to build/android/run_tests.py, else the |
37 # test is not run. | 31 # test is not run. |
38 # | 32 # |
39 # WARNING: | 33 # WARNING: |
40 # Do not add targets here without communicating the implications | 34 # Do not add targets here without communicating the implications |
41 # on tryserver triggers and load. Discuss with jrg please. | 35 # on tryserver triggers and load. Discuss with jrg please. |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 '../base/base.gyp:base_unittests_apk', | 79 '../base/base.gyp:base_unittests_apk', |
86 '../chrome/chrome.gyp:unit_tests_apk', | 80 '../chrome/chrome.gyp:unit_tests_apk', |
87 '../content/content.gyp:content_unittests_apk', | 81 '../content/content.gyp:content_unittests_apk', |
88 '../gpu/gpu.gyp:gpu_unittests_apk', | 82 '../gpu/gpu.gyp:gpu_unittests_apk', |
89 '../ipc/ipc.gyp:ipc_tests_apk', | 83 '../ipc/ipc.gyp:ipc_tests_apk', |
90 '../media/media.gyp:media_unittests_apk', | 84 '../media/media.gyp:media_unittests_apk', |
91 '../net/net.gyp:net_unittests_apk', | 85 '../net/net.gyp:net_unittests_apk', |
92 '../sql/sql.gyp:sql_unittests_apk', | 86 '../sql/sql.gyp:sql_unittests_apk', |
93 '../sync/sync.gyp:sync_unit_tests_apk', | 87 '../sync/sync.gyp:sync_unit_tests_apk', |
94 '../ui/ui.gyp:ui_unittests_apk', | 88 '../ui/ui.gyp:ui_unittests_apk', |
95 ], | |
96 }], | |
97 ['sdk_build==1', { | |
98 'dependencies': [ | |
99 '../android_webview/android_webview.gyp:android_webview_test_apk', | 89 '../android_webview/android_webview.gyp:android_webview_test_apk', |
100 '../chrome/chrome.gyp:chromium_testshell_test_apk', | 90 '../chrome/chrome.gyp:chromium_testshell_test_apk', |
101 ], | 91 ], |
102 }], | 92 }], |
103 ], | 93 ], |
104 }, | 94 }, |
105 { | 95 { |
106 # Experimental / in-progress targets that are expected to fail | 96 # Experimental / in-progress targets that are expected to fail |
107 # but we still try to compile them on bots (turning the stage | 97 # but we still try to compile them on bots (turning the stage |
108 # orange, not red). | 98 # orange, not red). |
109 'target_name': 'android_experimental', | 99 'target_name': 'android_experimental', |
110 'type': 'none', | 100 'type': 'none', |
111 'dependencies': [ | 101 'dependencies': [ |
112 ], | 102 ], |
113 }, | 103 }, |
114 { | 104 { |
115 # In-progress targets that are expected to fail and are NOT run | 105 # In-progress targets that are expected to fail and are NOT run |
116 # on any bot. | 106 # on any bot. |
117 'target_name': 'android_in_progress', | 107 'target_name': 'android_in_progress', |
118 'type': 'none', | 108 'type': 'none', |
119 'dependencies': [ | 109 'dependencies': [ |
120 '../content/content.gyp:content_browsertests', | 110 '../content/content.gyp:content_browsertests', |
121 ], | 111 ], |
122 }, | 112 }, |
123 ], # targets | 113 ], # targets |
124 } | 114 } |
OLD | NEW |