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

Unified Diff: build/common.gypi

Issue 10377059: Android content shell bringup. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix deps so builds on clean machine Created 8 years, 7 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 | « build/android/gdb_content_shell ('k') | build/java.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/common.gypi
diff --git a/build/common.gypi b/build/common.gypi
index 77f63d50ada9b434d95f5de468a7d8616b493821..912647c76194aa0fe616a3d590a684cbb810e484 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -47,6 +47,11 @@
# Enable inclusion of touch-optimized resources.
# TODO(joi): Rename to enable_touch_assets.
'enable_metro%': 0,
+
+ # Is this change part of the android upstream bringup?
+ # Allows us to *temporarily* disable certain things for
+ # staging. Only set to 1 in a GYP_DEFINES.
+ 'android_upstream_bringup%': 0,
},
# Copy conditionally-set variables out one scope.
'chromeos%': '<(chromeos)',
@@ -58,6 +63,7 @@
'enable_hidpi%': '<(enable_hidpi)',
'enable_touch_ui%': '<(enable_touch_ui)',
'enable_metro%': '<(enable_metro)',
+ 'android_upstream_bringup%': '<(android_upstream_bringup)',
# Compute the architecture that we're building on.
'conditions': [
@@ -2400,6 +2406,9 @@
'-lm',
],
'conditions': [
+ ['android_upstream_bringup==1', {
+ 'defines': ['ANDROID_UPSTREAM_BRINGUP=1',],
+ }],
['android_build_type==0', {
'ldflags': [
'--sysroot=<(android_ndk_sysroot)',
« no previous file with comments | « build/android/gdb_content_shell ('k') | build/java.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698