From 4f9264c78eb9d30a938588528362f0a9fdfd6ce4 Mon Sep 17 00:00:00 2001 From: "mef@chromium.org" Date: Fri, 22 Nov 2013 20:25:54 +0000 Subject: Windows-specific implementation of Networking Private API. Previously reviewed as https://codereview.chromium.org/27722003, but moves WiFiService Windows implementation to components/wifi. Based on infrastructure in https://codereview.chromium.org/54323003/ BUG=267667 Review URL: https://codereview.chromium.org/68503019 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@236816 0039d316-1c4b-4281-b951-d872f2087c98 --- components/wifi.gypi | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) (limited to 'components/wifi.gypi') diff --git a/components/wifi.gypi b/components/wifi.gypi index f65bdaa..9685e11 100644 --- a/components/wifi.gypi +++ b/components/wifi.gypi @@ -22,6 +22,31 @@ 'wifi/wifi_service.cc', 'wifi/wifi_service.h', 'wifi/fake_wifi_service.cc', + 'wifi/wifi_service_win.cc', + ], + 'conditions': [ + ['OS == "win"', { + 'link_settings': { + 'libraries': [ + '-liphlpapi.lib', + ], + }, + }], + ], + }, + { + 'target_name': 'wifi_test', + 'type': 'executable', + 'dependencies': [ + 'wifi_component', + '../base/base.gyp:base', + '../components/components.gyp:onc_component', + ], + 'include_dirs': [ + '..', + ], + 'sources': [ + 'wifi/wifi_test.cc', ], }, ], -- cgit v1.1