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

Unified Diff: build/common.gypi

Issue 14994003: Remove round trip from data reduction proxy authentication (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added data reduction proxy initialization logic Created 7 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
Index: build/common.gypi
diff --git a/build/common.gypi b/build/common.gypi
index 0334416e0d5871aa6b1b1ccf72aea084d7594994..8ce9fa1e4a7f0eff56153d35b498d80e64fdc091 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -408,6 +408,7 @@
'spdy_proxy_auth_origin%' : '',
'spdy_proxy_auth_property%' : '',
+ 'spdy_proxy_auth_value%' : '',
'conditions': [
# A flag for POSIX platforms
@@ -804,6 +805,7 @@
'enable_managed_users%': '<(enable_managed_users)',
'spdy_proxy_auth_origin%': '<(spdy_proxy_auth_origin)',
'spdy_proxy_auth_property%': '<(spdy_proxy_auth_property)',
+ 'spdy_proxy_auth_value%': '<(spdy_proxy_auth_value)',
# Use system mesa instead of bundled one.
'use_system_mesa%': 0,
@@ -2191,6 +2193,9 @@
['spdy_proxy_auth_property != ""', {
'defines': ['SPDY_PROXY_AUTH_PROPERTY="<(spdy_proxy_auth_property)"'],
}],
+ ['spdy_proxy_auth_value != ""', {
+ 'defines': ['SPDY_PROXY_AUTH_VALUE="<(spdy_proxy_auth_value)"'],
+ }],
['enable_mdns==1', {
'defines': ['ENABLE_MDNS=1'],
}]

Powered by Google App Engine
This is Rietveld 408576698