| 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_credential.cc", | 9 "wifi_credential.cc", |
| 10 "wifi_credential.h", | 10 "wifi_credential.h", |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 source_set("unit_tests") { | 27 source_set("unit_tests") { |
| 28 testonly = true | 28 testonly = true |
| 29 | 29 |
| 30 deps = [ | 30 deps = [ |
| 31 ":wifi_sync", | 31 ":wifi_sync", |
| 32 "//sync", | 32 "//sync", |
| 33 "//testing/gtest", | 33 "//testing/gtest", |
| 34 ] | 34 ] |
| 35 | 35 |
| 36 sources = [ | 36 sources = [ |
| 37 "wifi_credential_unittest.cc", |
| 37 "wifi_security_class_chromeos_unittest.cc", | 38 "wifi_security_class_chromeos_unittest.cc", |
| 38 "wifi_security_class_unittest.cc", | 39 "wifi_security_class_unittest.cc", |
| 39 ] | 40 ] |
| 40 } | 41 } |
| OLD | NEW |