Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(749)

Side by Side Diff: components/wifi_sync/BUILD.gn

Issue 836303004: wifi_sync: implement ACTION_ADD in WifiCredentialSyncableService (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@submit-4.2-wifi-config-delegate
Patch Set: rebase Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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",
(...skipping 15 matching lines...) Expand all
26 "//sync", 26 "//sync",
27 ] 27 ]
28 } 28 }
29 29
30 source_set("unit_tests") { 30 source_set("unit_tests") {
31 testonly = true 31 testonly = true
32 32
33 deps = [ 33 deps = [
34 ":wifi_sync", 34 ":wifi_sync",
35 "//sync", 35 "//sync",
36 "//testing/gmock",
36 "//testing/gtest", 37 "//testing/gtest",
37 ] 38 ]
38 39
39 sources = [ 40 sources = [
40 "fake_wifi_config_delegate.cc", 41 "fake_wifi_config_delegate.cc",
mukesh agrawal 2015/01/20 21:13:15 Removed due to rolling the Fake into the WCSS unit
41 "fake_wifi_config_delegate.h", 42 "fake_wifi_config_delegate.h",
42 "wifi_config_delegate_chromeos_unittest.cc", 43 "wifi_config_delegate_chromeos_unittest.cc",
44 "wifi_credential_syncable_service_unittest.cc",
43 "wifi_credential_unittest.cc", 45 "wifi_credential_unittest.cc",
44 "wifi_security_class_chromeos_unittest.cc", 46 "wifi_security_class_chromeos_unittest.cc",
45 "wifi_security_class_unittest.cc", 47 "wifi_security_class_unittest.cc",
46 ] 48 ]
47 } 49 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698