| 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 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 "remote/remote_suggestions_database_unittest.cc", | 145 "remote/remote_suggestions_database_unittest.cc", |
| 146 "remote/remote_suggestions_fetcher_unittest.cc", | 146 "remote/remote_suggestions_fetcher_unittest.cc", |
| 147 "remote/remote_suggestions_provider_impl_unittest.cc", | 147 "remote/remote_suggestions_provider_impl_unittest.cc", |
| 148 "remote/remote_suggestions_status_service_unittest.cc", | 148 "remote/remote_suggestions_status_service_unittest.cc", |
| 149 "remote/request_throttler_unittest.cc", | 149 "remote/request_throttler_unittest.cc", |
| 150 "remote/scheduling_remote_suggestions_provider_unittest.cc", | 150 "remote/scheduling_remote_suggestions_provider_unittest.cc", |
| 151 "remote/test_utils.cc", | 151 "remote/test_utils.cc", |
| 152 "remote/test_utils.h", | 152 "remote/test_utils.h", |
| 153 "sessions/foreign_sessions_suggestions_provider_unittest.cc", | 153 "sessions/foreign_sessions_suggestions_provider_unittest.cc", |
| 154 "sessions/tab_delegate_sync_adapter_unittest.cc", | 154 "sessions/tab_delegate_sync_adapter_unittest.cc", |
| 155 "user_classifier_unittest.cc", |
| 155 ] | 156 ] |
| 156 | 157 |
| 157 deps = [ | 158 deps = [ |
| 158 ":ntp_snippets", | 159 ":ntp_snippets", |
| 159 ":test_support", | 160 ":test_support", |
| 160 "//base", | 161 "//base", |
| 161 "//base/test:test_support", | 162 "//base/test:test_support", |
| 162 "//components/bookmarks/browser", | 163 "//components/bookmarks/browser", |
| 163 "//components/bookmarks/test", | 164 "//components/bookmarks/test", |
| 164 "//components/image_fetcher", | 165 "//components/image_fetcher", |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 204 | 205 |
| 205 deps = [ | 206 deps = [ |
| 206 ":ntp_snippets", | 207 ":ntp_snippets", |
| 207 "//base", | 208 "//base", |
| 208 "//components/offline_pages/core", | 209 "//components/offline_pages/core", |
| 209 "//components/offline_pages/core:test_support", | 210 "//components/offline_pages/core:test_support", |
| 210 "//testing/gmock", | 211 "//testing/gmock", |
| 211 "//testing/gtest", | 212 "//testing/gtest", |
| 212 ] | 213 ] |
| 213 } | 214 } |
| OLD | NEW |