OLD | NEW |
| (Empty) |
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 | |
3 # found in the LICENSE file. | |
4 | |
5 static_library("previews") { | |
6 sources = [ | |
7 "previews_data_savings.cc", | |
8 "previews_data_savings.h", | |
9 "previews_experiments.cc", | |
10 "previews_experiments.h", | |
11 "previews_io_data.cc", | |
12 "previews_io_data.h", | |
13 "previews_ui_service.cc", | |
14 "previews_ui_service.h", | |
15 ] | |
16 | |
17 deps = [ | |
18 "//base", | |
19 "//components/data_reduction_proxy/core/common", | |
20 "//components/variations", | |
21 ] | |
22 } | |
23 | |
24 source_set("unit_tests") { | |
25 testonly = true | |
26 sources = [ | |
27 "previews_data_savings_unittest.cc", | |
28 "previews_experiments_unittest.cc", | |
29 "previews_io_data_unittest.cc", | |
30 "previews_ui_service_unittest.cc", | |
31 ] | |
32 | |
33 deps = [ | |
34 ":previews", | |
35 "//base", | |
36 "//base/test:test_support", | |
37 "//components/data_reduction_proxy/core/common", | |
38 "//components/variations", | |
39 "//testing/gtest", | |
40 ] | |
41 } | |
OLD | NEW |