summaryrefslogtreecommitdiffstats
path: root/ipc
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 /ipc
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 'ipc')
-rw-r--r--ipc/ipc.gyp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipc/ipc.gyp b/ipc/ipc.gyp
index f8bacdd..7d61a89 100644
--- a/ipc/ipc.gyp
+++ b/ipc/ipc.gyp
@@ -107,7 +107,7 @@
],
'variables': {
'test_suite_name': 'ipc_tests',
- 'input_shlib_path': '<(PRODUCT_DIR)/lib.target/<(SHARED_LIB_PREFIX)ipc_tests<(SHARED_LIB_SUFFIX)',
+ 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)ipc_tests<(SHARED_LIB_SUFFIX)',
'input_jars_paths': ['<(PRODUCT_DIR)/lib.java/chromium_base.jar',],
},
'includes': [ '../build/apk_test.gypi' ],