| 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", |
| 16 "autocomplete_result.h", |
| 15 "autocomplete_scheme_classifier.h", | 17 "autocomplete_scheme_classifier.h", |
| 16 "omnibox_field_trial.cc", | 18 "omnibox_field_trial.cc", |
| 17 "omnibox_field_trial.h", | 19 "omnibox_field_trial.h", |
| 18 "omnibox_switches.cc", | 20 "omnibox_switches.cc", |
| 19 "omnibox_switches.h", | 21 "omnibox_switches.h", |
| 20 "search_suggestion_parser.cc", | 22 "search_suggestion_parser.cc", |
| 21 "search_suggestion_parser.h", | 23 "search_suggestion_parser.h", |
| 22 "url_prefix.cc", | 24 "url_prefix.cc", |
| 23 "url_prefix.h", | 25 "url_prefix.h", |
| 24 ] | 26 ] |
| (...skipping 23 matching lines...) Expand all Loading... |
| 48 ":omnibox", | 50 ":omnibox", |
| 49 "//base", | 51 "//base", |
| 50 "//components/metrics/proto", | 52 "//components/metrics/proto", |
| 51 ] | 53 ] |
| 52 } | 54 } |
| 53 | 55 |
| 54 source_set("unit_tests") { | 56 source_set("unit_tests") { |
| 55 sources = [ | 57 sources = [ |
| 56 "autocomplete_input_unittest.cc", | 58 "autocomplete_input_unittest.cc", |
| 57 "autocomplete_match_unittest.cc", | 59 "autocomplete_match_unittest.cc", |
| 60 "autocomplete_result_unittest.cc", |
| 58 "omnibox_field_trial_unittest.cc", | 61 "omnibox_field_trial_unittest.cc", |
| 59 ] | 62 ] |
| 60 | 63 |
| 61 deps = [ | 64 deps = [ |
| 62 ":omnibox", | 65 ":omnibox", |
| 63 ":test_support", | 66 ":test_support", |
| 64 "//testing/gtest", | 67 "//testing/gtest", |
| 65 ] | 68 ] |
| 66 } | 69 } |
| OLD | NEW |