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

Unified Diff: components/wifi.gypi

Issue 68503019: Windows-specific implementation of Networking Private API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed Win64 compilation error. Created 7 years, 1 month 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 | « chrome/common/extensions/features/simple_feature_unittest.cc ('k') | components/wifi/fake_wifi_service.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/wifi.gypi
diff --git a/components/wifi.gypi b/components/wifi.gypi
index f65bdaa5981f1f19da7c154400106d10ed066673..9685e1101b6c9a6ecc9bd8910f996cb9a9330b7e 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',
],
},
],
« no previous file with comments | « chrome/common/extensions/features/simple_feature_unittest.cc ('k') | components/wifi/fake_wifi_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698