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

Side by Side Diff: components/omnibox.gypi

Issue 443043003: Rename components/autocomplete to components/omnibox (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase 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
« no previous file with comments | « components/metrics/proto/omnibox_event.proto ('k') | components/omnibox/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 {
6 'targets': [
7 {
8 # GN version: //components/omnibox
9 'target_name': 'omnibox',
10 'type': 'static_library',
11 'dependencies': [
12 '../base/base.gyp:base',
13 '../net/net.gyp:net',
14 '../url/url.gyp:url_lib',
15 'search_engines',
16 'component_metrics_proto',
17 'components_resources.gyp:components_resources',
18 'url_fixer',
19 ],
20 'include_dirs': [
21 '..',
22 ],
23 'sources': [
24 # Note: sources list duplicated in GN build.
25 'omnibox/autocomplete_input.cc',
26 'omnibox/autocomplete_input.h',
27 'omnibox/autocomplete_match.cc',
28 'omnibox/autocomplete_match.h',
29 'omnibox/autocomplete_match_type.cc',
30 'omnibox/autocomplete_match_type.h',
31 'omnibox/autocomplete_provider.cc',
32 'omnibox/autocomplete_provider.h',
33 'omnibox/autocomplete_provider_listener.h',
34 'omnibox/autocomplete_scheme_classifier.h',
35 'omnibox/search_suggestion_parser.cc',
36 'omnibox/search_suggestion_parser.h',
37 'omnibox/url_prefix.cc',
38 'omnibox/url_prefix.h',
39 ],
40 },
41 {
42 # GN version: //components/omnibox:test_support
43 'target_name': 'omnibox_test_support',
44 'type': 'static_library',
45 'dependencies': [
46 '../base/base.gyp:base',
47 'omnibox',
48 'component_metrics_proto',
49 ],
50 'include_dirs': [
51 '..',
52 ],
53 'sources': [
54 # Note: sources list duplicated in GN build.
55 'omnibox/test_scheme_classifier.cc',
56 'omnibox/test_scheme_classifier.h',
57 ],
58 },
59 ],
60 }
OLDNEW
« no previous file with comments | « components/metrics/proto/omnibox_event.proto ('k') | components/omnibox/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698