Escape the ampersand in extension names before showing in menu.
[chromium-blink-merge.git] / third_party / brotli / brotli.gyp
blob8e54f0345adb2ae2527ad62222ec3f99c707ba05
1 # Copyright 2013 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   'targets': [
7     {
8       'target_name': 'brotli',
9       'type': 'static_library',
10       'include_dirs': [
11         'src/brotli/dec',
12       ],
13       'sources': [
14         'src/brotli/dec/bit_reader.c',
15         'src/brotli/dec/bit_reader.h',
16         'src/brotli/dec/context.h',
17         'src/brotli/dec/decode.c',
18         'src/brotli/dec/decode.h',
19         'src/brotli/dec/dictionary.h',
20         'src/brotli/dec/huffman.c',
21         'src/brotli/dec/huffman.h',
22         'src/brotli/dec/prefix.h',
23         'src/brotli/dec/safe_malloc.c',
24         'src/brotli/dec/safe_malloc.h',
25         'src/brotli/dec/streams.c',
26         'src/brotli/dec/streams.h',
27         'src/brotli/dec/transform.h',
28         'src/brotli/dec/types.h',
29       ],
30     },
31   ],