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

Unified Diff: content/browser/hyphenation/BUILD.gn

Issue 2113933003: Add mojo interface to load hyphenation dictionaries on Android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Moved to content/browser Created 4 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
Index: content/browser/hyphenation/BUILD.gn
diff --git a/content/browser/hyphenation/BUILD.gn b/content/browser/hyphenation/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..2da52c790c236439c85d434ca58fbde59735b1ca
--- /dev/null
+++ b/content/browser/hyphenation/BUILD.gn
@@ -0,0 +1,23 @@
+# Copyright 2016 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")
+import("//mojo/public/tools/bindings/mojom.gni")
+
+component("hyphenation") {
jam 2016/07/12 14:51:12 no need to create a separate component (i.e. .so/.
+ output_name = "hyphenation"
+
+ sources = [
+ "hyphenation_impl.cc",
+ "hyphenation_impl.h",
+ ]
+
+ defines = [ "HYPHENATION_IMPLEMENTATION" ]
+
+ deps = [
+ "//base",
+ "//mojo/public/cpp/bindings",
+ "//third_party/WebKit/public:mojo_bindings",
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698