Move content_settings_pattern and content_settings_pattern_parser to the content_sett...
[chromium-blink-merge.git] / third_party / opus / opus_nacl.gyp
bloba93a817b7bf3afce20526cea095aa7f469ed2039
1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
6   'variables': {
7     'werror': '',
8   },
9   'includes': [
10     '../../native_client/build/untrusted.gypi',
11   ],
12   'targets': [
13     {
14       'target_name': 'opus_nacl',
15       'type': 'none',
16       'variables': {
17         'nlib_target': 'libopus_nacl.a',
18         'build_glibc': 0,
19         'build_newlib': 0,
20         'build_pnacl_newlib': 1,
21       },
22       'dependencies': [
23         '<(DEPTH)/native_client/tools.gyp:prep_toolchain',
24       ],
25       'defines': [
26         'OPUS_BUILD',
27         'OPUS_EXPORT=',
28         'HAVE_LRINT',
29         'HAVE_LRINTF',
30         'VAR_ARRAYS',
31       ],
32       'include_dirs': [
33         'src/celt',
34         'src/include',
35         'src/silk',
36         'src/silk/float',
37       ],
38       'includes': ['opus_srcs.gypi', ],
39       'sources': [
40         '<@(opus_common_sources)',
41         '<@(opus_float_sources)',
42       ],
43     },  # end of target 'opus_nacl'
44   ],