| 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 27 matching lines...) Expand all Loading... |
| 38 public_deps = [ | 38 public_deps = [ |
| 39 "//components/metrics/proto", | 39 "//components/metrics/proto", |
| 40 ] | 40 ] |
| 41 deps = [ | 41 deps = [ |
| 42 "//base", | 42 "//base", |
| 43 "//components/resources", | 43 "//components/resources", |
| 44 "//components/search_engines", | 44 "//components/search_engines", |
| 45 "//components/strings", | 45 "//components/strings", |
| 46 "//components/url_fixer", | 46 "//components/url_fixer", |
| 47 "//components/variations", | 47 "//components/variations", |
| 48 "//components/variations/net:variations_http_provider", |
| 48 "//net", | 49 "//net", |
| 49 "//ui/base", | 50 "//ui/base", |
| 50 "//url", | 51 "//url", |
| 51 ] | 52 ] |
| 52 } | 53 } |
| 53 | 54 |
| 54 static_library("test_support") { | 55 static_library("test_support") { |
| 55 sources = [ | 56 sources = [ |
| 56 "test_scheme_classifier.cc", | 57 "test_scheme_classifier.cc", |
| 57 "test_scheme_classifier.h", | 58 "test_scheme_classifier.h", |
| (...skipping 18 matching lines...) Expand all Loading... |
| 76 "omnibox_field_trial_unittest.cc", | 77 "omnibox_field_trial_unittest.cc", |
| 77 ] | 78 ] |
| 78 | 79 |
| 79 deps = [ | 80 deps = [ |
| 80 ":omnibox", | 81 ":omnibox", |
| 81 ":test_support", | 82 ":test_support", |
| 82 "//testing/gmock", | 83 "//testing/gmock", |
| 83 "//testing/gtest", | 84 "//testing/gtest", |
| 84 ] | 85 ] |
| 85 } | 86 } |
| OLD | NEW |