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

Unified Diff: build/jni_generator.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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « build/java.gypi ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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',
+ '<@(java_sources)',
+ ],
+ 'outputs': [
+ '<@(jni_headers)',
+ ],
+ 'action': [
+ 'python',
+ '<(DEPTH)/base/android/jni_generator/jni_generator.py',
+ '-o',
+ '<@(_inputs)',
+ '<@(_outputs)',
+ ],
+ },
+ ],
+}
« no previous file with comments | « build/java.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698