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 source_set("browser") { | 7 source_set("browser") { |
8 sources = [ | 8 sources = [ |
9 "answers_cache.cc", | 9 "answers_cache.cc", |
10 "answers_cache.h", | 10 "answers_cache.h", |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 "keyword_extensions_delegate.h", | 44 "keyword_extensions_delegate.h", |
45 "keyword_provider.cc", | 45 "keyword_provider.cc", |
46 "keyword_provider.h", | 46 "keyword_provider.h", |
47 "omnibox_client.h", | 47 "omnibox_client.h", |
48 "omnibox_controller.cc", | 48 "omnibox_controller.cc", |
49 "omnibox_controller.h", | 49 "omnibox_controller.h", |
50 "omnibox_edit_controller.cc", | 50 "omnibox_edit_controller.cc", |
51 "omnibox_edit_controller.h", | 51 "omnibox_edit_controller.h", |
52 "omnibox_edit_model.cc", | 52 "omnibox_edit_model.cc", |
53 "omnibox_edit_model.h", | 53 "omnibox_edit_model.h", |
| 54 "omnibox_event_global_tracker.cc", |
| 55 "omnibox_event_global_tracker.h", |
54 "omnibox_field_trial.cc", | 56 "omnibox_field_trial.cc", |
55 "omnibox_field_trial.h", | 57 "omnibox_field_trial.h", |
56 "omnibox_log.cc", | 58 "omnibox_log.cc", |
57 "omnibox_log.h", | 59 "omnibox_log.h", |
58 "omnibox_navigation_observer.h", | 60 "omnibox_navigation_observer.h", |
59 "omnibox_popup_model.cc", | 61 "omnibox_popup_model.cc", |
60 "omnibox_popup_model.h", | 62 "omnibox_popup_model.h", |
61 "omnibox_popup_model_observer.h", | 63 "omnibox_popup_model_observer.h", |
62 "omnibox_popup_view.h", | 64 "omnibox_popup_view.h", |
63 "omnibox_pref_names.cc", | 65 "omnibox_pref_names.cc", |
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
168 ":test_support", | 170 ":test_support", |
169 "//base", | 171 "//base", |
170 "//components/search", | 172 "//components/search", |
171 "//components/search_engines", | 173 "//components/search_engines", |
172 "//components/variations", | 174 "//components/variations", |
173 "//testing/gmock", | 175 "//testing/gmock", |
174 "//testing/gtest", | 176 "//testing/gtest", |
175 "//url", | 177 "//url", |
176 ] | 178 ] |
177 } | 179 } |
OLD | NEW |