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