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

Side by Side Diff: components/browser_sync/browser/BUILD.gn

Issue 1501123003: Componentize ProfileSyncServiceMock (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@565305_InitParam
Patch Set: Just rebased Created 5 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
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 import("//build/config/features.gni") 5 import("//build/config/features.gni")
6 6
7 source_set("browser") { 7 source_set("browser") {
8 sources = [ 8 sources = [
9 "profile_sync_components_factory_impl.cc", 9 "profile_sync_components_factory_impl.cc",
10 "profile_sync_components_factory_impl.h", 10 "profile_sync_components_factory_impl.h",
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 "//components/syncable_prefs:test_support", 69 "//components/syncable_prefs:test_support",
70 "//components/version_info", 70 "//components/version_info",
71 "//components/version_info:generate_version_info", 71 "//components/version_info:generate_version_info",
72 "//google_apis", 72 "//google_apis",
73 "//net", 73 "//net",
74 "//testing/gmock", 74 "//testing/gmock",
75 "//testing/gtest", 75 "//testing/gtest",
76 "//ui/base", 76 "//ui/base",
77 ] 77 ]
78 } 78 }
79
80 source_set("test_support") {
81 testonly = true
82 sources = [
83 "profile_sync_service_mock.cc",
84 "profile_sync_service_mock.h",
85 ]
86
87 deps = [
88 ":browser",
89 "//base",
90 "//components/sync_driver:test_support",
91 "//google_apis",
92 "//testing/gmock",
93 ]
94 }
OLDNEW
« no previous file with comments | « components/browser_sync.gypi ('k') | components/browser_sync/browser/profile_sync_service_mock.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698