Chromium Code Reviews| OLD | NEW |
|---|---|
| (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 } | |
| OLD | NEW |