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 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
158 "//net:test_support", | 158 "//net:test_support", |
159 "//testing/gtest", | 159 "//testing/gtest", |
160 "//third_party/icu/", | 160 "//third_party/icu/", |
161 "//ui/gfx:test_support", | 161 "//ui/gfx:test_support", |
162 ] | 162 ] |
163 } | 163 } |
164 | 164 |
165 source_set("test_support") { | 165 source_set("test_support") { |
166 testonly = true | 166 testonly = true |
167 sources = [ | 167 sources = [ |
| 168 "category_rankers/fake_category_ranker.cc", |
| 169 "category_rankers/fake_category_ranker.h", |
168 "category_rankers/mock_category_ranker.cc", | 170 "category_rankers/mock_category_ranker.cc", |
169 "category_rankers/mock_category_ranker.h", | 171 "category_rankers/mock_category_ranker.h", |
170 "mock_content_suggestions_provider_observer.cc", | 172 "mock_content_suggestions_provider_observer.cc", |
171 "mock_content_suggestions_provider_observer.h", | 173 "mock_content_suggestions_provider_observer.h", |
172 "offline_pages/offline_pages_test_utils.cc", | 174 "offline_pages/offline_pages_test_utils.cc", |
173 "offline_pages/offline_pages_test_utils.h", | 175 "offline_pages/offline_pages_test_utils.h", |
174 ] | 176 ] |
175 | 177 |
176 deps = [ | 178 deps = [ |
177 ":ntp_snippets", | 179 ":ntp_snippets", |
178 "//base", | 180 "//base", |
179 "//components/offline_pages/core", | 181 "//components/offline_pages/core", |
180 "//components/offline_pages/core:test_support", | 182 "//components/offline_pages/core:test_support", |
181 "//testing/gmock", | 183 "//testing/gmock", |
182 ] | 184 ] |
183 } | 185 } |
OLD | NEW |