| 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_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", |
| 21 ] | 27 ] |
| 22 } | 28 } |
| 23 | 29 |
| 24 source_set("unit_tests") { | 30 source_set("unit_tests") { |
| 25 testonly = true | 31 testonly = true |
| 26 sources = [ | 32 sources = [ |
| 33 "previews_black_list_item_unittest.cc", |
| 34 "previews_black_list_unittest.cc", |
| 27 "previews_data_savings_unittest.cc", | 35 "previews_data_savings_unittest.cc", |
| 28 "previews_experiments_unittest.cc", | 36 "previews_experiments_unittest.cc", |
| 29 "previews_io_data_unittest.cc", | 37 "previews_io_data_unittest.cc", |
| 30 "previews_ui_service_unittest.cc", | 38 "previews_ui_service_unittest.cc", |
| 31 ] | 39 ] |
| 32 | 40 |
| 33 deps = [ | 41 deps = [ |
| 34 ":previews", | 42 ":previews", |
| 35 "//base", | 43 "//base", |
| 36 "//base/test:test_support", | 44 "//base/test:test_support", |
| 37 "//components/data_reduction_proxy/core/common", | 45 "//components/data_reduction_proxy/core/common", |
| 38 "//components/variations", | 46 "//components/variations", |
| 39 "//testing/gtest", | 47 "//testing/gtest", |
| 40 ] | 48 ] |
| 41 } | 49 } |
| OLD | NEW |