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 static_library("omnibox") { | 5 static_library("omnibox") { |
6 sources = [ | 6 sources = [ |
7 "answers_cache.h", | 7 "answers_cache.h", |
8 "answers_cache.cc", | 8 "answers_cache.cc", |
9 "autocomplete_input.cc", | 9 "autocomplete_input.cc", |
10 "autocomplete_input.h", | 10 "autocomplete_input.h", |
(...skipping 13 matching lines...) Expand all Loading... |
24 "keyword_provider.cc", | 24 "keyword_provider.cc", |
25 "keyword_provider.h", | 25 "keyword_provider.h", |
26 "omnibox_field_trial.cc", | 26 "omnibox_field_trial.cc", |
27 "omnibox_field_trial.h", | 27 "omnibox_field_trial.h", |
28 "omnibox_switches.cc", | 28 "omnibox_switches.cc", |
29 "omnibox_switches.h", | 29 "omnibox_switches.h", |
30 "search_provider.cc", | 30 "search_provider.cc", |
31 "search_provider.h", | 31 "search_provider.h", |
32 "search_suggestion_parser.cc", | 32 "search_suggestion_parser.cc", |
33 "search_suggestion_parser.h", | 33 "search_suggestion_parser.h", |
| 34 "suggestion_answer.cc", |
| 35 "suggestion_answer.h", |
34 "url_prefix.cc", | 36 "url_prefix.cc", |
35 "url_prefix.h", | 37 "url_prefix.h", |
36 ] | 38 ] |
37 | 39 |
38 public_deps = [ | 40 public_deps = [ |
39 "//components/metrics/proto", | 41 "//components/metrics/proto", |
40 ] | 42 ] |
41 deps = [ | 43 deps = [ |
42 "//base", | 44 "//base", |
43 "//components/resources", | 45 "//components/resources", |
(...skipping 24 matching lines...) Expand all Loading... |
68 source_set("unit_tests") { | 70 source_set("unit_tests") { |
69 testonly = true | 71 testonly = true |
70 sources = [ | 72 sources = [ |
71 "answers_cache_unittest.cc", | 73 "answers_cache_unittest.cc", |
72 "autocomplete_input_unittest.cc", | 74 "autocomplete_input_unittest.cc", |
73 "autocomplete_match_unittest.cc", | 75 "autocomplete_match_unittest.cc", |
74 "autocomplete_result_unittest.cc", | 76 "autocomplete_result_unittest.cc", |
75 "base_search_provider_unittest.cc", | 77 "base_search_provider_unittest.cc", |
76 "keyword_provider_unittest.cc", | 78 "keyword_provider_unittest.cc", |
77 "omnibox_field_trial_unittest.cc", | 79 "omnibox_field_trial_unittest.cc", |
| 80 "suggestion_answer_unittest.cc", |
78 ] | 81 ] |
79 | 82 |
80 deps = [ | 83 deps = [ |
81 ":omnibox", | 84 ":omnibox", |
82 ":test_support", | 85 ":test_support", |
83 "//testing/gmock", | 86 "//testing/gmock", |
84 "//testing/gtest", | 87 "//testing/gtest", |
85 ] | 88 ] |
86 } | 89 } |
OLD | NEW |