summaryrefslogtreecommitdiffstats
path: root/build/java.gypi
diff options
context:
space:
mode:
authoryfriedman@chromium.org <yfriedman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-05-29 23:19:13 +0000
committeryfriedman@chromium.org <yfriedman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-05-29 23:19:13 +0000
commitef7ed7a0015169e08e83e7cb283026c24673354a (patch)
tree2f138dbc5a7bae6349b833d675a87278db2267ac /build/java.gypi
parent955d5dc6362d7276d5773e68d1999a01d3ea281b (diff)
downloadchromium_src-ef7ed7a0015169e08e83e7cb283026c24673354a.zip
chromium_src-ef7ed7a0015169e08e83e7cb283026c24673354a.tar.gz
chromium_src-ef7ed7a0015169e08e83e7cb283026c24673354a.tar.bz2
Fix ninja build for android.
The primary issues is specifying the right path to PRODUCT_DIR (i.e. out/Release). The gyp generator for make specifies the absolute path but for ninja would use a relative path. Since the gyp targets don't line up with where the ant build files are located this causes failures such as base's java being generated in base/android/out/Release/... See: https://groups.google.com/forum/#!msg/gyp-developer/K2T_9obUya0/qq78_Ut-E-AJ for details. A couple of other minor fixes: - content java files are placed in out/Release/java/content to be consisent with other packages. - shared-libraries are now referenced by correct variables for apk-based tests - removed unused media/base/android/java/java.gyp (target is in media/media.gyp) TBR=mark@chromium.org,ben@chromium.org,rsleevi@chromium.org Review URL: https://chromiumcodereview.appspot.com/10386188 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@139418 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build/java.gypi')
-rw-r--r--build/java.gypi2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/java.gypi b/build/java.gypi
index c05981d..67ebcb0 100644
--- a/build/java.gypi
+++ b/build/java.gypi
@@ -44,7 +44,7 @@
],
'action': [
'ant',
- '-DPRODUCT_DIR=<(PRODUCT_DIR)',
+ '-DPRODUCT_DIR=<(ant_build_out)',
'-DPACKAGE_NAME=<(package_name)',
'-buildfile',
'<(java_in_dir)/<(package_name).xml',