OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'hb_directory': '../third_party/externals/harfbuzz', | 7 'hb_directory': '../third_party/externals/harfbuzz', |
8 }, | 8 }, |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
11 'target_name': 'harfbuzz', | 11 'target_name': 'harfbuzz', |
12 'type': 'static_library', | 12 'type': 'static_library', |
13 'defines': [ | 13 'defines': [ |
14 'HAVE_OT', | 14 'HAVE_OT', |
15 'HAVE_ICU', | 15 'HAVE_ICU', |
16 'HAVE_ICU_BUILTIN', | 16 'HAVE_ICU_BUILTIN', |
17 'HB_NO_MT', | 17 'HB_NO_MT', |
18 ], | 18 ], |
19 'sources': [ | 19 'sources': [ |
20 '<!@(python find.py <(hb_directory)/src "*.c*")', | 20 '<!@(python find.py <(hb_directory)/src "hb-*.c*")', |
21 ], | 21 ], |
22 'sources!': [ | 22 'sources!': [ |
23 '<(hb_directory)/src/hb-directwrite.cc', | 23 '<(hb_directory)/src/hb-directwrite.cc', |
24 '<(hb_directory)/src/hb-ft.cc', | 24 '<(hb_directory)/src/hb-ft.cc', |
25 '<(hb_directory)/src/hb-glib.cc', | 25 '<(hb_directory)/src/hb-glib.cc', |
26 '<(hb_directory)/src/hb-gobject-structs.cc', | 26 '<(hb_directory)/src/hb-gobject-structs.cc', |
27 '<(hb_directory)/src/hb-graphite2.cc', | 27 '<(hb_directory)/src/hb-graphite2.cc', |
28 '<(hb_directory)/src/hb-ucdn.cc', | 28 '<(hb_directory)/src/hb-ucdn.cc', |
29 '<(hb_directory)/src/hb-uniscribe.cc', | 29 '<(hb_directory)/src/hb-uniscribe.cc', |
30 ], | 30 ], |
(...skipping 21 matching lines...) Expand all Loading... |
52 { | 52 { |
53 'defines': [ 'HAVE_CORETEXT', ], | 53 'defines': [ 'HAVE_CORETEXT', ], |
54 }, { | 54 }, { |
55 'sources!': [ '<(hb_directory)/src/hb-coretext.cc', ], | 55 'sources!': [ '<(hb_directory)/src/hb-coretext.cc', ], |
56 } | 56 } |
57 ], | 57 ], |
58 ], | 58 ], |
59 }, | 59 }, |
60 ], | 60 ], |
61 } | 61 } |
OLD | NEW |