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

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

Issue 2289143003: [Sync] Convert DTCs to be not RefCounted and NonThreadSafe. (Closed)
Patch Set: Rebase. Created 4 years, 3 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 import("//build/config/features.gni") 5 import("//build/config/features.gni")
6 import("//tools/json_to_struct/json_to_struct.gni") 6 import("//tools/json_to_struct/json_to_struct.gni")
7 7
8 static_library("search_engines") { 8 static_library("search_engines") {
9 sources = [ 9 sources = [
10 "default_search_manager.cc", 10 "default_search_manager.cc",
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 "search_host_to_urls_map_unittest.cc", 119 "search_host_to_urls_map_unittest.cc",
120 "template_url_prepopulate_data_unittest.cc", 120 "template_url_prepopulate_data_unittest.cc",
121 "template_url_service_util_unittest.cc", 121 "template_url_service_util_unittest.cc",
122 "template_url_unittest.cc", 122 "template_url_unittest.cc",
123 ] 123 ]
124 124
125 deps = [ 125 deps = [
126 ":prepopulated_engines", 126 ":prepopulated_engines",
127 ":test_support", 127 ":test_support",
128 "//base", 128 "//base",
129 "//base/test:test_support",
129 "//components/google/core/browser", 130 "//components/google/core/browser",
130 "//components/pref_registry:test_support", 131 "//components/pref_registry:test_support",
131 "//components/prefs", 132 "//components/prefs",
132 "//components/sync:test_support_sync_api", 133 "//components/sync:test_support_sync_api",
133 "//components/sync:test_support_sync_driver", 134 "//components/sync:test_support_sync_driver",
134 "//components/syncable_prefs:test_support", 135 "//components/syncable_prefs:test_support",
135 "//components/webdata/common", 136 "//components/webdata/common",
136 "//sql", 137 "//sql",
137 "//testing/gmock", 138 "//testing/gmock",
138 "//testing/gtest", 139 "//testing/gtest",
(...skipping 10 matching lines...) Expand all
149 } 150 }
150 } 151 }
151 152
152 json_to_struct("prepopulated_engines") { 153 json_to_struct("prepopulated_engines") {
153 visibility = [ ":*" ] 154 visibility = [ ":*" ]
154 155
155 source = "prepopulated_engines.json" 156 source = "prepopulated_engines.json"
156 schema_file = "prepopulated_engines_schema.json" 157 schema_file = "prepopulated_engines_schema.json"
157 namespace = "TemplateURLPrepopulateData" 158 namespace = "TemplateURLPrepopulateData"
158 } 159 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698