Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1228)

Side by Side Diff: components/omnibox/BUILD.gn

Issue 469623004: Move KeywordProvider to components/omnibox (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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", 15 "autocomplete_result.cc",
16 "autocomplete_result.h", 16 "autocomplete_result.h",
17 "autocomplete_scheme_classifier.h", 17 "autocomplete_scheme_classifier.h",
18 "keyword_extensions_delegate.cc",
19 "keyword_extensions_delegate.h",
20 "keyword_provider.cc",
21 "keyword_provider.h",
18 "omnibox_field_trial.cc", 22 "omnibox_field_trial.cc",
19 "omnibox_field_trial.h", 23 "omnibox_field_trial.h",
20 "omnibox_switches.cc", 24 "omnibox_switches.cc",
21 "omnibox_switches.h", 25 "omnibox_switches.h",
22 "search_suggestion_parser.cc", 26 "search_suggestion_parser.cc",
23 "search_suggestion_parser.h", 27 "search_suggestion_parser.h",
24 "url_prefix.cc", 28 "url_prefix.cc",
25 "url_prefix.h", 29 "url_prefix.h",
26 ] 30 ]
27 31
28 deps = [ 32 deps = [
29 "//base", 33 "//base",
30 "//components/metrics/proto", 34 "//components/metrics/proto",
31 "//components/resources", 35 "//components/resources",
32 "//components/search_engines", 36 "//components/search_engines",
37 "//components/strings",
33 "//components/url_fixer", 38 "//components/url_fixer",
34 "//net", 39 "//net",
40 "//ui/base",
35 "//url", 41 "//url",
36 ] 42 ]
37 43
38 forward_dependent_configs_from = [ 44 forward_dependent_configs_from = [
39 "//components/metrics/proto", 45 "//components/metrics/proto",
40 ] 46 ]
41 } 47 }
42 48
43 static_library("test_support") { 49 static_library("test_support") {
44 sources = [ 50 sources = [
(...skipping 15 matching lines...) Expand all
60 "autocomplete_result_unittest.cc", 66 "autocomplete_result_unittest.cc",
61 "omnibox_field_trial_unittest.cc", 67 "omnibox_field_trial_unittest.cc",
62 ] 68 ]
63 69
64 deps = [ 70 deps = [
65 ":omnibox", 71 ":omnibox",
66 ":test_support", 72 ":test_support",
67 "//testing/gtest", 73 "//testing/gtest",
68 ] 74 ]
69 } 75 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698