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

Side by Side Diff: build/all_android.gyp

Issue 11146005: Add support for generating jars from protos and add cacheinvalidation_java. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Use javalib target name consistently. Created 8 years, 1 month 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 | « no previous file | build/android/empty/src/.keep » ('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.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
26 # the sync-related code for Android has been upstreamed.
27 # See http://crbug.com/159203
28 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio n_javalib',
25 ], 29 ],
26 }, # target_name: All 30 }, # target_name: All
27 { 31 {
28 # The current list of tests for android. This is temporary 32 # The current list of tests for android. This is temporary
29 # until the full set supported. If adding a new test here, 33 # until the full set supported. If adding a new test here,
30 # please also add it to build/android/run_tests.py, else the 34 # please also add it to build/android/run_tests.py, else the
31 # test is not run. 35 # test is not run.
32 # 36 #
33 # WARNING: 37 # WARNING:
34 # Do not add targets here without communicating the implications 38 # Do not add targets here without communicating the implications
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 # In-progress targets that are expected to fail and are NOT run 118 # In-progress targets that are expected to fail and are NOT run
115 # on any bot. 119 # on any bot.
116 'target_name': 'android_in_progress', 120 'target_name': 'android_in_progress',
117 'type': 'none', 121 'type': 'none',
118 'dependencies': [ 122 'dependencies': [
119 '../content/content.gyp:content_browsertests', 123 '../content/content.gyp:content_browsertests',
120 ], 124 ],
121 }, 125 },
122 ], # targets 126 ], # targets
123 } 127 }
OLDNEW
« no previous file with comments | « no previous file | build/android/empty/src/.keep » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698