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

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

Issue 2734863004: wire PasswordProtectionService into PasswordReuseDetectionManager (Closed)
Patch Set: wire PasswordProtectionService into PasswordReuseDetectionManager Created 3 years, 9 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 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 "//third_party/re2", 164 "//third_party/re2",
165 "//ui/base", 165 "//ui/base",
166 "//ui/gfx", 166 "//ui/gfx",
167 "//url", 167 "//url",
168 ] 168 ]
169 169
170 if (is_mac || is_ios) { 170 if (is_mac || is_ios) {
171 sources -= [ "login_database_posix.cc" ] 171 sources -= [ "login_database_posix.cc" ]
172 } 172 }
173 173
174 if (!is_ios) {
175 deps += [ "//components/safe_browsing/password_protection" ]
176 }
177
174 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 178 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
175 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 179 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
176 } 180 }
177 181
178 proto_library("proto") { 182 proto_library("proto") {
179 sources = [ 183 sources = [
180 "affiliation_api.proto", 184 "affiliation_api.proto",
181 ] 185 ]
182 } 186 }
183 187
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
322 "//components/sync:test_support_model", 326 "//components/sync:test_support_model",
323 "//components/variations", 327 "//components/variations",
324 "//net:test_support", 328 "//net:test_support",
325 "//sql:test_support", 329 "//sql:test_support",
326 "//testing/gmock", 330 "//testing/gmock",
327 "//testing/gtest", 331 "//testing/gtest",
328 "//ui/base", 332 "//ui/base",
329 "//url", 333 "//url",
330 ] 334 ]
331 } 335 }
OLDNEW
« no previous file with comments | « chrome/browser/safe_browsing/safe_browsing_service.cc ('k') | components/password_manager/core/browser/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698