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

Unified Diff: rlz/rlz.gyp

Issue 11226060: RLZ: remove hard-coded Win || Mac conditions. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge Created 8 years, 2 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 | « rlz/lib/rlz_value_store.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: rlz/rlz.gyp
diff --git a/rlz/rlz.gyp b/rlz/rlz.gyp
index 528413411c24246efc9da77b5c6740e0a52f8591..123eaa0a2396a6ea3325c13b41c81aa3fbd626a7 100644
--- a/rlz/rlz.gyp
+++ b/rlz/rlz.gyp
@@ -6,12 +6,11 @@
'variables': {
'chromium_code': 1,
'variables': {
- # Set force_rlz_use_chrome_net to 1 to use chrome's network stack instead
- # of win inet.
- 'force_rlz_use_chrome_net%': 0,
+ # Force rlz to use chrome's networking stack.
+ 'force_rlz_use_chrome_net%': 1,
},
'conditions': [
- ['force_rlz_use_chrome_net or OS=="mac"', {
+ ['force_rlz_use_chrome_net or OS!="win"', {
'rlz_use_chrome_net%': 1,
}, {
'rlz_use_chrome_net%': 0,
« no previous file with comments | « rlz/lib/rlz_value_store.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698