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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 # Copyright 2016 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 import("//build/config/features.gni")
6 import("//mojo/public/tools/bindings/mojom.gni")
7
8 component("hyphenation") {
jam 2016/07/12 14:51:12 no need to create a separate component (i.e. .so/.
9 output_name = "hyphenation"
10
11 sources = [
12 "hyphenation_impl.cc",
13 "hyphenation_impl.h",
14 ]
15
16 defines = [ "HYPHENATION_IMPLEMENTATION" ]
17
18 deps = [
19 "//base",
20 "//mojo/public/cpp/bindings",
21 "//third_party/WebKit/public:mojo_bindings",
22 ]
23 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698