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

Unified Diff: components/translate/content/browser/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/translate/BUILD.gn ('k') | components/translate/content/common/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/translate/content/browser/BUILD.gn
diff --git a/components/translate/content/browser/BUILD.gn b/components/translate/content/browser/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..d94c3387f5a4e56ca0524e88546fa254e044638e
--- /dev/null
+++ b/components/translate/content/browser/BUILD.gn
@@ -0,0 +1,31 @@
+# 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.
+
+import("//build/config/features.gni")
+
+static_library("browser") {
+ sources = [
+ "browser_cld_data_provider.h",
+ "content_translate_driver.cc",
+ "content_translate_driver.h",
+ ]
+
+ deps = [
+ "//base",
+ "//components/translate/core/browser",
+ "//content/public/browser",
+ ]
+
+ if (cld2_data_source == "standalone" || cld2_data_source == "component") {
+ sources += [
+ "data_file_browser_cld_data_provider.cc",
+ "data_file_browser_cld_data_provider.h",
+ ]
+ } else if (cld2_data_source == "static") {
+ sources += [
+ "static_browser_cld_data_provider.cc",
+ "static_browser_cld_data_provider.h",
+ ]
+ }
+}
« no previous file with comments | « components/translate/BUILD.gn ('k') | components/translate/content/common/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698