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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/metrics/proto/omnibox_event.proto ('k') | components/omnibox/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/omnibox.gypi
diff --git a/components/omnibox.gypi b/components/omnibox.gypi
new file mode 100644
index 0000000000000000000000000000000000000000..6721110168cbc658022daa61a224e8aff5dab332
--- /dev/null
+++ b/components/omnibox.gypi
@@ -0,0 +1,60 @@
+# Copyright 2014 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+{
+ 'targets': [
+ {
+ # GN version: //components/omnibox
+ 'target_name': 'omnibox',
+ 'type': 'static_library',
+ 'dependencies': [
+ '../base/base.gyp:base',
+ '../net/net.gyp:net',
+ '../url/url.gyp:url_lib',
+ 'search_engines',
+ 'component_metrics_proto',
+ 'components_resources.gyp:components_resources',
+ 'url_fixer',
+ ],
+ 'include_dirs': [
+ '..',
+ ],
+ 'sources': [
+ # Note: sources list duplicated in GN build.
+ 'omnibox/autocomplete_input.cc',
+ 'omnibox/autocomplete_input.h',
+ 'omnibox/autocomplete_match.cc',
+ 'omnibox/autocomplete_match.h',
+ 'omnibox/autocomplete_match_type.cc',
+ 'omnibox/autocomplete_match_type.h',
+ 'omnibox/autocomplete_provider.cc',
+ 'omnibox/autocomplete_provider.h',
+ 'omnibox/autocomplete_provider_listener.h',
+ 'omnibox/autocomplete_scheme_classifier.h',
+ 'omnibox/search_suggestion_parser.cc',
+ 'omnibox/search_suggestion_parser.h',
+ 'omnibox/url_prefix.cc',
+ 'omnibox/url_prefix.h',
+ ],
+ },
+ {
+ # GN version: //components/omnibox:test_support
+ 'target_name': 'omnibox_test_support',
+ 'type': 'static_library',
+ 'dependencies': [
+ '../base/base.gyp:base',
+ 'omnibox',
+ 'component_metrics_proto',
+ ],
+ 'include_dirs': [
+ '..',
+ ],
+ 'sources': [
+ # Note: sources list duplicated in GN build.
+ 'omnibox/test_scheme_classifier.cc',
+ 'omnibox/test_scheme_classifier.h',
+ ],
+ },
+ ],
+}
« 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