| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 component("wifi") { | 5 component("wifi") { |
| 6 sources = [ | 6 sources = [ |
| 7 "network_properties.cc", | 7 "network_properties.cc", |
| 8 "network_properties.h", | 8 "network_properties.h", |
| 9 "wifi_export.h", | 9 "wifi_export.h", |
| 10 "wifi_service.cc", | 10 "wifi_service.cc", |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 } | 30 } |
| 31 | 31 |
| 32 if (is_mac) { | 32 if (is_mac) { |
| 33 libs = [ | 33 libs = [ |
| 34 "CoreWLAN.framework", | 34 "CoreWLAN.framework", |
| 35 "SystemConfiguration.framework", | 35 "SystemConfiguration.framework", |
| 36 ] | 36 ] |
| 37 } | 37 } |
| 38 } | 38 } |
| 39 | 39 |
| 40 source_set("wifi_test_support") { | 40 source_set("test_support") { |
| 41 sources = [ | 41 sources = [ |
| 42 "fake_wifi_service.cc", | 42 "fake_wifi_service.cc", |
| 43 "fake_wifi_service.h", | 43 "fake_wifi_service.h", |
| 44 ] | 44 ] |
| 45 | 45 |
| 46 deps = [ | 46 deps = [ |
| 47 ":wifi", | 47 ":wifi", |
| 48 "//base", | 48 "//base", |
| 49 "//components/onc", | 49 "//components/onc", |
| 50 ] | 50 ] |
| 51 } | 51 } |
| 52 | 52 |
| 53 executable("wifi_test") { | 53 executable("wifi_test") { |
| 54 sources = [ | 54 sources = [ |
| 55 "wifi_test.cc", | 55 "wifi_test.cc", |
| 56 ] | 56 ] |
| 57 | 57 |
| 58 deps = [ | 58 deps = [ |
| 59 ":wifi", | 59 ":wifi", |
| 60 "//base", | 60 "//base", |
| 61 "//components/onc", | 61 "//components/onc", |
| 62 ] | 62 ] |
| 63 } | 63 } |
| OLD | NEW |