diff options
author | mef@chromium.org <mef@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-11-22 20:25:54 +0000 |
---|---|---|
committer | mef@chromium.org <mef@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-11-22 20:25:54 +0000 |
commit | 4f9264c78eb9d30a938588528362f0a9fdfd6ce4 (patch) | |
tree | fc98a988e5dbc23be37e15b0cc15dafded32c72b /components/wifi.gypi | |
parent | 0ca10241cd75d258c1679d50e4e136d8755a2fba (diff) | |
download | chromium_src-4f9264c78eb9d30a938588528362f0a9fdfd6ce4.zip chromium_src-4f9264c78eb9d30a938588528362f0a9fdfd6ce4.tar.gz chromium_src-4f9264c78eb9d30a938588528362f0a9fdfd6ce4.tar.bz2 |
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
Diffstat (limited to 'components/wifi.gypi')
-rw-r--r-- | components/wifi.gypi | 25 |
1 files changed, 25 insertions, 0 deletions
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', ], }, ], |