aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/harfbuzz/harfbuzz.gyp
blob: c2ed2f6e50bb52534a30c3a967b993af32593831 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# Copyright (c) 2009 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.

{
  'targets': [
    {
      'target_name': 'harfbuzz',
      'type': '<(library)',
      'sources': [
        'src/harfbuzz-buffer.c',
        'src/harfbuzz-stream.c',
        'src/harfbuzz-dump.c',
        'src/harfbuzz-gdef.c',
        'src/harfbuzz-gpos.c',
        'src/harfbuzz-gsub.c',
        'src/harfbuzz-impl.c',
        'src/harfbuzz-open.c',
        'src/harfbuzz-shaper.cpp',
        'src/harfbuzz-tibetan.c',
        'src/harfbuzz-khmer.c',
        'src/harfbuzz-indic.cpp',
        'src/harfbuzz-hebrew.c',
        'src/harfbuzz-arabic.c',
        'src/harfbuzz-hangul.c',
        'src/harfbuzz-myanmar.c',
        'src/harfbuzz-thai.c',
      ],
      'include_dirs': [
        'src',
      ],
      'direct_dependent_settings': {
        'include_dirs': [
          'src',
        ],
      },
      'dependencies': [
        '../../build/linux/system.gyp:freetype2',
      ],
    },
    {
      'target_name': 'harfbuzz_interface',
      'type': '<(library)',
      'sources': [
        'contrib/harfbuzz-freetype.c',
        'contrib/harfbuzz-unicode.c',
        'contrib/harfbuzz-unicode-tables.c',
      ],
      'include_dirs': [
        'src',
        'contrib',
      ],
      'direct_dependent_settings': {
        'include_dirs': [
          'contrib',
        ],
      },
      'dependencies': [
        '../../build/linux/system.gyp:freetype2',
      ],
    },
  ],
}

# Local Variables:
# tab-width:2
# indent-tabs-mode:nil
# End:
# vim: set expandtab tabstop=2 shiftwidth=2: