OLD | NEW |
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_data_savings.cc", | 7 "previews_data_savings.cc", |
8 "previews_data_savings.h", | 8 "previews_data_savings.h", |
9 "previews_experiments.cc", | 9 "previews_experiments.cc", |
10 "previews_experiments.h", | 10 "previews_experiments.h", |
11 ] | 11 ] |
12 | 12 |
13 deps = [ | 13 deps = [ |
14 "//base", | 14 "//base", |
15 "//components/data_reduction_proxy/core/common", | 15 "//components/data_reduction_proxy/core/common", |
16 "//components/variations", | 16 "//components/variations", |
17 ] | 17 ] |
18 } | 18 } |
19 | 19 |
20 source_set("unit_tests") { | 20 source_set("unit_tests") { |
21 testonly = true | 21 testonly = true |
22 sources = [ | 22 sources = [ |
23 "previews_data_savings_unittest.cc", | 23 "previews_data_savings_unittest.cc", |
24 "previews_experiments_unittest.cc", | 24 "previews_experiments_unittest.cc", |
25 ] | 25 ] |
26 | 26 |
27 deps = [ | 27 deps = [ |
28 ":previews", | 28 ":previews", |
29 "//base", | 29 "//base", |
| 30 "//base/test:test_support", |
30 "//components/data_reduction_proxy/core/common", | 31 "//components/data_reduction_proxy/core/common", |
31 "//components/variations", | 32 "//components/variations", |
32 "//testing/gtest", | 33 "//testing/gtest", |
33 ] | 34 ] |
34 } | 35 } |
OLD | NEW |