| 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", |
| 8 "answers_cache.cc", |
| 7 "autocomplete_input.cc", | 9 "autocomplete_input.cc", |
| 8 "autocomplete_input.h", | 10 "autocomplete_input.h", |
| 9 "autocomplete_match.cc", | 11 "autocomplete_match.cc", |
| 10 "autocomplete_match.h", | 12 "autocomplete_match.h", |
| 11 "autocomplete_match_type.cc", | 13 "autocomplete_match_type.cc", |
| 12 "autocomplete_match_type.h", | 14 "autocomplete_match_type.h", |
| 13 "autocomplete_provider.cc", | 15 "autocomplete_provider.cc", |
| 14 "autocomplete_provider.h", | 16 "autocomplete_provider.h", |
| 15 "autocomplete_result.cc", | 17 "autocomplete_result.cc", |
| 16 "autocomplete_result.h", | 18 "autocomplete_result.h", |
| 17 "autocomplete_scheme_classifier.h", | 19 "autocomplete_scheme_classifier.h", |
| 20 "base_search_provider.cc", |
| 21 "base_search_provider.h", |
| 18 "keyword_extensions_delegate.cc", | 22 "keyword_extensions_delegate.cc", |
| 19 "keyword_extensions_delegate.h", | 23 "keyword_extensions_delegate.h", |
| 20 "keyword_provider.cc", | 24 "keyword_provider.cc", |
| 21 "keyword_provider.h", | 25 "keyword_provider.h", |
| 22 "omnibox_field_trial.cc", | 26 "omnibox_field_trial.cc", |
| 23 "omnibox_field_trial.h", | 27 "omnibox_field_trial.h", |
| 24 "omnibox_switches.cc", | 28 "omnibox_switches.cc", |
| 25 "omnibox_switches.h", | 29 "omnibox_switches.h", |
| 30 "search_provider.cc", |
| 31 "search_provider.h", |
| 26 "search_suggestion_parser.cc", | 32 "search_suggestion_parser.cc", |
| 27 "search_suggestion_parser.h", | 33 "search_suggestion_parser.h", |
| 28 "url_prefix.cc", | 34 "url_prefix.cc", |
| 29 "url_prefix.h", | 35 "url_prefix.h", |
| 30 ] | 36 ] |
| 31 | 37 |
| 32 deps = [ | 38 deps = [ |
| 33 "//base", | 39 "//base", |
| 34 "//components/metrics/proto", | 40 "//components/metrics/proto", |
| 35 "//components/resources", | 41 "//components/resources", |
| (...skipping 18 matching lines...) Expand all Loading... |
| 54 | 60 |
| 55 deps = [ | 61 deps = [ |
| 56 ":omnibox", | 62 ":omnibox", |
| 57 "//base", | 63 "//base", |
| 58 "//components/metrics/proto", | 64 "//components/metrics/proto", |
| 59 ] | 65 ] |
| 60 } | 66 } |
| 61 | 67 |
| 62 source_set("unit_tests") { | 68 source_set("unit_tests") { |
| 63 sources = [ | 69 sources = [ |
| 70 "answers_cache_unittest.cc", |
| 64 "autocomplete_input_unittest.cc", | 71 "autocomplete_input_unittest.cc", |
| 65 "autocomplete_match_unittest.cc", | 72 "autocomplete_match_unittest.cc", |
| 66 "autocomplete_result_unittest.cc", | 73 "autocomplete_result_unittest.cc", |
| 67 "keyword_provider_unittest.cc", | 74 "keyword_provider_unittest.cc", |
| 68 "omnibox_field_trial_unittest.cc", | 75 "omnibox_field_trial_unittest.cc", |
| 69 ] | 76 ] |
| 70 | 77 |
| 71 deps = [ | 78 deps = [ |
| 72 ":omnibox", | 79 ":omnibox", |
| 73 ":test_support", | 80 ":test_support", |
| 74 "//testing/gtest", | 81 "//testing/gtest", |
| 75 ] | 82 ] |
| 76 } | 83 } |
| OLD | NEW |