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

Unified Diff: build/java_apk.gypi

Issue 376193003: Fix race condition in gyp/ninja builds. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase to ToT. Created 6 years, 5 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/java_apk.gypi
diff --git a/build/java_apk.gypi b/build/java_apk.gypi
index 96647268fc080b40a8094721cdaa02f2fc427a14..18fbc0fb8746f39b9608678a21b855e42f4ab7e1 100644
--- a/build/java_apk.gypi
+++ b/build/java_apk.gypi
@@ -103,7 +103,7 @@
'obfuscate_stamp': '<(intermediate_dir)/obfuscate.stamp',
'pack_arm_relocations_stamp': '<(intermediate_dir)/pack_arm_relocations.stamp',
'strip_stamp': '<(intermediate_dir)/strip.stamp',
- 'stripped_libraries_dir': '<(SHARED_INTERMEDIATE_DIR)/stripped_libraries',
+ 'stripped_libraries_dir': '<(intermediate_dir)/stripped_libraries',
'strip_additional_stamp': '<(intermediate_dir)/strip_additional.stamp',
'classes_dir': '<(intermediate_dir)/classes/2',
'javac_includes': [],
@@ -374,9 +374,6 @@
],
'stamp': '<(pack_arm_relocations_stamp)',
},
- 'dependencies': [
- 'strip_native_libraries',
- ],
'includes': ['../build/android/pack_arm_relocations.gypi'],
},
{
@@ -452,7 +449,7 @@
'variables': {
'inputs': [
'<(ordered_libraries_file)',
- '<(strip_stamp)',
+ '<(pack_arm_relocations_stamp)',
'<(strip_additional_stamp)',
],
'input_apk_path': '<(unsigned_apk_path)',
@@ -469,7 +466,7 @@
'variables': {
'libraries_source_dir': '<(apk_package_native_libs_dir)/<(android_app_abi)',
'package_input_paths': [
- '<(strip_stamp)',
+ '<(pack_arm_relocations_stamp)',
'<(strip_additional_stamp)',
],
},
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698