| 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("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_decider.h", | 11 "previews_decider.h", |
| 12 "previews_experiments.cc", | 12 "previews_experiments.cc", |
| 13 "previews_experiments.h", | 13 "previews_experiments.h", |
| 14 "previews_features.cc", |
| 15 "previews_features.h", |
| 14 "previews_io_data.cc", | 16 "previews_io_data.cc", |
| 15 "previews_io_data.h", | 17 "previews_io_data.h", |
| 16 "previews_opt_out_store.h", | 18 "previews_opt_out_store.h", |
| 17 "previews_opt_out_store_sql.cc", | 19 "previews_opt_out_store_sql.cc", |
| 18 "previews_opt_out_store_sql.h", | 20 "previews_opt_out_store_sql.h", |
| 19 "previews_ui_service.cc", | 21 "previews_ui_service.cc", |
| 20 "previews_ui_service.h", | 22 "previews_ui_service.h", |
| 21 ] | 23 ] |
| 22 | 24 |
| 23 deps = [ | 25 deps = [ |
| (...skipping 22 matching lines...) Expand all Loading... |
| 46 "//base/test:test_support", | 48 "//base/test:test_support", |
| 47 "//components/variations", | 49 "//components/variations", |
| 48 "//net:net", | 50 "//net:net", |
| 49 "//net:test_support", | 51 "//net:test_support", |
| 50 "//sql", | 52 "//sql", |
| 51 "//sql:test_support", | 53 "//sql:test_support", |
| 52 "//testing/gtest", | 54 "//testing/gtest", |
| 53 "//url:url", | 55 "//url:url", |
| 54 ] | 56 ] |
| 55 } | 57 } |
| OLD | NEW |