Chromium Code Reviews| 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 "//components/user_manager", | |
|
mukesh agrawal
2014/12/03 01:44:43
Stray dependency. Will be removed in PS8.
mukesh agrawal
2014/12/03 01:47:04
Er, make that PS9.
| |
| 36 "//testing/gtest", | |
| 37 ] | |
| 38 | |
| 39 sources = [ | |
| 40 ] | |
| 41 | |
| 42 if (is_chromeos) { | |
| 43 sources += [ | |
| 44 "wifi_security_class_chromeos_unittest.cc", | |
| 45 ] | |
| 46 } | |
| 47 } | |
| OLD | NEW |