| 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("//third_party/protobuf/proto_library.gni") | 5 import("//third_party/protobuf/proto_library.gni") |
| 6 import("//ui/vector_icons/vector_icons.gni") | 6 import("//ui/vector_icons/vector_icons.gni") |
| 7 | 7 |
| 8 if (is_android) { | 8 if (is_android) { |
| 9 import("//build/config/android/rules.gni") | 9 import("//build/config/android/rules.gni") |
| 10 } | 10 } |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 "autocomplete_result.h", | 45 "autocomplete_result.h", |
| 46 "autocomplete_scheme_classifier.h", | 46 "autocomplete_scheme_classifier.h", |
| 47 "base_search_provider.cc", | 47 "base_search_provider.cc", |
| 48 "base_search_provider.h", | 48 "base_search_provider.h", |
| 49 "bookmark_provider.cc", | 49 "bookmark_provider.cc", |
| 50 "bookmark_provider.h", | 50 "bookmark_provider.h", |
| 51 "builtin_provider.cc", | 51 "builtin_provider.cc", |
| 52 "builtin_provider.h", | 52 "builtin_provider.h", |
| 53 "clipboard_url_provider.cc", | 53 "clipboard_url_provider.cc", |
| 54 "clipboard_url_provider.h", | 54 "clipboard_url_provider.h", |
| 55 "contextual_suggestions_service.cc", |
| 56 "contextual_suggestions_service.h", |
| 55 "history_provider.cc", | 57 "history_provider.cc", |
| 56 "history_provider.h", | 58 "history_provider.h", |
| 57 "history_quick_provider.cc", | 59 "history_quick_provider.cc", |
| 58 "history_quick_provider.h", | 60 "history_quick_provider.h", |
| 59 "history_url_provider.cc", | 61 "history_url_provider.cc", |
| 60 "history_url_provider.h", | 62 "history_url_provider.h", |
| 61 "in_memory_url_index.cc", | 63 "in_memory_url_index.cc", |
| 62 "in_memory_url_index.h", | 64 "in_memory_url_index.h", |
| 63 "in_memory_url_index_types.cc", | 65 "in_memory_url_index_types.cc", |
| 64 "in_memory_url_index_types.h", | 66 "in_memory_url_index_types.h", |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 "//components/metrics", | 145 "//components/metrics", |
| 144 "//components/open_from_clipboard", | 146 "//components/open_from_clipboard", |
| 145 "//components/physical_web/data_source", | 147 "//components/physical_web/data_source", |
| 146 "//components/pref_registry", | 148 "//components/pref_registry", |
| 147 "//components/prefs", | 149 "//components/prefs", |
| 148 "//components/query_parser", | 150 "//components/query_parser", |
| 149 "//components/resources", | 151 "//components/resources", |
| 150 "//components/search", | 152 "//components/search", |
| 151 "//components/search_engines", | 153 "//components/search_engines", |
| 152 "//components/sessions", | 154 "//components/sessions", |
| 155 "//components/signin/core/browser", |
| 153 "//components/strings", | 156 "//components/strings", |
| 154 "//components/toolbar", | 157 "//components/toolbar", |
| 155 "//components/url_formatter", | 158 "//components/url_formatter", |
| 156 "//components/variations", | 159 "//components/variations", |
| 157 "//components/variations/net", | 160 "//components/variations/net", |
| 158 "//extensions/common:common_constants", | 161 "//extensions/common:common_constants", |
| 159 "//net", | 162 "//net", |
| 160 "//skia", | 163 "//skia", |
| 161 "//sql", | 164 "//sql", |
| 162 "//third_party/protobuf:protobuf_lite", | 165 "//third_party/protobuf:protobuf_lite", |
| (...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 301 "//components/variations", | 304 "//components/variations", |
| 302 "//net:test_support", | 305 "//net:test_support", |
| 303 "//sql", | 306 "//sql", |
| 304 "//sql:test_support", | 307 "//sql:test_support", |
| 305 "//testing/gmock", | 308 "//testing/gmock", |
| 306 "//testing/gtest", | 309 "//testing/gtest", |
| 307 "//ui/base:base", | 310 "//ui/base:base", |
| 308 "//url", | 311 "//url", |
| 309 ] | 312 ] |
| 310 } | 313 } |
| OLD | NEW |