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

Unified Diff: build/common.gypi

Issue 12316144: Merge 183832 (Closed) Base URL: svn://svn.chromium.org/chrome/branches/1410/src/
Patch Set: Created 7 years, 10 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 | chrome/app/generated_resources.grd » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/common.gypi
===================================================================
--- build/common.gypi (revision 184791)
+++ build/common.gypi (working copy)
@@ -411,6 +411,9 @@
# Managed users are enabled by default.
'enable_managed_users%': 1,
+ 'spdy_proxy_auth_origin%' : '',
+ 'spdy_proxy_auth_property%' : '',
+
'conditions': [
# TODO(epoger): Figure out how to set use_skia=1 for Mac outside of
# the 'conditions' clause. Initial attempts resulted in chromium and
@@ -748,6 +751,8 @@
'google_default_client_id%': '<(google_default_client_id)',
'google_default_client_secret%': '<(google_default_client_secret)',
'enable_managed_users%': '<(enable_managed_users)',
+ 'spdy_proxy_auth_origin%': '<(spdy_proxy_auth_origin)',
+ 'spdy_proxy_auth_property%': '<(spdy_proxy_auth_property)',
# Use system mesa instead of bundled one.
'use_system_mesa%': 0,
@@ -2003,6 +2008,12 @@
['enable_managed_users==1', {
'defines': ['ENABLE_MANAGED_USERS=1'],
}],
+ ['spdy_proxy_auth_origin != ""', {
+ 'defines': ['SPDY_PROXY_AUTH_ORIGIN="<(spdy_proxy_auth_origin)"'],
+ }],
+ ['spdy_proxy_auth_property != ""', {
+ 'defines': ['SPDY_PROXY_AUTH_PROPERTY="<(spdy_proxy_auth_property)"'],
+ }],
], # conditions for 'target_defaults'
'target_conditions': [
['enable_wexit_time_destructors==1', {
« no previous file with comments | « no previous file | chrome/app/generated_resources.grd » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698