OLD | NEW |
---|---|
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
(...skipping 11 matching lines...) Expand all Loading... | |
22 'open-vcdiff/src/checksum.h', | 22 'open-vcdiff/src/checksum.h', |
23 'open-vcdiff/src/codetable.cc', | 23 'open-vcdiff/src/codetable.cc', |
24 'open-vcdiff/src/codetable.h', | 24 'open-vcdiff/src/codetable.h', |
25 'open-vcdiff/src/compile_assert.h', | 25 'open-vcdiff/src/compile_assert.h', |
26 'open-vcdiff/src/decodetable.cc', | 26 'open-vcdiff/src/decodetable.cc', |
27 'open-vcdiff/src/decodetable.h', | 27 'open-vcdiff/src/decodetable.h', |
28 'open-vcdiff/src/encodetable.cc', | 28 'open-vcdiff/src/encodetable.cc', |
29 'open-vcdiff/src/encodetable.h', | 29 'open-vcdiff/src/encodetable.h', |
30 'open-vcdiff/src/google/output_string.h', | 30 'open-vcdiff/src/google/output_string.h', |
31 'open-vcdiff/src/google/vcdecoder.h', | 31 'open-vcdiff/src/google/vcdecoder.h', |
32 'open-vcdiff/src/google/vcencoder.h', | |
32 'open-vcdiff/src/headerparser.cc', | 33 'open-vcdiff/src/headerparser.cc', |
33 'open-vcdiff/src/headerparser.h', | 34 'open-vcdiff/src/headerparser.h', |
34 'open-vcdiff/src/instruction_map.cc', | 35 'open-vcdiff/src/instruction_map.cc', |
35 'open-vcdiff/src/instruction_map.h', | 36 'open-vcdiff/src/instruction_map.h', |
37 'open-vcdiff/src/jsonwriter.h', | |
jar (doing other things)
2014/07/31 23:19:23
I didn't think to read this carefully.... but sinc
Randy Smith (Not in Mondays)
2014/08/11 20:33:25
To be explicit, the things I need sdch/OWNERS revi
| |
38 'open-vcdiff/src/jsonwriter.cc', | |
36 'open-vcdiff/src/rolling_hash.h', | 39 'open-vcdiff/src/rolling_hash.h', |
37 'open-vcdiff/src/testing.h', | 40 'open-vcdiff/src/testing.h', |
38 'open-vcdiff/src/varint_bigendian.cc', | 41 'open-vcdiff/src/varint_bigendian.cc', |
39 'open-vcdiff/src/varint_bigendian.h', | 42 'open-vcdiff/src/varint_bigendian.h', |
40 'open-vcdiff/src/vcdecoder.cc', | 43 'open-vcdiff/src/vcdecoder.cc', |
44 'open-vcdiff/src/vcencoder.cc', | |
41 'open-vcdiff/src/vcdiff_defs.h', | 45 'open-vcdiff/src/vcdiff_defs.h', |
42 'open-vcdiff/src/vcdiffengine.cc', | 46 'open-vcdiff/src/vcdiffengine.cc', |
43 'open-vcdiff/src/vcdiffengine.h', | 47 'open-vcdiff/src/vcdiffengine.h', |
44 'open-vcdiff/vsprojects/config.h', | 48 'open-vcdiff/vsprojects/config.h', |
45 'open-vcdiff/vsprojects/stdint.h', | 49 'open-vcdiff/vsprojects/stdint.h', |
46 ], | 50 ], |
47 'include_dirs': [ | 51 'include_dirs': [ |
48 'open-vcdiff/src', | 52 'open-vcdiff/src', |
49 ], | 53 ], |
50 'direct_dependent_settings': { | 54 'direct_dependent_settings': { |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
91 } | 95 } |
92 }, | 96 }, |
93 'cflags': [ | 97 'cflags': [ |
94 '-include', '<(logging_dir)/sdch/<(logging_path)', | 98 '-include', '<(logging_dir)/sdch/<(logging_path)', |
95 # TODO(mostynb): remove this if open-vcdiff is ever updated for c++11: | 99 # TODO(mostynb): remove this if open-vcdiff is ever updated for c++11: |
96 '-Wno-deprecated-declarations', | 100 '-Wno-deprecated-declarations', |
97 ], | 101 ], |
98 }, | 102 }, |
99 ], | 103 ], |
100 } | 104 } |
OLD | NEW |