| 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 source_set("wifi_sync") { | 5 source_set("wifi_sync") { |
| 6 sources = [ | 6 sources = [ |
| 7 "network_state_helper_chromeos.cc", | 7 "network_state_helper_chromeos.cc", |
| 8 "network_state_helper_chromeos.h", | 8 "network_state_helper_chromeos.h", |
| 9 "wifi_config_delegate.h", |
| 10 "wifi_config_delegate_chromeos.cc", |
| 11 "wifi_config_delegate_chromeos.h", |
| 12 "wifi_config_delegate_factory_chromeos.cc", |
| 13 "wifi_config_delegate_factory_chromeos.h", |
| 9 "wifi_credential.cc", | 14 "wifi_credential.cc", |
| 10 "wifi_credential.h", | 15 "wifi_credential.h", |
| 11 "wifi_credential_syncable_service.cc", | 16 "wifi_credential_syncable_service.cc", |
| 12 "wifi_credential_syncable_service.h", | 17 "wifi_credential_syncable_service.h", |
| 13 "wifi_credential_syncable_service_factory.cc", | 18 "wifi_credential_syncable_service_factory.cc", |
| 14 "wifi_credential_syncable_service_factory.h", | 19 "wifi_credential_syncable_service_factory.h", |
| 15 "wifi_security_class.cc", | 20 "wifi_security_class.cc", |
| 16 "wifi_security_class.h", | 21 "wifi_security_class.h", |
| 17 "wifi_security_class_chromeos.cc", | 22 "wifi_security_class_chromeos.cc", |
| 18 ] | 23 ] |
| 19 | 24 |
| 20 deps = [ | 25 deps = [ |
| 21 "//base", | 26 "//base", |
| 22 "//components/onc", | 27 "//components/onc", |
| 23 "//sync", | 28 "//sync", |
| 24 ] | 29 ] |
| 25 } | 30 } |
| 26 | 31 |
| 27 source_set("unit_tests") { | 32 source_set("unit_tests") { |
| 28 testonly = true | 33 testonly = true |
| 29 | 34 |
| 30 deps = [ | 35 deps = [ |
| 31 ":wifi_sync", | 36 ":wifi_sync", |
| 32 "//sync", | 37 "//sync", |
| 33 "//testing/gtest", | 38 "//testing/gtest", |
| 34 ] | 39 ] |
| 35 | 40 |
| 36 sources = [ | 41 sources = [ |
| 42 "fake_wifi_config_delegate.cc", |
| 43 "fake_wifi_config_delegate.h", |
| 44 "wifi_config_delegate_chromeos_unittest.cc", |
| 37 "wifi_security_class_chromeos_unittest.cc", | 45 "wifi_security_class_chromeos_unittest.cc", |
| 38 "wifi_security_class_unittest.cc", | 46 "wifi_security_class_unittest.cc", |
| 39 ] | 47 ] |
| 40 } | 48 } |
| OLD | NEW |