OLD | NEW |
(Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 source_set("wifi_sync") { |
| 6 sources = [ |
| 7 "wifi_credential.cc", |
| 8 "wifi_credential.h", |
| 9 "wifi_credential_syncable_service.cc", |
| 10 "wifi_credential_syncable_service.h", |
| 11 "wifi_credential_syncable_service_factory.cc", |
| 12 "wifi_credential_syncable_service_factory.h", |
| 13 "wifi_security_class.h", |
| 14 ] |
| 15 |
| 16 deps = [ |
| 17 "//base", |
| 18 "//sync", |
| 19 ] |
| 20 |
| 21 if (is_chromeos) { |
| 22 sources += [ |
| 23 "network_state_helper_chromeos.cc", |
| 24 "network_state_helper_chromeos.h", |
| 25 "wifi_security_class_chromeos.cc", |
| 26 ] |
| 27 } |
| 28 } |
| 29 |
| 30 source_set("unit_tests") { |
| 31 testonly = true |
| 32 |
| 33 deps = [ |
| 34 ":wifi_sync", |
| 35 "//testing/gtest", |
| 36 ] |
| 37 |
| 38 sources = [ |
| 39 ] |
| 40 |
| 41 if (is_chromeos) { |
| 42 sources += [ |
| 43 "wifi_security_class_chromeos_unittest.cc", |
| 44 ] |
| 45 } |
| 46 } |
OLD | NEW |