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

Side by Side Diff: build/java.gypi

Issue 10081035: Add templates for building java and running the jni_generator. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: make base targets only defined for androd Created 8 years, 8 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 | « base/base.gypi ('k') | build/jni_generator.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 # This file is meant to be included into a target to provide a rule
6 # to build Java in a consistent manner.
7 #
8 # To use this, create a gyp target with the following form:
9 # {
10 # 'target_name': 'my-package_java',
11 # 'type': 'none',
12 # 'variables': {
13 # 'package_name': 'my-package',
14 # 'java_in_dir': 'path/to/package/root',
15 # },
16 # 'includes': ['path/to/this/gypi/file'],
17 # }
18 #
19 # Note that this assumes that there's ant buildfile with package_name in
20 # java_in_dir. So if if you have package_name="base" and
21 # java_in_dir="base/android/java" you should have a directory structure like:
22 #
23 # base/android/java/base.xml
24 # base/android/java/org/chromium/base/Foo.java
25 # base/android/java/org/chromium/base/Bar.java
26 #
27 # Finally, the generated jar-file will be:
28 # <(PRODUCT_DIR)/chromium_base.jar
29 #
30 # TODO(yfriedman): The "finally" statement isn't entirely true yet, as we don't
31 # auto-generate the ant file yet.
32
33 {
34 'actions': [
35 {
36 'action_name': 'ant_<(package_name)',
37 'message': 'Building <(package_name) java sources.',
38 'inputs': [
39 '<(java_in_dir)/<(package_name).xml',
40 '<!@(find <(java_in_dir) -name "*.java")'
41 ],
42 'outputs': [
43 '<(PRODUCT_DIR)/chromium_<(package_name).jar',
44 ],
45 'action': [
46 'ant',
47 '-DPRODUCT_DIR=<(PRODUCT_DIR)',
48 '-buildfile',
49 '<(java_in_dir)/<(package_name).xml',
50 ]
51 },
52 ],
53 }
OLDNEW
« no previous file with comments | « base/base.gypi ('k') | build/jni_generator.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698