| 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 13 matching lines...) Expand all Loading... |
| 24 "category_status.cc", | 24 "category_status.cc", |
| 25 "category_status.h", | 25 "category_status.h", |
| 26 "content_suggestion.cc", | 26 "content_suggestion.cc", |
| 27 "content_suggestion.h", | 27 "content_suggestion.h", |
| 28 "content_suggestions_metrics.cc", | 28 "content_suggestions_metrics.cc", |
| 29 "content_suggestions_metrics.h", | 29 "content_suggestions_metrics.h", |
| 30 "content_suggestions_provider.cc", | 30 "content_suggestions_provider.cc", |
| 31 "content_suggestions_provider.h", | 31 "content_suggestions_provider.h", |
| 32 "content_suggestions_service.cc", | 32 "content_suggestions_service.cc", |
| 33 "content_suggestions_service.h", | 33 "content_suggestions_service.h", |
| 34 "downloads/download_suggestions_provider.cc", |
| 35 "downloads/download_suggestions_provider.h", |
| 34 "features.cc", | 36 "features.cc", |
| 35 "features.h", | 37 "features.h", |
| 36 "ntp_snippet.cc", | 38 "ntp_snippet.cc", |
| 37 "ntp_snippet.h", | 39 "ntp_snippet.h", |
| 38 "ntp_snippets_constants.cc", | 40 "ntp_snippets_constants.cc", |
| 39 "ntp_snippets_constants.h", | 41 "ntp_snippets_constants.h", |
| 40 "ntp_snippets_database.cc", | 42 "ntp_snippets_database.cc", |
| 41 "ntp_snippets_database.h", | 43 "ntp_snippets_database.h", |
| 42 "ntp_snippets_fetcher.cc", | 44 "ntp_snippets_fetcher.cc", |
| 43 "ntp_snippets_fetcher.h", | 45 "ntp_snippets_fetcher.h", |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 148 "//components/strings", | 150 "//components/strings", |
| 149 "//components/sync:test_support_sync_driver", | 151 "//components/sync:test_support_sync_driver", |
| 150 "//components/sync_sessions", | 152 "//components/sync_sessions", |
| 151 "//components/variations", | 153 "//components/variations", |
| 152 "//net:test_support", | 154 "//net:test_support", |
| 153 "//testing/gtest", | 155 "//testing/gtest", |
| 154 "//third_party/icu/", | 156 "//third_party/icu/", |
| 155 "//ui/gfx:test_support", | 157 "//ui/gfx:test_support", |
| 156 ] | 158 ] |
| 157 } | 159 } |
| OLD | NEW |