OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 { | 5 { |
6 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'woff2_dec', | 8 'target_name': 'woff2_dec', |
9 'type': 'static_library', | 9 'type': 'static_library', |
| 10 'cflags': [ |
| 11 '-Wno-unused-function' |
| 12 ], |
10 'include_dirs': [ | 13 'include_dirs': [ |
11 'src', | 14 'src', |
12 '<(DEPTH)/third_party/brotli/dec', | 15 '<(DEPTH)/third_party/brotli/dec', |
13 ], | 16 ], |
14 'dependencies': [ | 17 'dependencies': [ |
15 '<(DEPTH)/third_party/brotli/brotli.gyp:brotli', | 18 '<(DEPTH)/third_party/brotli/brotli.gyp:brotli', |
16 ], | 19 ], |
17 'sources': [ | 20 'sources': [ |
18 'src/buffer.h', | 21 'src/buffer.h', |
19 'src/round.h', | 22 'src/round.h', |
20 'src/store_bytes.h', | 23 'src/store_bytes.h', |
21 'src/table_tags.cc', | 24 'src/table_tags.cc', |
22 'src/table_tags.h', | 25 'src/table_tags.h', |
23 'src/variable_length.cc', | 26 'src/variable_length.cc', |
24 'src/variable_length.h', | 27 'src/variable_length.h', |
25 'src/woff2_common.cc', | 28 'src/woff2_common.cc', |
26 'src/woff2_common.h', | 29 'src/woff2_common.h', |
27 'src/woff2_dec.cc', | 30 'src/woff2_dec.cc', |
28 'src/woff2_dec.h', | 31 'src/woff2_dec.h', |
| 32 'src/woff2_out.cc', |
| 33 'src/woff2_out.h', |
29 ], | 34 ], |
30 # TODO(ksakamoto): http://crbug.com/167187 | 35 # TODO(ksakamoto): http://crbug.com/167187 |
31 'msvs_disabled_warnings': [ | 36 'msvs_disabled_warnings': [ |
32 4267, | 37 4267, |
33 ], | 38 ], |
34 }, | 39 }, |
35 ], | 40 ], |
36 } | 41 } |
OLD | NEW |