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
|
# Copyright 2013 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': 'brotli',
'type': 'static_library',
'include_dirs': [
'src/brotli/dec',
],
'sources': [
'src/brotli/dec/bit_reader.c',
'src/brotli/dec/bit_reader.h',
'src/brotli/dec/context.h',
'src/brotli/dec/decode.c',
'src/brotli/dec/decode.h',
'src/brotli/dec/huffman.c',
'src/brotli/dec/huffman.h',
'src/brotli/dec/prefix.h',
'src/brotli/dec/safe_malloc.c',
'src/brotli/dec/safe_malloc.h',
'src/brotli/dec/streams.c',
'src/brotli/dec/streams.h',
'src/brotli/dec/types.h',
],
},
],
}
|