Chromium Code Reviews

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

Issue 1480153002: Investigate Android build problems in review 1414463004. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkgr
Patch Set: Add //url dep on GN test_support target. Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff |
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 63 matching lines...)
74 "password_manager_internals_service.cc", 74 "password_manager_internals_service.cc",
75 "password_manager_internals_service.h", 75 "password_manager_internals_service.h",
76 "password_manager_metrics_util.cc", 76 "password_manager_metrics_util.cc",
77 "password_manager_metrics_util.h", 77 "password_manager_metrics_util.h",
78 "password_manager_settings_migration_experiment.cc", 78 "password_manager_settings_migration_experiment.cc",
79 "password_manager_settings_migration_experiment.h", 79 "password_manager_settings_migration_experiment.h",
80 "password_manager_util.cc", 80 "password_manager_util.cc",
81 "password_manager_util.h", 81 "password_manager_util.h",
82 "password_store.cc", 82 "password_store.cc",
83 "password_store.h", 83 "password_store.h",
84 "password_store_change.cc",
84 "password_store_change.h", 85 "password_store_change.h",
85 "password_store_consumer.cc", 86 "password_store_consumer.cc",
86 "password_store_consumer.h", 87 "password_store_consumer.h",
87 "password_store_default.cc", 88 "password_store_default.cc",
88 "password_store_default.h", 89 "password_store_default.h",
89 "password_store_factory_util.cc", 90 "password_store_factory_util.cc",
90 "password_store_factory_util.h", 91 "password_store_factory_util.h",
91 "password_store_sync.cc", 92 "password_store_sync.cc",
92 "password_store_sync.h", 93 "password_store_sync.h",
93 "password_syncable_service.cc", 94 "password_syncable_service.cc",
(...skipping 82 matching lines...)
176 ] 177 ]
177 178
178 public_deps = [ 179 public_deps = [
179 ":browser", 180 ":browser",
180 "//testing/gmock", 181 "//testing/gmock",
181 ] 182 ]
182 deps = [ 183 deps = [
183 "//base", 184 "//base",
184 "//components/autofill/core/common", 185 "//components/autofill/core/common",
185 "//testing/gtest", 186 "//testing/gtest",
187 "//url",
186 ] 188 ]
187 } 189 }
188 190
189 source_set("unit_tests") { 191 source_set("unit_tests") {
190 testonly = true 192 testonly = true
191 sources = [ 193 sources = [
192 "affiliated_match_helper_unittest.cc", 194 "affiliated_match_helper_unittest.cc",
193 "affiliation_backend_unittest.cc", 195 "affiliation_backend_unittest.cc",
194 "affiliation_database_unittest.cc", 196 "affiliation_database_unittest.cc",
195 "affiliation_fetch_throttler_unittest.cc", 197 "affiliation_fetch_throttler_unittest.cc",
(...skipping 10 matching lines...)
206 "login_model_unittest.cc", 208 "login_model_unittest.cc",
207 "password_autofill_manager_unittest.cc", 209 "password_autofill_manager_unittest.cc",
208 "password_bubble_experiment_unittest.cc", 210 "password_bubble_experiment_unittest.cc",
209 "password_form_manager_unittest.cc", 211 "password_form_manager_unittest.cc",
210 "password_generation_manager_unittest.cc", 212 "password_generation_manager_unittest.cc",
211 "password_manager_metrics_util_unittest.cc", 213 "password_manager_metrics_util_unittest.cc",
212 "password_manager_settings_migration_experiment_unittest.cc", 214 "password_manager_settings_migration_experiment_unittest.cc",
213 "password_manager_unittest.cc", 215 "password_manager_unittest.cc",
214 "password_manager_util_unittest.cc", 216 "password_manager_util_unittest.cc",
215 "password_store_default_unittest.cc", 217 "password_store_default_unittest.cc",
218 "password_store_origin_unittest.h",
216 "password_store_unittest.cc", 219 "password_store_unittest.cc",
217 "password_syncable_service_unittest.cc", 220 "password_syncable_service_unittest.cc",
218 "password_ui_utils_unittest.cc", 221 "password_ui_utils_unittest.cc",
219 "psl_matching_helper_unittest.cc", 222 "psl_matching_helper_unittest.cc",
220 "statistics_table_unittest.cc", 223 "statistics_table_unittest.cc",
221 ] 224 ]
222 deps = [ 225 deps = [
223 ":test_support", 226 ":test_support",
224 "//base:prefs_test_support", 227 "//base:prefs_test_support",
225 "//base/test:test_support", 228 "//base/test:test_support",
226 "//components/autofill/core/browser:test_support", 229 "//components/autofill/core/browser:test_support",
227 "//components/autofill/core/common", 230 "//components/autofill/core/common",
228 "//components/os_crypt", 231 "//components/os_crypt",
229 "//components/password_manager/core/browser:proto", 232 "//components/password_manager/core/browser:proto",
230 "//components/password_manager/core/common", 233 "//components/password_manager/core/common",
231 "//components/strings", 234 "//components/strings",
232 "//components/sync_driver:test_support", 235 "//components/sync_driver:test_support",
233 "//components/variations", 236 "//components/variations",
234 "//net:test_support", 237 "//net:test_support",
235 "//sql:test_support", 238 "//sql:test_support",
236 "//sync:test_support_sync_api", 239 "//sync:test_support_sync_api",
237 "//testing/gmock", 240 "//testing/gmock",
238 "//testing/gtest", 241 "//testing/gtest",
239 "//ui/base", 242 "//ui/base",
240 "//url", 243 "//url",
241 ] 244 ]
242 } 245 }
OLDNEW

Powered by Google App Engine