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

Unified Diff: build/all.gyp

Issue 404353004: [Android] Only build relocation_packer_unittests on ARM and ARM64. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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/all.gyp
diff --git a/build/all.gyp b/build/all.gyp
index 849d891c95922d041a97c0d385ae7e6a4642ced6..5ced5e96a1f66413e30c69b0a1914c1ec2dc649d 100644
--- a/build/all.gyp
+++ b/build/all.gyp
@@ -54,12 +54,19 @@
'../chrome/chrome.gyp:chrome_shell_apk',
'../remoting/remoting.gyp:remoting_apk',
'../tools/telemetry/telemetry.gyp:*#host',
- '../tools/relocation_packer/relocation_packer.gyp:relocation_packer_unittests#host',
# TODO(nyquist) This should instead by a target for sync when all of
# the sync-related code for Android has been upstreamed.
# See http://crbug.com/159203
'../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidation_javalib',
],
+ 'conditions': [
+ ['target_arch == "arm" or target_arch == "arm64"', {
+ 'dependencies': [
+ # The relocation packer only works on ARM or ARM64.
+ '../tools/relocation_packer/relocation_packer.gyp:relocation_packer_unittests#host',
+ ],
+ }],
+ ],
}, {
'dependencies': [
'../content/content_shell_and_tests.gyp:*',
« 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