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

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

Issue 2335023002: Adding a previews IO-thread blacklist (Closed)
Patch Set: build.gn dependency on gurl Created 4 years, 3 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("previews") { 5 static_library("previews") {
6 sources = [ 6 sources = [
7 "previews_black_list.cc",
8 "previews_black_list.h",
9 "previews_black_list_item.cc",
10 "previews_black_list_item.h",
7 "previews_data_savings.cc", 11 "previews_data_savings.cc",
8 "previews_data_savings.h", 12 "previews_data_savings.h",
9 "previews_experiments.cc", 13 "previews_experiments.cc",
10 "previews_experiments.h", 14 "previews_experiments.h",
11 "previews_io_data.cc", 15 "previews_io_data.cc",
12 "previews_io_data.h", 16 "previews_io_data.h",
17 "previews_opt_out_store.cc",
18 "previews_opt_out_store.h",
13 "previews_ui_service.cc", 19 "previews_ui_service.cc",
14 "previews_ui_service.h", 20 "previews_ui_service.h",
15 ] 21 ]
16 22
17 deps = [ 23 deps = [
18 "//base", 24 "//base",
19 "//components/data_reduction_proxy/core/common", 25 "//components/data_reduction_proxy/core/common",
20 "//components/variations", 26 "//components/variations",
27 "//url:url"
21 ] 28 ]
22 } 29 }
23 30
24 source_set("unit_tests") { 31 source_set("unit_tests") {
25 testonly = true 32 testonly = true
26 sources = [ 33 sources = [
34 "previews_black_list_item_unittest.cc",
35 "previews_black_list_unittest.cc",
27 "previews_data_savings_unittest.cc", 36 "previews_data_savings_unittest.cc",
28 "previews_experiments_unittest.cc", 37 "previews_experiments_unittest.cc",
29 "previews_io_data_unittest.cc", 38 "previews_io_data_unittest.cc",
30 "previews_ui_service_unittest.cc", 39 "previews_ui_service_unittest.cc",
31 ] 40 ]
32 41
33 deps = [ 42 deps = [
34 ":previews", 43 ":previews",
35 "//base", 44 "//base",
36 "//base/test:test_support", 45 "//base/test:test_support",
37 "//components/data_reduction_proxy/core/common", 46 "//components/data_reduction_proxy/core/common",
38 "//components/variations", 47 "//components/variations",
39 "//testing/gtest", 48 "//testing/gtest",
49 "//url:url"
40 ] 50 ]
41 } 51 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698