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

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

Issue 836363002: wifi_sync: add WifiConfigDelegate (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@submit-4.1-network-state-helper
Patch Set: fix includes, EXPECT vs ASSERT, other nits 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
« no previous file with comments | « components/wifi_sync.gypi ('k') | components/wifi_sync/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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",
10 "wifi_config_delegate_chromeos.cc",
11 "wifi_config_delegate_chromeos.h",
9 "wifi_credential.cc", 12 "wifi_credential.cc",
10 "wifi_credential.h", 13 "wifi_credential.h",
11 "wifi_credential_syncable_service.cc", 14 "wifi_credential_syncable_service.cc",
12 "wifi_credential_syncable_service.h", 15 "wifi_credential_syncable_service.h",
13 "wifi_credential_syncable_service_factory.cc", 16 "wifi_credential_syncable_service_factory.cc",
14 "wifi_credential_syncable_service_factory.h", 17 "wifi_credential_syncable_service_factory.h",
15 "wifi_security_class.cc", 18 "wifi_security_class.cc",
16 "wifi_security_class.h", 19 "wifi_security_class.h",
17 "wifi_security_class_chromeos.cc", 20 "wifi_security_class_chromeos.cc",
18 ] 21 ]
19 22
20 deps = [ 23 deps = [
21 "//base", 24 "//base",
22 "//components/onc", 25 "//components/onc",
23 "//sync", 26 "//sync",
24 ] 27 ]
25 } 28 }
26 29
27 source_set("unit_tests") { 30 source_set("unit_tests") {
28 testonly = true 31 testonly = true
29 32
30 deps = [ 33 deps = [
31 ":wifi_sync", 34 ":wifi_sync",
32 "//sync", 35 "//sync",
33 "//testing/gtest", 36 "//testing/gtest",
34 ] 37 ]
35 38
36 sources = [ 39 sources = [
40 "wifi_config_delegate_chromeos_unittest.cc",
37 "wifi_credential_unittest.cc", 41 "wifi_credential_unittest.cc",
38 "wifi_security_class_chromeos_unittest.cc", 42 "wifi_security_class_chromeos_unittest.cc",
39 "wifi_security_class_unittest.cc", 43 "wifi_security_class_unittest.cc",
40 ] 44 ]
41 } 45 }
OLDNEW
« no previous file with comments | « components/wifi_sync.gypi ('k') | components/wifi_sync/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698