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 '../android_webview/android_webview.gyp:android_webview_apk', | 20 '../android_webview/android_webview.gyp:android_webview_apk', |
21 '../chrome/chrome.gyp:chromium_testshell', | |
21 '../content/content.gyp:content_shell_apk', | 22 '../content/content.gyp:content_shell_apk', |
22 '<@(android_app_targets)', | 23 '<@(android_app_targets)', |
23 'android_builder_tests', | 24 'android_builder_tests', |
24 ], | |
25 'conditions': [ | |
Yaron
2012/09/20 20:05:15
Please add this back. We'll need this condition fo
David Trainor- moved to gerrit
2012/09/20 21:49:50
Done.
| |
26 ['sdk_build==1', { | |
27 'dependencies': [ | |
28 '../chrome/chrome.gyp:chromium_testshell', | |
29 ], | |
30 }], # sdk_build==1 | |
31 ], # conditions | 25 ], # 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. |
42 'target_name': 'android_builder_tests', | 36 'target_name': 'android_builder_tests', |
43 'type': 'none', | 37 'type': 'none', |
44 'dependencies': [ | 38 'dependencies': [ |
45 '../android_webview/android_webview.gyp:android_webview_test_apk', | 39 '../android_webview/android_webview.gyp:android_webview_test_apk', |
46 '../base/android/jni_generator/jni_generator.gyp:jni_generator_tests', | 40 '../base/android/jni_generator/jni_generator.gyp:jni_generator_tests', |
47 '../base/base.gyp:base_unittests', | 41 '../base/base.gyp:base_unittests', |
42 '../chrome/chrome.gyp:chromium_testshell_test_apk', | |
48 '../chrome/chrome.gyp:unit_tests', | 43 '../chrome/chrome.gyp:unit_tests', |
49 '../content/content.gyp:content_shell_test_apk', | 44 '../content/content.gyp:content_shell_test_apk', |
50 '../content/content.gyp:content_unittests', | 45 '../content/content.gyp:content_unittests', |
51 '../gpu/gpu.gyp:gpu_unittests', | 46 '../gpu/gpu.gyp:gpu_unittests', |
52 '../ipc/ipc.gyp:ipc_tests', | 47 '../ipc/ipc.gyp:ipc_tests', |
53 '../media/media.gyp:media_unittests', | 48 '../media/media.gyp:media_unittests', |
54 '../net/net.gyp:net_unittests', | 49 '../net/net.gyp:net_unittests', |
55 '../sql/sql.gyp:sql_unittests', | 50 '../sql/sql.gyp:sql_unittests', |
56 '../sync/sync.gyp:sync_unit_tests', | 51 '../sync/sync.gyp:sync_unit_tests', |
57 '../third_party/WebKit/Source/WebKit/chromium/All.gyp:*', | 52 '../third_party/WebKit/Source/WebKit/chromium/All.gyp:*', |
(...skipping 29 matching lines...) Expand all Loading... | |
87 '../chrome/chrome.gyp:unit_tests_apk', | 82 '../chrome/chrome.gyp:unit_tests_apk', |
88 '../content/content.gyp:content_unittests_apk', | 83 '../content/content.gyp:content_unittests_apk', |
89 '../gpu/gpu.gyp:gpu_unittests_apk', | 84 '../gpu/gpu.gyp:gpu_unittests_apk', |
90 '../ipc/ipc.gyp:ipc_tests_apk', | 85 '../ipc/ipc.gyp:ipc_tests_apk', |
91 '../media/media.gyp:media_unittests_apk', | 86 '../media/media.gyp:media_unittests_apk', |
92 '../net/net.gyp:net_unittests_apk', | 87 '../net/net.gyp:net_unittests_apk', |
93 '../sql/sql.gyp:sql_unittests_apk', | 88 '../sql/sql.gyp:sql_unittests_apk', |
94 '../sync/sync.gyp:sync_unit_tests_apk', | 89 '../sync/sync.gyp:sync_unit_tests_apk', |
95 '../ui/ui.gyp:ui_unittests_apk', | 90 '../ui/ui.gyp:ui_unittests_apk', |
96 ], | 91 ], |
97 }] | 92 }], |
98 ], | 93 ], |
99 }, | 94 }, |
100 { | 95 { |
101 # Experimental / in-progress targets that are expected to fail | 96 # Experimental / in-progress targets that are expected to fail |
102 # 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 |
103 # orange, not red). | 98 # orange, not red). |
104 'target_name': 'android_experimental', | 99 'target_name': 'android_experimental', |
105 'type': 'none', | 100 'type': 'none', |
106 'dependencies': [ | 101 'dependencies': [ |
107 ], | 102 ], |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
140 'action': [ | 135 'action': [ |
141 'mkdir', | 136 'mkdir', |
142 '-p', | 137 '-p', |
143 '<@(output_dirs)', | 138 '<@(output_dirs)', |
144 ], | 139 ], |
145 }, | 140 }, |
146 ], | 141 ], |
147 }, # build_output_dirs | 142 }, # build_output_dirs |
148 ], # targets | 143 ], # targets |
149 } | 144 } |
OLD | NEW |