| 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 29 matching lines...) Expand all Loading... |
| 40 "ntp_snippets_constants.cc", | 40 "ntp_snippets_constants.cc", |
| 41 "ntp_snippets_constants.h", | 41 "ntp_snippets_constants.h", |
| 42 "offline_pages/recent_tab_suggestions_provider.cc", | 42 "offline_pages/recent_tab_suggestions_provider.cc", |
| 43 "offline_pages/recent_tab_suggestions_provider.h", | 43 "offline_pages/recent_tab_suggestions_provider.h", |
| 44 "physical_web_pages/physical_web_page_suggestions_provider.cc", | 44 "physical_web_pages/physical_web_page_suggestions_provider.cc", |
| 45 "physical_web_pages/physical_web_page_suggestions_provider.h", | 45 "physical_web_pages/physical_web_page_suggestions_provider.h", |
| 46 "pref_names.cc", | 46 "pref_names.cc", |
| 47 "pref_names.h", | 47 "pref_names.h", |
| 48 "pref_util.cc", | 48 "pref_util.cc", |
| 49 "pref_util.h", | 49 "pref_util.h", |
| 50 "reading_list/reading_list_distillation_state_util.cc", | |
| 51 "reading_list/reading_list_distillation_state_util.h", | |
| 52 "reading_list/reading_list_suggestions_provider.cc", | 50 "reading_list/reading_list_suggestions_provider.cc", |
| 53 "reading_list/reading_list_suggestions_provider.h", | 51 "reading_list/reading_list_suggestions_provider.h", |
| 54 "remote/json_request.cc", | 52 "remote/json_request.cc", |
| 55 "remote/json_request.h", | 53 "remote/json_request.h", |
| 56 "remote/persistent_scheduler.h", | 54 "remote/persistent_scheduler.h", |
| 57 "remote/remote_suggestion.cc", | 55 "remote/remote_suggestion.cc", |
| 58 "remote/remote_suggestion.h", | 56 "remote/remote_suggestion.h", |
| 59 "remote/remote_suggestions_database.cc", | 57 "remote/remote_suggestions_database.cc", |
| 60 "remote/remote_suggestions_database.h", | 58 "remote/remote_suggestions_database.h", |
| 61 "remote/remote_suggestions_fetcher.cc", | 59 "remote/remote_suggestions_fetcher.cc", |
| (...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 218 | 216 |
| 219 deps = [ | 217 deps = [ |
| 220 ":ntp_snippets", | 218 ":ntp_snippets", |
| 221 "//base", | 219 "//base", |
| 222 "//components/offline_pages/core", | 220 "//components/offline_pages/core", |
| 223 "//components/offline_pages/core:test_support", | 221 "//components/offline_pages/core:test_support", |
| 224 "//testing/gmock", | 222 "//testing/gmock", |
| 225 "//testing/gtest", | 223 "//testing/gtest", |
| 226 ] | 224 ] |
| 227 } | 225 } |
| OLD | NEW |