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

Unified Diff: chrome/browser/media/router/discovery/BUILD.gn

Issue 2868213004: Add Windows and Mac network list implementation (Closed)
Patch Set: Rebase Created 3 years, 6 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/browser/media/router/discovery/discovery_network_list_posix.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/media/router/discovery/BUILD.gn
diff --git a/chrome/browser/media/router/discovery/BUILD.gn b/chrome/browser/media/router/discovery/BUILD.gn
index 322ffe9af33f35e787a39a952ef8b4777c51c7bc..89e80eb06b26accb9ec0b1c8dd8f7903c95bd890 100644
--- a/chrome/browser/media/router/discovery/BUILD.gn
+++ b/chrome/browser/media/router/discovery/BUILD.gn
@@ -42,9 +42,19 @@ static_library("discovery") {
"discovery_network_list_posix.cc",
"discovery_network_list_wifi.h",
"discovery_network_list_wifi_linux.cc",
+ "discovery_network_list_wifi_mac.mm",
"discovery_network_list_win.cc",
"discovery_network_monitor.cc",
"discovery_network_monitor.h",
]
}
+
+ if (is_win) {
+ libs = [ "wlanapi.lib" ]
+ ldflags = [ "/DELAYLOAD:wlanapi.dll" ]
+ }
+
+ if (is_mac) {
+ libs = [ "CoreWLAN.framework" ]
+ }
}
« no previous file with comments | « no previous file | chrome/browser/media/router/discovery/discovery_network_list_posix.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698