| 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 | 6 |
| 7 if (is_android) { | 7 if (is_android) { |
| 8 import("//build/config/android/rules.gni") | 8 import("//build/config/android/rules.gni") |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 "history_url_provider.cc", | 43 "history_url_provider.cc", |
| 44 "history_url_provider.h", | 44 "history_url_provider.h", |
| 45 "in_memory_url_index.cc", | 45 "in_memory_url_index.cc", |
| 46 "in_memory_url_index.h", | 46 "in_memory_url_index.h", |
| 47 "in_memory_url_index_types.cc", | 47 "in_memory_url_index_types.cc", |
| 48 "in_memory_url_index_types.h", | 48 "in_memory_url_index_types.h", |
| 49 "keyword_extensions_delegate.cc", | 49 "keyword_extensions_delegate.cc", |
| 50 "keyword_extensions_delegate.h", | 50 "keyword_extensions_delegate.h", |
| 51 "keyword_provider.cc", | 51 "keyword_provider.cc", |
| 52 "keyword_provider.h", | 52 "keyword_provider.h", |
| 53 "match_compare.h", |
| 53 "omnibox_client.h", | 54 "omnibox_client.h", |
| 54 "omnibox_controller.cc", | 55 "omnibox_controller.cc", |
| 55 "omnibox_controller.h", | 56 "omnibox_controller.h", |
| 56 "omnibox_edit_controller.cc", | 57 "omnibox_edit_controller.cc", |
| 57 "omnibox_edit_controller.h", | 58 "omnibox_edit_controller.h", |
| 58 "omnibox_edit_model.cc", | 59 "omnibox_edit_model.cc", |
| 59 "omnibox_edit_model.h", | 60 "omnibox_edit_model.h", |
| 60 "omnibox_event_global_tracker.cc", | 61 "omnibox_event_global_tracker.cc", |
| 61 "omnibox_event_global_tracker.h", | 62 "omnibox_event_global_tracker.h", |
| 62 "omnibox_field_trial.cc", | 63 "omnibox_field_trial.cc", |
| (...skipping 12 matching lines...) Expand all Loading... |
| 75 "omnibox_switches.cc", | 76 "omnibox_switches.cc", |
| 76 "omnibox_switches.h", | 77 "omnibox_switches.h", |
| 77 "omnibox_view.cc", | 78 "omnibox_view.cc", |
| 78 "omnibox_view.h", | 79 "omnibox_view.h", |
| 79 "scored_history_match.cc", | 80 "scored_history_match.cc", |
| 80 "scored_history_match.h", | 81 "scored_history_match.h", |
| 81 "search_provider.cc", | 82 "search_provider.cc", |
| 82 "search_provider.h", | 83 "search_provider.h", |
| 83 "search_suggestion_parser.cc", | 84 "search_suggestion_parser.cc", |
| 84 "search_suggestion_parser.h", | 85 "search_suggestion_parser.h", |
| 86 "shortcut_match.cc", |
| 87 "shortcut_match.h", |
| 85 "shortcuts_backend.cc", | 88 "shortcuts_backend.cc", |
| 86 "shortcuts_backend.h", | 89 "shortcuts_backend.h", |
| 87 "shortcuts_constants.cc", | 90 "shortcuts_constants.cc", |
| 88 "shortcuts_constants.h", | 91 "shortcuts_constants.h", |
| 89 "shortcuts_database.cc", | 92 "shortcuts_database.cc", |
| 90 "shortcuts_database.h", | 93 "shortcuts_database.h", |
| 91 "shortcuts_provider.cc", | 94 "shortcuts_provider.cc", |
| 92 "shortcuts_provider.h", | 95 "shortcuts_provider.h", |
| 93 "suggestion_answer.cc", | 96 "suggestion_answer.cc", |
| 94 "suggestion_answer.h", | 97 "suggestion_answer.h", |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 237 "//components/variations", | 240 "//components/variations", |
| 238 "//net:test_support", | 241 "//net:test_support", |
| 239 "//sql", | 242 "//sql", |
| 240 "//sql:test_support", | 243 "//sql:test_support", |
| 241 "//testing/gmock", | 244 "//testing/gmock", |
| 242 "//testing/gtest", | 245 "//testing/gtest", |
| 243 "//ui/base", | 246 "//ui/base", |
| 244 "//url", | 247 "//url", |
| 245 ] | 248 ] |
| 246 } | 249 } |
| OLD | NEW |