Chromium Code Reviews| Index: build/jni_generator.gypi |
| diff --git a/build/jni_generator.gypi b/build/jni_generator.gypi |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..b5700262467b49215f44223d13993d169bfc62fa |
| --- /dev/null |
| +++ b/build/jni_generator.gypi |
| @@ -0,0 +1,56 @@ |
| +# Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| +# Use of this source code is governed by a BSD-style license that can be |
| +# found in the LICENSE file. |
| + |
| +# This file is meant to be included into a target to provide a rule |
| +# to generate jni bindings for Java-files in a consistent manner. |
| +# |
| +# To use this, create a gyp target with the following form: |
| +# { |
| +# 'target_name': 'base_jni_headers', |
| +# 'type': 'none', |
| +# 'variables': { |
| +# 'java_sources': [ |
| +# 'android/java/org/chromium/base/BuildInfo.java', |
| +# 'android/java/org/chromium/base/PathUtils.java', |
| +# 'android/java/org/chromium/base/SystemMessageHandler.java', |
| +# ], |
| +# 'jni_headers': [ |
| +# '<(SHARED_INTERMEDIATE_DIR)/base/jni/build_info_jni.h', |
| +# '<(SHARED_INTERMEDIATE_DIR)/base/jni/path_utils_jni.h', |
| +# '<(SHARED_INTERMEDIATE_DIR)/base/jni/system_message_handler_jni.h', |
| +# ], |
| +# }, |
| +# 'includes': [ '../build/jni_generator.gypi' ], |
| +# } |
| +# |
| +# The ordering of the java_sources must match the ordering of jni_headers. The |
| +# result is that for each Java file listed in java_sources, the corresponding |
| +# entry in jni_headers contains the JNI bindings produced from running the |
| +# jni_generator on the input file. |
| +# |
| +# See base/android/jni_generator/jni_generator.py for more info about the |
| +# format of generating JNI bindings. |
| + |
| +{ |
| + 'actions': [ |
| + { |
| + 'action_name': 'generate_jni_headers', |
| + 'type': 'none', |
| + 'inputs': [ |
| + '<(DEPTH)/base/android/jni_generator/jni_generator.py', |
|
Ryan Sleevi
2012/04/14 03:10:50
I wonder if this should be under
build/android
ra
Yaron
2012/04/16 20:44:56
I'm kinda ambivalent about whether it's in base or
Ryan Sleevi
2012/04/16 21:03:00
I'm fine with either approach if you do update.
|
| + '<@(java_sources)', |
| + ], |
| + 'outputs': [ |
| + '<@(jni_headers)', |
|
Ryan Sleevi
2012/04/14 03:10:50
Are the JNI header names deterministic? Just wonde
Yaron
2012/04/16 20:44:56
Downstream I think there are a few exceptions but
Ryan Sleevi
2012/04/16 21:03:00
Ah, right, using <(RULE_INPUT_ROOT) with BuildInfo
Yaron
2012/04/16 21:15:32
I'm wondering if this merits an exception in the s
Yaron
2012/04/16 21:21:23
Oh and as for the pymod_do_main part of your comme
Ryan Sleevi
2012/04/16 21:25:05
Mark and/or chromium-dev.
So far our rules have l
Ryan Sleevi
2012/04/16 21:25:05
Yes. However, with the use of wildcard expansion f
|
| + ], |
| + 'action': [ |
| + 'python', |
| + '<(DEPTH)/base/android/jni_generator/jni_generator.py', |
| + '-o', |
| + '<@(_inputs)', |
| + '<@(_outputs)', |
| + ], |
| + }, |
| + ], |
| +} |