1# Copyright 2014 The LibYuv Project Authors. All rights reserved.
2#
3# Use of this source code is governed by a BSD-style license
4# that can be found in the LICENSE file in the root of the source
5# tree. An additional intellectual property rights grant can be found
6# in the file PATENTS. All contributing project authors may
7# be found in the AUTHORS file in the root of the source tree.
8
9{
10  'includes': [
11    'libyuv.gypi',
12    '../../native_client/build/untrusted.gypi',
13  ],
14  'targets': [
15    {
16      'target_name': 'libyuv_nacl',
17      'type': 'none',
18      'variables': {
19        'nlib_target': 'libyuv_nacl.a',
20        'build_glibc': 0,
21        'build_newlib': 0,
22        'build_pnacl_newlib': 1,
23      },
24      'include_dirs': [
25        'include',
26      ],
27      'direct_dependent_settings': {
28        'include_dirs': [
29          'include',
30        ],
31      },
32      'sources': [
33        '<@(libyuv_sources)',
34      ],
35    },  # target libyuv_nacl
36  ]
37}
38