| 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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 } | 125 } |
| 126 } | 126 } |
| 127 | 127 |
| 128 source_set("unit_tests") { | 128 source_set("unit_tests") { |
| 129 testonly = true | 129 testonly = true |
| 130 sources = [ | 130 sources = [ |
| 131 "bookmarks/bookmark_last_visit_utils_unittest.cc", | 131 "bookmarks/bookmark_last_visit_utils_unittest.cc", |
| 132 "category_rankers/click_based_category_ranker_unittest.cc", | 132 "category_rankers/click_based_category_ranker_unittest.cc", |
| 133 "category_rankers/constant_category_ranker_unittest.cc", | 133 "category_rankers/constant_category_ranker_unittest.cc", |
| 134 "category_unittest.cc", | 134 "category_unittest.cc", |
| 135 "content_suggestions_metrics_unittest.cc", |
| 135 "content_suggestions_service_unittest.cc", | 136 "content_suggestions_service_unittest.cc", |
| 136 "offline_pages/recent_tab_suggestions_provider_unittest.cc", | 137 "offline_pages/recent_tab_suggestions_provider_unittest.cc", |
| 137 "physical_web_pages/physical_web_page_suggestions_provider_unittest.cc", | 138 "physical_web_pages/physical_web_page_suggestions_provider_unittest.cc", |
| 138 "remote/ntp_snippet_unittest.cc", | 139 "remote/ntp_snippet_unittest.cc", |
| 139 "remote/ntp_snippets_fetcher_unittest.cc", | 140 "remote/ntp_snippets_fetcher_unittest.cc", |
| 140 "remote/ntp_snippets_json_request_unittest.cc", | 141 "remote/ntp_snippets_json_request_unittest.cc", |
| 141 "remote/remote_suggestions_database_unittest.cc", | 142 "remote/remote_suggestions_database_unittest.cc", |
| 142 "remote/remote_suggestions_provider_impl_unittest.cc", | 143 "remote/remote_suggestions_provider_impl_unittest.cc", |
| 143 "remote/remote_suggestions_status_service_unittest.cc", | 144 "remote/remote_suggestions_status_service_unittest.cc", |
| 144 "remote/request_throttler_unittest.cc", | 145 "remote/request_throttler_unittest.cc", |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 191 ] | 192 ] |
| 192 | 193 |
| 193 deps = [ | 194 deps = [ |
| 194 ":ntp_snippets", | 195 ":ntp_snippets", |
| 195 "//base", | 196 "//base", |
| 196 "//components/offline_pages/core", | 197 "//components/offline_pages/core", |
| 197 "//components/offline_pages/core:test_support", | 198 "//components/offline_pages/core:test_support", |
| 198 "//testing/gmock", | 199 "//testing/gmock", |
| 199 ] | 200 ] |
| 200 } | 201 } |
| OLD | NEW |