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

Unified Diff: build/java_aidl.gypi

Issue 10546079: Added sandboxed process service. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Init Created 8 years, 6 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
Index: build/java_aidl.gypi
diff --git a/build/java_aidl.gypi b/build/java_aidl.gypi
new file mode 100644
index 0000000000000000000000000000000000000000..5bd7c1db67592ec98819541a56297d3410f14de2
--- /dev/null
+++ b/build/java_aidl.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 build Java aidl files in a consistent manner.
+#
+# To use this, create a gyp target with the following form:
+# {
+# 'target_name': 'aidl_aidl-file-name',
+# 'type': 'none',
+# 'variables': {
+# 'aidl_interface_file': 'path/to/aidl/interface/file/aidl-file',
+# },
+# 'sources': {
+# 'path/to/aidl/source/file/1.aidl',
+# 'path/to/aidl/source/file/2.aidl',
+# ...
+# },
+# 'includes': ['path/to/this/gypi/file'],
+# }
+#
+#
+# Finally, the generated java file will be in the following directory:
+# <(PRODUCT_DIR)/lib.java/
+
+{
+ 'variables': {
+ 'android_sdk%':
+ '<!(if [ -z $ANDROID_BUILD_TOP ]; then \
+ /bin/echo -n $ANDROID_SDK_ROOT/platforms/android-${ANDROID_SDK_VERSION} ; \
+ else /bin/echo -n \
+ $ANDROID_SDK_ROOT ; \
+ fi)',
+ },
+ 'rules': [
+ {
+ 'rule_name': 'compile_aidl',
+ 'extension': 'aidl',
+ 'inputs': [
+ '<(android_sdk)/framework.aidl',
+ '<(aidl_interface_file)',
+ ],
+ 'outputs': [
+ '<(PRODUCT_DIR)/lib.java/<(RULE_INPUT_ROOT).java',
+ ],
+ 'action': [
+ 'aidl',
+ '-p<(android_sdk)/framework.aidl',
+ '-p<(aidl_interface_file)',
+ '-o<(PRODUCT_DIR)/lib.java/',
+ '<(RULE_INPUT_PATH)',
+ ],
+ },
+ ],
+}
« no previous file with comments | « no previous file | content/app/android/content_jni_registrar.cc » ('j') | content/app/android/content_jni_registrar.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698