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

Unified Diff: components/autocomplete/BUILD.gn

Issue 382663002: Add components and CLD to GN build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: android Created 6 years, 5 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/autocomplete.gypi ('k') | components/captive_portal.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/autocomplete/BUILD.gn
diff --git a/components/autocomplete/BUILD.gn b/components/autocomplete/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..8341faf0baf566cae355522867a7a14c5c8f4e14
--- /dev/null
+++ b/components/autocomplete/BUILD.gn
@@ -0,0 +1,34 @@
+# 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.
+
+static_library("autocomplete") {
+ sources = [
+ "autocomplete_input.cc",
+ "autocomplete_input.h",
+ "autocomplete_scheme_classifier.h",
+ "url_prefix.cc",
+ "url_prefix.h",
+ ]
+
+ deps = [
+ "//base",
+ "//components/metrics/proto",
+ "//components/url_fixer",
+ "//net",
+ "//url",
+ ]
+}
+
+static_library("test_support") {
+ sources = [
+ "test_scheme_classifier.cc",
+ "test_scheme_classifier.h",
+ ]
+
+ deps = [
+ ":autocomplete",
+ "//base",
+ "//components/metrics/proto",
+ ]
+}
« no previous file with comments | « components/autocomplete.gypi ('k') | components/captive_portal.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698