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

Unified Diff: base/base.gyp

Issue 9443018: Upstream Android's PathUtils implementation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Patch Created 8 years, 10 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: base/base.gyp
diff --git a/base/base.gyp b/base/base.gyp
index d34476b0ef0cf62191d49a38962a594ff38d51dc..d3b64eb8a0a853adfc15ee72ca7aed4c5a7b2cc8 100644
--- a/base/base.gyp
+++ b/base/base.gyp
@@ -115,6 +115,29 @@
],
},
{
+ 'target_name': 'base_jni_headers',
Mark Mentovai 2012/02/23 18:43:33 If we need to do this in many locations, we may wa
+ 'type': 'none',
+ 'actions': [
+ {
+ 'action_name': 'generate_jni_headers',
+ 'inputs': [
+ 'android/jni_generator/jni_generator.py',
+ 'android/java/PathUtils.java',
+ ],
+ 'outputs': [
+ '<(SHARED_INTERMEDIATE_DIR)/base/jni/path_utils_jni.h',
+ ],
+ 'action': [
+ 'python',
+ 'android/jni_generator/jni_generator.py',
+ '-o',
Mark Mentovai 2012/02/23 18:43:33 Is this the right way to invoke jni_generator.py?
Peter Beverloo 2012/02/29 15:40:22 Yes (per a chat with bulach@). This is used to pre
+ '<@(_inputs)',
Mark Mentovai 2012/02/23 18:43:33 This will expand to all of the inputs, including j
+ '<@(_outputs)',
+ ],
+ }
+ ],
+ },
+ {
'target_name': 'base_unittests',
'type': 'executable',
'sources': [
« base/android/path_utils.cc ('K') | « base/android/path_utils.cc ('k') | base/base.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698