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

Side by Side Diff: components/password_manager/core/browser/BUILD.gn

Issue 1686063004: Sending generated vote on password generation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix BUILD.gn Created 4 years, 10 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("//third_party/protobuf/proto_library.gni") 5 import("//third_party/protobuf/proto_library.gni")
6 6
7 if (is_android) { 7 if (is_android) {
8 import("//build/config/android/config.gni") 8 import("//build/config/android/config.gni")
9 } 9 }
10 10
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 109
110 public_deps = [ 110 public_deps = [
111 "//base", 111 "//base",
112 "//sync", 112 "//sync",
113 ] 113 ]
114 deps = [ 114 deps = [
115 ":proto", 115 ":proto",
116 "//base", 116 "//base",
117 "//base:i18n", 117 "//base:i18n",
118 "//components/autofill/core/browser", 118 "//components/autofill/core/browser",
119 "//components/autofill/core/browser/proto",
119 "//components/autofill/core/common", 120 "//components/autofill/core/common",
120 "//components/keyed_service/core", 121 "//components/keyed_service/core",
121 "//components/os_crypt", 122 "//components/os_crypt",
122 "//components/password_manager/core/common", 123 "//components/password_manager/core/common",
123 "//components/pref_registry", 124 "//components/pref_registry",
124 "//components/prefs", 125 "//components/prefs",
125 "//components/strings", 126 "//components/strings",
126 "//components/sync_driver", 127 "//components/sync_driver",
127 "//components/url_formatter", 128 "//components/url_formatter",
128 "//components/variations", 129 "//components/variations",
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
219 "password_store_unittest.cc", 220 "password_store_unittest.cc",
220 "password_syncable_service_unittest.cc", 221 "password_syncable_service_unittest.cc",
221 "password_ui_utils_unittest.cc", 222 "password_ui_utils_unittest.cc",
222 "psl_matching_helper_unittest.cc", 223 "psl_matching_helper_unittest.cc",
223 "statistics_table_unittest.cc", 224 "statistics_table_unittest.cc",
224 ] 225 ]
225 deps = [ 226 deps = [
226 ":test_support", 227 ":test_support",
227 "//base/test:test_support", 228 "//base/test:test_support",
228 "//components/autofill/core/browser:test_support", 229 "//components/autofill/core/browser:test_support",
230 "//components/autofill/core/browser/proto",
229 "//components/autofill/core/common", 231 "//components/autofill/core/common",
230 "//components/os_crypt", 232 "//components/os_crypt",
231 "//components/password_manager/core/browser:proto", 233 "//components/password_manager/core/browser:proto",
232 "//components/password_manager/core/common", 234 "//components/password_manager/core/common",
233 "//components/prefs:test_support", 235 "//components/prefs:test_support",
234 "//components/strings", 236 "//components/strings",
235 "//components/sync_driver:test_support", 237 "//components/sync_driver:test_support",
236 "//components/variations", 238 "//components/variations",
237 "//net:test_support", 239 "//net:test_support",
238 "//sql:test_support", 240 "//sql:test_support",
239 "//sync:test_support_sync_api", 241 "//sync:test_support_sync_api",
240 "//testing/gmock", 242 "//testing/gmock",
241 "//testing/gtest", 243 "//testing/gtest",
242 "//ui/base", 244 "//ui/base",
243 "//url", 245 "//url",
244 ] 246 ]
245 } 247 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698