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

Side by Side Diff: components/previews/core/BUILD.gn

Issue 2477073002: Adding UMA to track previews opt outs and blacklist eligibility (Closed)
Patch Set: typo Created 4 years, 1 month 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 | « no previous file | components/previews/core/previews_black_list.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 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 static_library("core") { 5 static_library("core") {
6 sources = [ 6 sources = [
7 "previews_black_list.cc", 7 "previews_black_list.cc",
8 "previews_black_list.h", 8 "previews_black_list.h",
9 "previews_black_list_item.cc", 9 "previews_black_list_item.cc",
10 "previews_black_list_item.h", 10 "previews_black_list_item.h",
11 "previews_data_savings.cc", 11 "previews_data_savings.cc",
12 "previews_data_savings.h", 12 "previews_data_savings.h",
13 "previews_decider.h", 13 "previews_decider.h",
14 "previews_experiments.cc", 14 "previews_experiments.cc",
15 "previews_experiments.h", 15 "previews_experiments.h",
16 "previews_io_data.cc", 16 "previews_io_data.cc",
17 "previews_io_data.h", 17 "previews_io_data.h",
18 "previews_opt_out_store.h", 18 "previews_opt_out_store.h",
19 "previews_opt_out_store_sql.cc", 19 "previews_opt_out_store_sql.cc",
20 "previews_opt_out_store_sql.h", 20 "previews_opt_out_store_sql.h",
21 "previews_ui_service.cc", 21 "previews_ui_service.cc",
22 "previews_ui_service.h", 22 "previews_ui_service.h",
23 ] 23 ]
24 24
25 deps = [ 25 deps = [
26 "//base", 26 "//base",
27 "//components/data_reduction_proxy/core/common", 27 "//components/data_reduction_proxy/core/common",
28 "//components/variations", 28 "//components/variations",
29 "//net", 29 "//net:net",
30 "//sql", 30 "//sql",
31 "//url:url", 31 "//url:url",
32 ] 32 ]
33 } 33 }
34 34
35 source_set("unit_tests") { 35 source_set("unit_tests") {
36 testonly = true 36 testonly = true
37 sources = [ 37 sources = [
38 "previews_black_list_item_unittest.cc", 38 "previews_black_list_item_unittest.cc",
39 "previews_black_list_unittest.cc", 39 "previews_black_list_unittest.cc",
40 "previews_data_savings_unittest.cc", 40 "previews_data_savings_unittest.cc",
41 "previews_experiments_unittest.cc", 41 "previews_experiments_unittest.cc",
42 "previews_io_data_unittest.cc", 42 "previews_io_data_unittest.cc",
43 "previews_opt_out_store_sql_unittest.cc", 43 "previews_opt_out_store_sql_unittest.cc",
44 "previews_ui_service_unittest.cc", 44 "previews_ui_service_unittest.cc",
45 ] 45 ]
46 46
47 deps = [ 47 deps = [
48 ":core", 48 ":core",
49 "//base", 49 "//base",
50 "//base/test:test_support", 50 "//base/test:test_support",
51 "//components/data_reduction_proxy/core/common", 51 "//components/data_reduction_proxy/core/common",
52 "//components/variations", 52 "//components/variations",
53 "//net:net",
54 "//net:test_support",
53 "//sql", 55 "//sql",
54 "//sql:test_support", 56 "//sql:test_support",
55 "//testing/gtest", 57 "//testing/gtest",
56 "//url:url", 58 "//url:url",
57 ] 59 ]
58 } 60 }
OLDNEW
« no previous file with comments | « no previous file | components/previews/core/previews_black_list.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698