| 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 23 matching lines...) Expand all Loading... |
| 67 source_set("unit_tests") { | 69 source_set("unit_tests") { |
| 68 testonly = true | 70 testonly = true |
| 69 sources = [ | 71 sources = [ |
| 70 "answers_cache_unittest.cc", | 72 "answers_cache_unittest.cc", |
| 71 "autocomplete_input_unittest.cc", | 73 "autocomplete_input_unittest.cc", |
| 72 "autocomplete_match_unittest.cc", | 74 "autocomplete_match_unittest.cc", |
| 73 "autocomplete_result_unittest.cc", | 75 "autocomplete_result_unittest.cc", |
| 74 "base_search_provider_unittest.cc", | 76 "base_search_provider_unittest.cc", |
| 75 "keyword_provider_unittest.cc", | 77 "keyword_provider_unittest.cc", |
| 76 "omnibox_field_trial_unittest.cc", | 78 "omnibox_field_trial_unittest.cc", |
| 79 "suggestion_answer_unittest.cc", |
| 77 ] | 80 ] |
| 78 | 81 |
| 79 deps = [ | 82 deps = [ |
| 80 ":omnibox", | 83 ":omnibox", |
| 81 ":test_support", | 84 ":test_support", |
| 82 "//testing/gmock", | 85 "//testing/gmock", |
| 83 "//testing/gtest", | 86 "//testing/gtest", |
| 84 ] | 87 ] |
| 85 } | 88 } |
| OLD | NEW |