| 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 17 matching lines...) Expand all Loading... |
| 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 "url_prefix.cc", | 34 "url_prefix.cc", |
| 35 "url_prefix.h", | 35 "url_prefix.h", |
| 36 ] | 36 ] |
| 37 | 37 |
| 38 public_deps = [ |
| 39 "//components/metrics/proto", |
| 40 ] |
| 38 deps = [ | 41 deps = [ |
| 39 "//base", | 42 "//base", |
| 40 "//components/metrics/proto", | |
| 41 "//components/resources", | 43 "//components/resources", |
| 42 "//components/search_engines", | 44 "//components/search_engines", |
| 43 "//components/strings", | 45 "//components/strings", |
| 44 "//components/url_fixer", | 46 "//components/url_fixer", |
| 45 "//components/variations", | 47 "//components/variations", |
| 46 "//net", | 48 "//net", |
| 47 "//ui/base", | 49 "//ui/base", |
| 48 "//url", | 50 "//url", |
| 49 ] | 51 ] |
| 50 | |
| 51 forward_dependent_configs_from = [ | |
| 52 "//components/metrics/proto", | |
| 53 ] | |
| 54 } | 52 } |
| 55 | 53 |
| 56 static_library("test_support") { | 54 static_library("test_support") { |
| 57 sources = [ | 55 sources = [ |
| 58 "test_scheme_classifier.cc", | 56 "test_scheme_classifier.cc", |
| 59 "test_scheme_classifier.h", | 57 "test_scheme_classifier.h", |
| 60 ] | 58 ] |
| 61 | 59 |
| 62 deps = [ | 60 deps = [ |
| 63 ":omnibox", | 61 ":omnibox", |
| (...skipping 12 matching lines...) Expand all Loading... |
| 76 "keyword_provider_unittest.cc", | 74 "keyword_provider_unittest.cc", |
| 77 "omnibox_field_trial_unittest.cc", | 75 "omnibox_field_trial_unittest.cc", |
| 78 ] | 76 ] |
| 79 | 77 |
| 80 deps = [ | 78 deps = [ |
| 81 ":omnibox", | 79 ":omnibox", |
| 82 ":test_support", | 80 ":test_support", |
| 83 "//testing/gtest", | 81 "//testing/gtest", |
| 84 ] | 82 ] |
| 85 } | 83 } |
| OLD | NEW |