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

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: change source_set name 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
« no previous file with comments | « components/BUILD.gn ('k') | components/safe_browsing/password_protection/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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("password_protection") {
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("password_protection_unittest") {
21 testonly = true
22 sources = [
23 "password_protection_service_unittest.cc",
24 ]
25 deps = [
26 ":password_protection",
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
« no previous file with comments | « components/BUILD.gn ('k') | components/safe_browsing/password_protection/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698