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("autocomplete") { | 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_scheme_classifier.h", | 15 "autocomplete_scheme_classifier.h", |
(...skipping 16 matching lines...) Expand all Loading... |
32 ] | 32 ] |
33 } | 33 } |
34 | 34 |
35 static_library("test_support") { | 35 static_library("test_support") { |
36 sources = [ | 36 sources = [ |
37 "test_scheme_classifier.cc", | 37 "test_scheme_classifier.cc", |
38 "test_scheme_classifier.h", | 38 "test_scheme_classifier.h", |
39 ] | 39 ] |
40 | 40 |
41 deps = [ | 41 deps = [ |
42 ":autocomplete", | 42 ":omnibox", |
43 "//base", | 43 "//base", |
44 "//components/metrics/proto", | 44 "//components/metrics/proto", |
45 ] | 45 ] |
46 } | 46 } |
47 | 47 |
48 source_set("unit_tests") { | 48 source_set("unit_tests") { |
49 sources = [ | 49 sources = [ |
50 "autocomplete_input_unittest.cc", | 50 "autocomplete_input_unittest.cc", |
51 "autocomplete_match_unittest.cc", | 51 "autocomplete_match_unittest.cc", |
52 ] | 52 ] |
53 | 53 |
54 deps = [ | 54 deps = [ |
55 ":autocomplete", | 55 ":omnibox", |
56 ":test_support", | 56 ":test_support", |
57 "//testing/gtest", | 57 "//testing/gtest", |
58 ] | 58 ] |
59 } | 59 } |
OLD | NEW |