OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 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 source_set("brotli") { | 5 source_set("brotli") { |
6 sources = [ | 6 sources = [ |
7 "src/brotli/dec/bit_reader.c", | 7 "src/brotli/dec/bit_reader.c", |
8 "src/brotli/dec/bit_reader.h", | 8 "src/brotli/dec/bit_reader.h", |
9 "src/brotli/dec/context.h", | 9 "src/brotli/dec/context.h", |
10 "src/brotli/dec/decode.c", | 10 "src/brotli/dec/decode.c", |
(...skipping 24 matching lines...) Expand all Loading... |
35 "src/woff2/table_tags.cc", | 35 "src/woff2/table_tags.cc", |
36 "src/woff2/table_tags.h", | 36 "src/woff2/table_tags.h", |
37 "src/woff2/woff2_common.h", | 37 "src/woff2/woff2_common.h", |
38 "src/woff2/woff2_dec.cc", | 38 "src/woff2/woff2_dec.cc", |
39 "src/woff2/woff2_dec.h", | 39 "src/woff2/woff2_dec.h", |
40 ] | 40 ] |
41 | 41 |
42 configs -= [ "//build/config/compiler:chromium_code" ] | 42 configs -= [ "//build/config/compiler:chromium_code" ] |
43 configs += [ "//build/config/compiler:no_chromium_code" ] | 43 configs += [ "//build/config/compiler:no_chromium_code" ] |
44 | 44 |
45 deps = [ ":brotli" ] | 45 deps = [ |
| 46 ":brotli", |
| 47 ] |
46 | 48 |
47 include_dirs = [ | 49 include_dirs = [ |
48 "src/brotli/dec", | 50 "src/brotli/dec", |
49 "src/woff2", | 51 "src/woff2", |
50 ] | 52 ] |
51 } | 53 } |
OLD | NEW |