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

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

Issue 709683004: components: add wifi_sync component (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@submit-1-security-class
Patch Set: test integration with chromeos network settings backend Created 6 years 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
(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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698