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

Side by Side Diff: components/safe_browsing/password_protection/BUILD.gn

Issue 2720643003: Call CSD whitelist checking on UI thread and record UMA (Closed)
Patch Set: nit 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
(Empty)
1 # Copyright 2017 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 source_set("pp_service") {
blundell 2017/03/02 15:54:02 nit: you should just call these targets password_p
Jialiu Lin 2017/03/02 19:02:50 Done.
6 sources = [
7 "password_protection_service.cc",
8 "password_protection_service.h",
9 ]
10
11 deps = [
12 "//base:base",
13 "//components/history/core/browser:browser",
14 "//components/safe_browsing_db:database_manager",
15 "//content/public/browser:browser",
16 "//third_party/protobuf:protobuf_lite",
17 ]
18 }
19
20 source_set("pp_service_unittest") {
21 testonly = true
22 sources = [
23 "password_protection_service_unittest.cc",
24 ]
25 deps = [
26 ":pp_service",
27 "//base",
28 "//base/test:test_support",
29 "//components/safe_browsing_db:test_database_manager",
30 "//content/test:test_support",
31 "//testing/gmock",
32 "//testing/gtest",
33 "//third_party/protobuf:protobuf_lite",
34 ]
35 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698