summaryrefslogtreecommitdiff
path: root/nacl.gyp
blob: 3dd4c8ee35dd8792aa125576018566c7a08c7489 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Common entry point for all Skia executables running in NaCl
{
  'targets': [
    {
      'target_name': 'nacl_interface',
      'type': 'static_library',
      'dependencies': [
        'skia_lib.gyp:skia_lib',
      ],
      'include_dirs': [
        # For SkThreadUtils.h
        '../src/utils',
      ],
      'sources': [
        '../platform_tools/nacl/src/nacl_interface.cpp',
      ],
    },
  ],
}