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

Side by Side Diff: trunk/src/build/all_android.gyp

Issue 18547009: Revert 209420 "Factor out content shell and tests into a standal..." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 7 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « trunk/src/build/all.gyp ('k') | trunk/src/chrome/chrome.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 # 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_shell_and_tests.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', 23 '../android_webview/android_webview.gyp:android_webview_apk',
24 '../chrome/chrome.gyp:chromium_testshell', 24 '../chrome/chrome.gyp:chromium_testshell',
25 # TODO(nyquist) This should instead by a target for sync when all of 25 # TODO(nyquist) This should instead by a target for sync when all of
26 # the sync-related code for Android has been upstreamed. 26 # the sync-related code for Android has been upstreamed.
27 # See http://crbug.com/159203 27 # See http://crbug.com/159203
28 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio n_javalib', 28 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio n_javalib',
29 ], 29 ],
30 }, # target_name: All 30 }, # target_name: All
31 { 31 {
32 'target_name': 'all_webkit', 32 'target_name': 'all_webkit',
33 'type': 'none', 33 'type': 'none',
34 'dependencies': [ 34 'dependencies': [
35 '../third_party/WebKit/public/all.gyp:all_blink', 35 '../third_party/WebKit/public/all.gyp:all_blink',
36 '../content/content_shell_and_tests.gyp:content_shell_apk', 36 '../content/content.gyp:content_shell_apk',
37 ], 37 ],
38 }, # target_name: all_webkit 38 }, # target_name: all_webkit
39 { 39 {
40 # The current list of tests for android. This is temporary 40 # The current list of tests for android. This is temporary
41 # until the full set supported. If adding a new test here, 41 # until the full set supported. If adding a new test here,
42 # please also add it to build/android/run_tests.py, else the 42 # please also add it to build/android/run_tests.py, else the
43 # test is not run. 43 # test is not run.
44 # 44 #
45 # WARNING: 45 # WARNING:
46 # Do not add targets here without communicating the implications 46 # Do not add targets here without communicating the implications
47 # on tryserver triggers and load. Discuss with jrg please. 47 # on tryserver triggers and load. Discuss with jrg please.
48 'target_name': 'android_builder_tests', 48 'target_name': 'android_builder_tests',
49 'type': 'none', 49 'type': 'none',
50 'dependencies': [ 50 'dependencies': [
51 '../android_webview/android_webview.gyp:android_webview_unittests', 51 '../android_webview/android_webview.gyp:android_webview_unittests',
52 '../base/android/jni_generator/jni_generator.gyp:jni_generator_tests', 52 '../base/android/jni_generator/jni_generator.gyp:jni_generator_tests',
53 '../base/base.gyp:base_unittests', 53 '../base/base.gyp:base_unittests',
54 '../build/android/tests/multiple_proguards/multiple_proguards.gyp:multip le_proguards_test_apk', 54 '../build/android/tests/multiple_proguards/multiple_proguards.gyp:multip le_proguards_test_apk',
55 '../cc/cc_tests.gyp:cc_perftests_apk', 55 '../cc/cc_tests.gyp:cc_perftests_apk',
56 '../cc/cc_tests.gyp:cc_unittests', 56 '../cc/cc_tests.gyp:cc_unittests',
57 '../chrome/chrome.gyp:unit_tests', 57 '../chrome/chrome.gyp:unit_tests',
58 '../components/components.gyp:components_unittests', 58 '../components/components.gyp:components_unittests',
59 '../content/content_shell_and_tests.gyp:content_shell_test_apk', 59 '../content/content.gyp:content_browsertests',
60 '../content/content_shell_and_tests.gyp:content_unittests', 60 '../content/content.gyp:content_shell_test_apk',
61 '../content/content_shell_and_tests.gyp:content_browsertests', 61 '../content/content.gyp:content_unittests',
62 '../gpu/gpu.gyp:gl_tests', 62 '../gpu/gpu.gyp:gl_tests',
63 '../gpu/gpu.gyp:gpu_unittests', 63 '../gpu/gpu.gyp:gpu_unittests',
64 '../ipc/ipc.gyp:ipc_tests', 64 '../ipc/ipc.gyp:ipc_tests',
65 '../media/media.gyp:media_unittests', 65 '../media/media.gyp:media_unittests',
66 '../net/net.gyp:net_unittests', 66 '../net/net.gyp:net_unittests',
67 '../sandbox/sandbox.gyp:sandbox_linux_unittests', 67 '../sandbox/sandbox.gyp:sandbox_linux_unittests',
68 '../sql/sql.gyp:sql_unittests', 68 '../sql/sql.gyp:sql_unittests',
69 '../sync/sync.gyp:sync_unit_tests', 69 '../sync/sync.gyp:sync_unit_tests',
70 '../third_party/WebKit/public/all.gyp:*', 70 '../third_party/WebKit/public/all.gyp:*',
71 '../tools/android/android_tools.gyp:android_tools', 71 '../tools/android/android_tools.gyp:android_tools',
(...skipping 19 matching lines...) Expand all
91 ], 91 ],
92 }], 92 }],
93 ['"<(gtest_target_type)"=="shared_library"', { 93 ['"<(gtest_target_type)"=="shared_library"', {
94 'dependencies': [ 94 'dependencies': [
95 # Unit test bundles packaged as an apk. 95 # Unit test bundles packaged as an apk.
96 '../android_webview/android_webview.gyp:android_webview_unittests_ap k', 96 '../android_webview/android_webview.gyp:android_webview_unittests_ap k',
97 '../base/base.gyp:base_unittests_apk', 97 '../base/base.gyp:base_unittests_apk',
98 '../cc/cc_tests.gyp:cc_unittests_apk', 98 '../cc/cc_tests.gyp:cc_unittests_apk',
99 '../chrome/chrome.gyp:unit_tests_apk', 99 '../chrome/chrome.gyp:unit_tests_apk',
100 '../components/components.gyp:components_unittests_apk', 100 '../components/components.gyp:components_unittests_apk',
101 '../content/content_shell_and_tests.gyp:content_browsertests_apk', 101 '../content/content.gyp:content_browsertests_apk',
102 '../content/content_shell_and_tests.gyp:content_unittests_apk', 102 '../content/content.gyp:content_unittests_apk',
103 '../content/content_shell_and_tests.gyp:video_decode_accelerator_uni ttest_apk', 103 '../content/content.gyp:video_decode_accelerator_unittest_apk',
104 '../gpu/gpu.gyp:gl_tests_apk', 104 '../gpu/gpu.gyp:gl_tests_apk',
105 '../gpu/gpu.gyp:gpu_unittests_apk', 105 '../gpu/gpu.gyp:gpu_unittests_apk',
106 '../ipc/ipc.gyp:ipc_tests_apk', 106 '../ipc/ipc.gyp:ipc_tests_apk',
107 '../media/media.gyp:media_unittests_apk', 107 '../media/media.gyp:media_unittests_apk',
108 '../net/net.gyp:net_unittests_apk', 108 '../net/net.gyp:net_unittests_apk',
109 '../sandbox/sandbox.gyp:sandbox_linux_jni_unittests_apk', 109 '../sandbox/sandbox.gyp:sandbox_linux_jni_unittests_apk',
110 '../sql/sql.gyp:sql_unittests_apk', 110 '../sql/sql.gyp:sql_unittests_apk',
111 '../sync/sync.gyp:sync_unit_tests_apk', 111 '../sync/sync.gyp:sync_unit_tests_apk',
112 '../ui/ui.gyp:ui_unittests_apk', 112 '../ui/ui.gyp:ui_unittests_apk',
113 '../android_webview/android_webview.gyp:android_webview_test_apk', 113 '../android_webview/android_webview.gyp:android_webview_test_apk',
(...skipping 16 matching lines...) Expand all
130 { 130 {
131 # In-progress targets that are expected to fail and are NOT run 131 # In-progress targets that are expected to fail and are NOT run
132 # on any bot. 132 # on any bot.
133 'target_name': 'android_in_progress', 133 'target_name': 'android_in_progress',
134 'type': 'none', 134 'type': 'none',
135 'dependencies': [ 135 'dependencies': [
136 ], 136 ],
137 }, 137 },
138 ], # targets 138 ], # targets
139 } 139 }
OLDNEW
« no previous file with comments | « trunk/src/build/all.gyp ('k') | trunk/src/chrome/chrome.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698