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

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

Issue 2130453004: [Sync] Move //sync to //components/sync. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 years, 4 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", 9 "wifi_config_delegate.h",
10 "wifi_config_delegate_chromeos.cc", 10 "wifi_config_delegate_chromeos.cc",
11 "wifi_config_delegate_chromeos.h", 11 "wifi_config_delegate_chromeos.h",
12 "wifi_credential.cc", 12 "wifi_credential.cc",
13 "wifi_credential.h", 13 "wifi_credential.h",
14 "wifi_credential_syncable_service.cc", 14 "wifi_credential_syncable_service.cc",
15 "wifi_credential_syncable_service.h", 15 "wifi_credential_syncable_service.h",
16 "wifi_credential_syncable_service_factory.cc", 16 "wifi_credential_syncable_service_factory.cc",
17 "wifi_credential_syncable_service_factory.h", 17 "wifi_credential_syncable_service_factory.h",
18 "wifi_security_class.cc", 18 "wifi_security_class.cc",
19 "wifi_security_class.h", 19 "wifi_security_class.h",
20 "wifi_security_class_chromeos.cc", 20 "wifi_security_class_chromeos.cc",
21 ] 21 ]
22 22
23 deps = [ 23 deps = [
24 "//base", 24 "//base",
25 "//base:i18n", 25 "//base:i18n",
26 "//components/keyed_service/content", 26 "//components/keyed_service/content",
27 "//components/keyed_service/core", 27 "//components/keyed_service/core",
28 "//components/onc", 28 "//components/onc",
29 "//components/sync",
29 "//content/public/browser", 30 "//content/public/browser",
30 "//sync",
31 ] 31 ]
32 32
33 if (is_chromeos) { 33 if (is_chromeos) {
34 deps += [ "//chromeos" ] 34 deps += [ "//chromeos" ]
35 } 35 }
36 } 36 }
37 37
38 source_set("unit_tests") { 38 source_set("unit_tests") {
39 testonly = true 39 testonly = true
40 40
41 sources = [ 41 sources = [
42 "wifi_config_delegate_chromeos_unittest.cc", 42 "wifi_config_delegate_chromeos_unittest.cc",
43 "wifi_credential_syncable_service_unittest.cc", 43 "wifi_credential_syncable_service_unittest.cc",
44 "wifi_credential_unittest.cc", 44 "wifi_credential_unittest.cc",
45 "wifi_security_class_chromeos_unittest.cc", 45 "wifi_security_class_chromeos_unittest.cc",
46 "wifi_security_class_unittest.cc", 46 "wifi_security_class_unittest.cc",
47 ] 47 ]
48 48
49 deps = [ 49 deps = [
50 ":wifi_sync", 50 ":wifi_sync",
51 "//base", 51 "//base",
52 "//chromeos", 52 "//chromeos",
53 "//components/onc", 53 "//components/onc",
54 "//sync:test_support_sync_api", 54 "//components/sync:test_support_sync_api",
55 "//testing/gmock", 55 "//testing/gmock",
56 "//testing/gtest", 56 "//testing/gtest",
57 ] 57 ]
58 } 58 }
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