| 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 static_library("omnibox") { | 7 static_library("omnibox") { |
| 8 sources = [ | 8 sources = [ |
| 9 "answers_cache.cc", | 9 "answers_cache.cc", |
| 10 "answers_cache.h", | 10 "answers_cache.h", |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 "omnibox_log.cc", | 42 "omnibox_log.cc", |
| 43 "omnibox_log.h", | 43 "omnibox_log.h", |
| 44 "omnibox_switches.cc", | 44 "omnibox_switches.cc", |
| 45 "omnibox_switches.h", | 45 "omnibox_switches.h", |
| 46 "scored_history_match.cc", | 46 "scored_history_match.cc", |
| 47 "scored_history_match.h", | 47 "scored_history_match.h", |
| 48 "search_provider.cc", | 48 "search_provider.cc", |
| 49 "search_provider.h", | 49 "search_provider.h", |
| 50 "search_suggestion_parser.cc", | 50 "search_suggestion_parser.cc", |
| 51 "search_suggestion_parser.h", | 51 "search_suggestion_parser.h", |
| 52 "shortcuts_backend.cc", |
| 53 "shortcuts_backend.h", |
| 52 "shortcuts_database.cc", | 54 "shortcuts_database.cc", |
| 53 "shortcuts_database.h", | 55 "shortcuts_database.h", |
| 54 "suggestion_answer.cc", | 56 "suggestion_answer.cc", |
| 55 "suggestion_answer.h", | 57 "suggestion_answer.h", |
| 56 "url_index_private_data.cc", | 58 "url_index_private_data.cc", |
| 57 "url_index_private_data.h", | 59 "url_index_private_data.h", |
| 58 "url_prefix.cc", | 60 "url_prefix.cc", |
| 59 "url_prefix.h", | 61 "url_prefix.h", |
| 60 ] | 62 ] |
| 61 | 63 |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 "suggestion_answer_unittest.cc", | 120 "suggestion_answer_unittest.cc", |
| 119 ] | 121 ] |
| 120 | 122 |
| 121 deps = [ | 123 deps = [ |
| 122 ":omnibox", | 124 ":omnibox", |
| 123 ":test_support", | 125 ":test_support", |
| 124 "//testing/gmock", | 126 "//testing/gmock", |
| 125 "//testing/gtest", | 127 "//testing/gtest", |
| 126 ] | 128 ] |
| 127 } | 129 } |
| OLD | NEW |