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

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

Issue 2390773003: Adding a SQL implementation of the backing store for previews opt outs (Closed)
Patch Set: tbansal comments Created 4 years, 2 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 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_experiments.cc", 13 "previews_experiments.cc",
14 "previews_experiments.h", 14 "previews_experiments.h",
15 "previews_io_data.cc", 15 "previews_io_data.cc",
16 "previews_io_data.h", 16 "previews_io_data.h",
17 "previews_opt_out_store.h", 17 "previews_opt_out_store.h",
18 "previews_opt_out_store_sql.cc",
19 "previews_opt_out_store_sql.h",
18 "previews_ui_service.cc", 20 "previews_ui_service.cc",
19 "previews_ui_service.h", 21 "previews_ui_service.h",
20 ] 22 ]
21 23
22 deps = [ 24 deps = [
23 "//base", 25 "//base",
24 "//components/data_reduction_proxy/core/common", 26 "//components/data_reduction_proxy/core/common",
25 "//components/variations", 27 "//components/variations",
28 "//sql",
26 "//url:url", 29 "//url:url",
27 ] 30 ]
28 } 31 }
29 32
30 source_set("unit_tests") { 33 source_set("unit_tests") {
31 testonly = true 34 testonly = true
32 sources = [ 35 sources = [
33 "previews_black_list_item_unittest.cc", 36 "previews_black_list_item_unittest.cc",
34 "previews_black_list_unittest.cc", 37 "previews_black_list_unittest.cc",
35 "previews_data_savings_unittest.cc", 38 "previews_data_savings_unittest.cc",
36 "previews_experiments_unittest.cc", 39 "previews_experiments_unittest.cc",
37 "previews_io_data_unittest.cc", 40 "previews_io_data_unittest.cc",
38 "previews_ui_service_unittest.cc", 41 "previews_ui_service_unittest.cc",
39 ] 42 ]
40 43
41 deps = [ 44 deps = [
42 ":core", 45 ":core",
43 "//base", 46 "//base",
44 "//base/test:test_support", 47 "//base/test:test_support",
45 "//components/data_reduction_proxy/core/common", 48 "//components/data_reduction_proxy/core/common",
46 "//components/variations", 49 "//components/variations",
47 "//testing/gtest", 50 "//testing/gtest",
48 "//url:url", 51 "//url:url",
49 ] 52 ]
50 } 53 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698