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

Unified Diff: base/base.gyp

Issue 9443018: Upstream Android's PathUtils implementation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased patch Created 8 years, 9 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 | « base/android/path_utils.cc ('k') | base/base.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/base.gyp
diff --git a/base/base.gyp b/base/base.gyp
index 0b200278da6de2121b11f55f03453a05b8521bd1..e3ccc3403c2be988d79a9b3a95dd383e1419d54d 100644
--- a/base/base.gyp
+++ b/base/base.gyp
@@ -115,6 +115,29 @@
],
},
{
+ 'target_name': 'base_jni_headers',
+ 'type': 'none',
+ 'actions': [
+ {
+ 'action_name': 'generate_jni_headers',
Nico 2012/04/03 18:51:05 This isn't done conditionally, so a `make all` cre
+ 'inputs': [
+ 'android/jni_generator/jni_generator.py',
+ 'android/java/org/chromium/base/PathUtils.java',
+ ],
+ 'outputs': [
+ '<(SHARED_INTERMEDIATE_DIR)/base/jni/path_utils_jni.h',
+ ],
+ 'action': [
+ 'python',
+ 'android/jni_generator/jni_generator.py',
+ '-o',
+ '<@(_inputs)',
Mark Mentovai 2012/03/13 20:16:21 Do you really want to pass jni_generator.py back i
Peter Beverloo 2012/03/13 20:18:50 As answered in PS3, per bulach@ this indeed is the
+ '<@(_outputs)',
+ ],
+ }
+ ],
+ },
+ {
'target_name': 'base_unittests',
'type': 'executable',
'sources': [
« no previous file with comments | « base/android/path_utils.cc ('k') | base/base.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698