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

Unified Diff: net/net.gyp

Issue 223143006: Make necessary changes for chromecast build as chromecast has it own implementation of NetworkChang… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix a check failure when we don't yet have a NetworkChangeNotifierFactory for chromecast build Created 6 years, 8 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: net/net.gyp
diff --git a/net/net.gyp b/net/net.gyp
index e1753aa4697944ea8d06df7cda35d25c274f6d45..ecfcb8f5c43bc51fa6d94770f86e2f59d661c689 100644
--- a/net/net.gyp
+++ b/net/net.gyp
@@ -1464,7 +1464,7 @@
'../build/linux/system.gyp:gio',
],
}],
- [ 'desktop_linux == 1 or chromeos == 1', {
+ [ 'desktop_linux == 1 or chromeos == 1 or chromecast_build==1', {
'conditions': [
['use_openssl == 0', {
# use NSS
@@ -1472,7 +1472,7 @@
'../build/linux/system.gyp:ssl',
],
}],
- ['os_bsd==1', {
+ ['os_bsd==1 or chromecast_build==1', {
'sources!': [
'base/network_change_notifier_linux.cc',
'base/network_change_notifier_netlink_linux.cc',

Powered by Google App Engine
This is Rietveld 408576698