OLD | NEW |
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 'courgette_lib_sources': [ | 8 'courgette_lib_sources': [ |
9 'adjustment_method.cc', | 9 'adjustment_method.cc', |
10 'adjustment_method_2.cc', | 10 'adjustment_method_2.cc', |
11 'adjustment_method.h', | 11 'adjustment_method.h', |
12 'assembly_program.cc', | 12 'assembly_program.cc', |
13 'assembly_program.h', | 13 'assembly_program.h', |
14 'third_party/bsdiff.h', | 14 'third_party/bsdiff.h', |
15 'third_party/bsdiff_apply.cc', | 15 'third_party/bsdiff_apply.cc', |
16 'third_party/bsdiff_create.cc', | 16 'third_party/bsdiff_create.cc', |
17 'third_party/paged_array.h', | 17 'third_party/paged_array.h', |
18 'courgette.h', | 18 'courgette.h', |
19 'crc.cc', | 19 'crc.cc', |
20 'crc.h', | 20 'crc.h', |
21 'difference_estimator.cc', | 21 'difference_estimator.cc', |
22 'difference_estimator.h', | 22 'difference_estimator.h', |
23 'disassembler.cc', | 23 'disassembler.cc', |
24 'disassembler.h', | 24 'disassembler.h', |
| 25 'disassembler_win32_x86.cc', |
| 26 'disassembler_win32_x86.h', |
25 'encoded_program.cc', | 27 'encoded_program.cc', |
26 'encoded_program.h', | 28 'encoded_program.h', |
27 'ensemble.cc', | 29 'ensemble.cc', |
28 'ensemble.h', | 30 'ensemble.h', |
29 'ensemble_apply.cc', | 31 'ensemble_apply.cc', |
30 'ensemble_create.cc', | 32 'ensemble_create.cc', |
31 'image_info.cc', | 33 'image_info.cc', |
32 'image_info.h', | 34 'image_info.h', |
33 'memory_allocator.cc', | 35 'memory_allocator.cc', |
34 'memory_allocator.h', | 36 'memory_allocator.h', |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 'type': 'executable', | 87 'type': 'executable', |
86 'sources': [ | 88 'sources': [ |
87 'adjustment_method_unittest.cc', | 89 'adjustment_method_unittest.cc', |
88 'bsdiff_memory_unittest.cc', | 90 'bsdiff_memory_unittest.cc', |
89 'difference_estimator_unittest.cc', | 91 'difference_estimator_unittest.cc', |
90 'encoded_program_unittest.cc', | 92 'encoded_program_unittest.cc', |
91 'encode_decode_unittest.cc', | 93 'encode_decode_unittest.cc', |
92 'image_info_unittest.cc', | 94 'image_info_unittest.cc', |
93 'run_all_unittests.cc', | 95 'run_all_unittests.cc', |
94 'streams_unittest.cc', | 96 'streams_unittest.cc', |
| 97 'versioning_unittest.cc', |
95 'third_party/paged_array_unittest.cc' | 98 'third_party/paged_array_unittest.cc' |
96 ], | 99 ], |
97 'dependencies': [ | 100 'dependencies': [ |
98 'courgette_lib', | 101 'courgette_lib', |
99 '../base/base.gyp:base', | 102 '../base/base.gyp:base', |
100 '../base/base.gyp:base_i18n', | 103 '../base/base.gyp:base_i18n', |
101 '../base/base.gyp:test_support_base', | 104 '../base/base.gyp:test_support_base', |
102 '../testing/gtest.gyp:gtest', | 105 '../testing/gtest.gyp:gtest', |
103 ], | 106 ], |
104 'conditions': [ | 107 'conditions': [ |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
171 'configurations': { | 174 'configurations': { |
172 'Common_Base': { | 175 'Common_Base': { |
173 'msvs_target_platform': 'x64', | 176 'msvs_target_platform': 'x64', |
174 }, | 177 }, |
175 }, | 178 }, |
176 }, | 179 }, |
177 ], | 180 ], |
178 }], | 181 }], |
179 ], | 182 ], |
180 } | 183 } |
OLD | NEW |