| 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 "autocomplete_input.cc", | 7 "autocomplete_input.cc", |
| 8 "autocomplete_input.h", | 8 "autocomplete_input.h", |
| 9 "autocomplete_match.cc", | 9 "autocomplete_match.cc", |
| 10 "autocomplete_match.h", | 10 "autocomplete_match.h", |
| 11 "autocomplete_match_type.cc", | 11 "autocomplete_match_type.cc", |
| 12 "autocomplete_match_type.h", | 12 "autocomplete_match_type.h", |
| 13 "autocomplete_provider.cc", | 13 "autocomplete_provider.cc", |
| 14 "autocomplete_provider.h", | 14 "autocomplete_provider.h", |
| 15 "autocomplete_result.cc", | 15 "autocomplete_result.cc", |
| 16 "autocomplete_result.h", | 16 "autocomplete_result.h", |
| 17 "autocomplete_scheme_classifier.h", | 17 "autocomplete_scheme_classifier.h", |
| 18 "keyword_extensions_delegate.cc", |
| 19 "keyword_extensions_delegate.h", |
| 20 "keyword_provider.cc", |
| 21 "keyword_provider.h", |
| 18 "omnibox_field_trial.cc", | 22 "omnibox_field_trial.cc", |
| 19 "omnibox_field_trial.h", | 23 "omnibox_field_trial.h", |
| 20 "omnibox_switches.cc", | 24 "omnibox_switches.cc", |
| 21 "omnibox_switches.h", | 25 "omnibox_switches.h", |
| 22 "search_suggestion_parser.cc", | 26 "search_suggestion_parser.cc", |
| 23 "search_suggestion_parser.h", | 27 "search_suggestion_parser.h", |
| 24 "url_prefix.cc", | 28 "url_prefix.cc", |
| 25 "url_prefix.h", | 29 "url_prefix.h", |
| 26 ] | 30 ] |
| 27 | 31 |
| 28 deps = [ | 32 deps = [ |
| 29 "//base", | 33 "//base", |
| 30 "//components/metrics/proto", | 34 "//components/metrics/proto", |
| 31 "//components/resources", | 35 "//components/resources", |
| 32 "//components/search_engines", | 36 "//components/search_engines", |
| 37 "//components/strings", |
| 33 "//components/url_fixer", | 38 "//components/url_fixer", |
| 34 "//net", | 39 "//net", |
| 40 "//ui/base", |
| 35 "//url", | 41 "//url", |
| 36 ] | 42 ] |
| 37 | 43 |
| 38 forward_dependent_configs_from = [ | 44 forward_dependent_configs_from = [ |
| 39 "//components/metrics/proto", | 45 "//components/metrics/proto", |
| 40 ] | 46 ] |
| 41 } | 47 } |
| 42 | 48 |
| 43 static_library("test_support") { | 49 static_library("test_support") { |
| 44 sources = [ | 50 sources = [ |
| 45 "test_scheme_classifier.cc", | 51 "test_scheme_classifier.cc", |
| 46 "test_scheme_classifier.h", | 52 "test_scheme_classifier.h", |
| 47 ] | 53 ] |
| 48 | 54 |
| 49 deps = [ | 55 deps = [ |
| 50 ":omnibox", | 56 ":omnibox", |
| 51 "//base", | 57 "//base", |
| 52 "//components/metrics/proto", | 58 "//components/metrics/proto", |
| 53 ] | 59 ] |
| 54 } | 60 } |
| 55 | 61 |
| 56 source_set("unit_tests") { | 62 source_set("unit_tests") { |
| 57 sources = [ | 63 sources = [ |
| 58 "autocomplete_input_unittest.cc", | 64 "autocomplete_input_unittest.cc", |
| 59 "autocomplete_match_unittest.cc", | 65 "autocomplete_match_unittest.cc", |
| 60 "autocomplete_result_unittest.cc", | 66 "autocomplete_result_unittest.cc", |
| 67 "keyword_provider_unittest.cc", |
| 61 "omnibox_field_trial_unittest.cc", | 68 "omnibox_field_trial_unittest.cc", |
| 62 ] | 69 ] |
| 63 | 70 |
| 64 deps = [ | 71 deps = [ |
| 65 ":omnibox", | 72 ":omnibox", |
| 66 ":test_support", | 73 ":test_support", |
| 67 "//testing/gtest", | 74 "//testing/gtest", |
| 68 ] | 75 ] |
| 69 } | 76 } |
| OLD | NEW |