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

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

Issue 1265213003: Componentize profile_sync_auth_provider (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
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 static_library("sync_driver") { 5 static_library("sync_driver") {
6 sources = [ 6 sources = [
7 "backend_data_type_configurer.cc", 7 "backend_data_type_configurer.cc",
8 "backend_data_type_configurer.h", 8 "backend_data_type_configurer.h",
9 "change_processor.cc", 9 "change_processor.cc",
10 "change_processor.h", 10 "change_processor.h",
(...skipping 29 matching lines...) Expand all
40 "non_blocking_data_type_controller.cc", 40 "non_blocking_data_type_controller.cc",
41 "non_blocking_data_type_controller.h", 41 "non_blocking_data_type_controller.h",
42 "non_blocking_data_type_manager.cc", 42 "non_blocking_data_type_manager.cc",
43 "non_blocking_data_type_manager.h", 43 "non_blocking_data_type_manager.h",
44 "non_ui_data_type_controller.cc", 44 "non_ui_data_type_controller.cc",
45 "non_ui_data_type_controller.h", 45 "non_ui_data_type_controller.h",
46 "open_tabs_ui_delegate.cc", 46 "open_tabs_ui_delegate.cc",
47 "open_tabs_ui_delegate.h", 47 "open_tabs_ui_delegate.h",
48 "pref_names.cc", 48 "pref_names.cc",
49 "pref_names.h", 49 "pref_names.h",
50 "profile_sync_auth_provider.cc",
51 "profile_sync_auth_provider.h",
50 "proxy_data_type_controller.cc", 52 "proxy_data_type_controller.cc",
51 "proxy_data_type_controller.h", 53 "proxy_data_type_controller.h",
52 "shared_change_processor.cc", 54 "shared_change_processor.cc",
53 "shared_change_processor.h", 55 "shared_change_processor.h",
54 "shared_change_processor_ref.cc", 56 "shared_change_processor_ref.cc",
55 "shared_change_processor_ref.h", 57 "shared_change_processor_ref.h",
56 "sync_api_component_factory.h", 58 "sync_api_component_factory.h",
57 "sync_frontend.cc", 59 "sync_frontend.cc",
58 "sync_frontend.h", 60 "sync_frontend.h",
59 "sync_prefs.cc", 61 "sync_prefs.cc",
60 "sync_prefs.h", 62 "sync_prefs.h",
61 "sync_service.h", 63 "sync_service.h",
62 "sync_service_observer.cc", 64 "sync_service_observer.cc",
63 "sync_service_observer.h", 65 "sync_service_observer.h",
64 "system_encryptor.cc", 66 "system_encryptor.cc",
65 "system_encryptor.h", 67 "system_encryptor.h",
66 "ui_data_type_controller.cc", 68 "ui_data_type_controller.cc",
67 "ui_data_type_controller.h", 69 "ui_data_type_controller.h",
68 "user_selectable_sync_type.h", 70 "user_selectable_sync_type.h",
69 ] 71 ]
70 72
71 deps = [ 73 deps = [
72 "//base", 74 "//base",
73 "//components/os_crypt", 75 "//components/os_crypt",
droger 2015/08/04 07:58:43 Can you update the deps here? You need to add //co
Abhishek 2015/08/04 08:46:52 Done.
74 "//sync", 76 "//sync",
75 ] 77 ]
76 } 78 }
77 79
78 static_library("test_support") { 80 static_library("test_support") {
79 testonly = true 81 testonly = true
80 sources = [ 82 sources = [
81 "change_processor_mock.cc", 83 "change_processor_mock.cc",
82 "change_processor_mock.h", 84 "change_processor_mock.h",
83 "data_type_controller_mock.cc", 85 "data_type_controller_mock.cc",
(...skipping 17 matching lines...) Expand all
101 deps = [ 103 deps = [
102 ":sync_driver", 104 ":sync_driver",
103 "//base", 105 "//base",
104 "//components/sessions", 106 "//components/sessions",
105 "//sync", 107 "//sync",
106 "//sync:test_support_sync_internal_api", 108 "//sync:test_support_sync_internal_api",
107 "//testing/gmock", 109 "//testing/gmock",
108 "//testing/gtest", 110 "//testing/gtest",
109 ] 111 ]
110 } 112 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698