OLD | NEW |
---|---|
(Empty) | |
1 # Copyright 2016 Google Inc. | |
2 # | |
3 # Use of this source code is governed by a BSD-style license that can be | |
4 # found in the LICENSE file. | |
5 | |
6 declare_args() { | |
7 } | |
8 | |
9 import("../third_party.gni") | |
10 | |
11 third_party("harfbuzz") { | |
12 public_include_dirs = [ ".", "../externals/harfbuzz/src" ] | |
13 defines = [ | |
14 "HAVE_ICU", | |
15 "HAVE_ICU_BUILTIN", | |
16 "HAVE_OT", | |
17 "HB_NO_MT", | |
18 ] | |
19 include_dirs = [ ".", "../externals/harfbuzz/src" ] | |
mtklein
2016/08/03 20:06:50
no need
hal.canary
2016/08/03 21:36:00
Done.
| |
20 deps = [ | |
21 "../icu", | |
mtklein
2016/08/03 20:06:50
"//third_party/icu"
hal.canary
2016/08/03 21:36:00
Done.
| |
22 ] | |
23 sources = [ | |
24 "../externals/harfbuzz/src/hb-blob.cc", | |
25 "../externals/harfbuzz/src/hb-buffer-serialize.cc", | |
26 "../externals/harfbuzz/src/hb-buffer.cc", | |
27 "../externals/harfbuzz/src/hb-common.cc", | |
28 "../externals/harfbuzz/src/hb-face.cc", | |
29 "../externals/harfbuzz/src/hb-fallback-shape.cc", | |
30 "../externals/harfbuzz/src/hb-font.cc", | |
31 "../externals/harfbuzz/src/hb-icu.cc", | |
32 "../externals/harfbuzz/src/hb-ot-font.cc", | |
33 "../externals/harfbuzz/src/hb-ot-layout.cc", | |
34 "../externals/harfbuzz/src/hb-ot-map.cc", | |
35 "../externals/harfbuzz/src/hb-ot-shape-complex-arabic.cc", | |
36 "../externals/harfbuzz/src/hb-ot-shape-complex-default.cc", | |
37 "../externals/harfbuzz/src/hb-ot-shape-complex-hangul.cc", | |
38 "../externals/harfbuzz/src/hb-ot-shape-complex-hebrew.cc", | |
39 "../externals/harfbuzz/src/hb-ot-shape-complex-indic-table.cc", | |
40 "../externals/harfbuzz/src/hb-ot-shape-complex-indic.cc", | |
41 "../externals/harfbuzz/src/hb-ot-shape-complex-myanmar.cc", | |
42 "../externals/harfbuzz/src/hb-ot-shape-complex-thai.cc", | |
43 "../externals/harfbuzz/src/hb-ot-shape-complex-tibetan.cc", | |
44 "../externals/harfbuzz/src/hb-ot-shape-complex-use-table.cc", | |
45 "../externals/harfbuzz/src/hb-ot-shape-complex-use.cc", | |
46 "../externals/harfbuzz/src/hb-ot-shape-fallback.cc", | |
47 "../externals/harfbuzz/src/hb-ot-shape-normalize.cc", | |
48 "../externals/harfbuzz/src/hb-ot-shape.cc", | |
49 "../externals/harfbuzz/src/hb-ot-tag.cc", | |
50 "../externals/harfbuzz/src/hb-set.cc", | |
51 "../externals/harfbuzz/src/hb-shape-plan.cc", | |
52 "../externals/harfbuzz/src/hb-shape.cc", | |
53 "../externals/harfbuzz/src/hb-shaper.cc", | |
54 "../externals/harfbuzz/src/hb-unicode.cc", | |
55 "../externals/harfbuzz/src/hb-warning.cc", | |
56 ] | |
57 if (is_mac) { | |
58 sources += [ | |
59 "../externals/harfbuzz/src/hb-coretext.cc", | |
60 ] | |
61 } | |
mtklein
2016/08/03 20:06:50
testonly?
hal.canary
2016/08/03 21:36:00
Done.
| |
62 } | |
OLD | NEW |