OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
6 | 6 |
7 if (is_android) { | 7 if (is_android) { |
8 import("//build/config/android/config.gni") | 8 import("//build/config/android/config.gni") |
9 import("//build/config/android/rules.gni") | 9 import("//build/config/android/rules.gni") |
10 } | 10 } |
(...skipping 20 matching lines...) Expand all Loading... |
31 "ntp_snippets_fetcher.h", | 31 "ntp_snippets_fetcher.h", |
32 "ntp_snippets_scheduler.h", | 32 "ntp_snippets_scheduler.h", |
33 "ntp_snippets_service.cc", | 33 "ntp_snippets_service.cc", |
34 "ntp_snippets_service.h", | 34 "ntp_snippets_service.h", |
35 "ntp_snippets_status_service.cc", | 35 "ntp_snippets_status_service.cc", |
36 "ntp_snippets_status_service.h", | 36 "ntp_snippets_status_service.h", |
37 "offline_pages/offline_page_suggestions_provider.cc", | 37 "offline_pages/offline_page_suggestions_provider.cc", |
38 "offline_pages/offline_page_suggestions_provider.h", | 38 "offline_pages/offline_page_suggestions_provider.h", |
39 "pref_names.cc", | 39 "pref_names.cc", |
40 "pref_names.h", | 40 "pref_names.h", |
| 41 "request_counter.cc", |
| 42 "request_counter.h", |
41 "switches.cc", | 43 "switches.cc", |
42 "switches.h", | 44 "switches.h", |
43 ] | 45 ] |
44 | 46 |
45 public_deps = [ | 47 public_deps = [ |
46 "//base", | 48 "//base", |
47 "//components/keyed_service/core", | 49 "//components/keyed_service/core", |
48 "//components/leveldb_proto", | 50 "//components/leveldb_proto", |
49 "//components/prefs", | 51 "//components/prefs", |
50 "//components/signin/core/browser", | 52 "//components/signin/core/browser", |
(...skipping 29 matching lines...) Expand all Loading... |
80 testonly = true | 82 testonly = true |
81 sources = [ | 83 sources = [ |
82 "content_suggestions_service_unittest.cc", | 84 "content_suggestions_service_unittest.cc", |
83 "ntp_snippet_unittest.cc", | 85 "ntp_snippet_unittest.cc", |
84 "ntp_snippets_database_unittest.cc", | 86 "ntp_snippets_database_unittest.cc", |
85 "ntp_snippets_fetcher_unittest.cc", | 87 "ntp_snippets_fetcher_unittest.cc", |
86 "ntp_snippets_service_unittest.cc", | 88 "ntp_snippets_service_unittest.cc", |
87 "ntp_snippets_status_service_unittest.cc", | 89 "ntp_snippets_status_service_unittest.cc", |
88 "ntp_snippets_test_utils.cc", | 90 "ntp_snippets_test_utils.cc", |
89 "ntp_snippets_test_utils.h", | 91 "ntp_snippets_test_utils.h", |
| 92 "request_counter_unittest.cc", |
90 ] | 93 ] |
91 | 94 |
92 deps = [ | 95 deps = [ |
93 ":ntp_snippets", | 96 ":ntp_snippets", |
94 "//base", | 97 "//base", |
95 "//base/test:test_support", | 98 "//base/test:test_support", |
96 "//components/image_fetcher", | 99 "//components/image_fetcher", |
97 "//components/leveldb_proto:test_support", | 100 "//components/leveldb_proto:test_support", |
98 "//components/signin/core/browser:test_support", | 101 "//components/signin/core/browser:test_support", |
99 "//components/signin/core/common", | 102 "//components/signin/core/common", |
100 "//components/sync_driver:test_support", | 103 "//components/sync_driver:test_support", |
101 "//components/variations", | 104 "//components/variations", |
102 "//net:test_support", | 105 "//net:test_support", |
103 "//testing/gtest", | 106 "//testing/gtest", |
104 "//third_party/icu/", | 107 "//third_party/icu/", |
105 ] | 108 ] |
106 } | 109 } |
OLD | NEW |