OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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', |
(...skipping 27 matching lines...) Expand all Loading... |
38 'ensemble_apply.cc', | 38 'ensemble_apply.cc', |
39 'ensemble_create.cc', | 39 'ensemble_create.cc', |
40 'image_utils.h', | 40 'image_utils.h', |
41 'label_manager.cc', | 41 'label_manager.cc', |
42 'label_manager.h', | 42 'label_manager.h', |
43 'memory_allocator.cc', | 43 'memory_allocator.cc', |
44 'memory_allocator.h', | 44 'memory_allocator.h', |
45 'program_detector.cc', | 45 'program_detector.cc', |
46 'program_detector.h', | 46 'program_detector.h', |
47 'region.h', | 47 'region.h', |
48 'rel32_finder_win32_x86.cc', | 48 'rel32_finder.cc', |
49 'rel32_finder_win32_x86.h', | 49 'rel32_finder.h', |
| 50 'rel32_finder_x64.cc', |
| 51 'rel32_finder_x64.h', |
| 52 'rel32_finder_x86.cc', |
| 53 'rel32_finder_x86.h', |
50 'simple_delta.cc', | 54 'simple_delta.cc', |
51 'simple_delta.h', | 55 'simple_delta.h', |
52 'streams.cc', | 56 'streams.cc', |
53 'streams.h', | 57 'streams.h', |
54 'third_party/bsdiff/bsdiff.h', | 58 'third_party/bsdiff/bsdiff.h', |
55 'third_party/bsdiff/bsdiff_apply.cc', | 59 'third_party/bsdiff/bsdiff_apply.cc', |
56 'third_party/bsdiff/bsdiff_create.cc', | 60 'third_party/bsdiff/bsdiff_create.cc', |
57 'third_party/bsdiff/paged_array.h', | 61 'third_party/bsdiff/paged_array.h', |
58 'third_party/bsdiff/qsufsort.h', | 62 'third_party/bsdiff/qsufsort.h', |
59 'types_elf.h', | 63 'types_elf.h', |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 'difference_estimator_unittest.cc', | 117 'difference_estimator_unittest.cc', |
114 'disassembler_elf_32_x86_unittest.cc', | 118 'disassembler_elf_32_x86_unittest.cc', |
115 'disassembler_win32_x86_unittest.cc', | 119 'disassembler_win32_x86_unittest.cc', |
116 'disassembler_win32_x64_unittest.cc', | 120 'disassembler_win32_x64_unittest.cc', |
117 'encoded_program_unittest.cc', | 121 'encoded_program_unittest.cc', |
118 'encode_decode_unittest.cc', | 122 'encode_decode_unittest.cc', |
119 'ensemble_unittest.cc', | 123 'ensemble_unittest.cc', |
120 'image_utils_unittest.cc', | 124 'image_utils_unittest.cc', |
121 'label_manager_unittest.cc', | 125 'label_manager_unittest.cc', |
122 'memory_allocator_unittest.cc', | 126 'memory_allocator_unittest.cc', |
123 'rel32_finder_win32_x86_unittest.cc', | 127 'rel32_finder_unittest.cc', |
124 'streams_unittest.cc', | 128 'streams_unittest.cc', |
125 'typedrva_unittest.cc', | 129 'typedrva_unittest.cc', |
126 'versioning_unittest.cc', | 130 'versioning_unittest.cc', |
127 'third_party/bsdiff/paged_array_unittest.cc', | 131 'third_party/bsdiff/paged_array_unittest.cc', |
128 'third_party/bsdiff/qsufsort_unittest.cc', | 132 'third_party/bsdiff/qsufsort_unittest.cc', |
129 ], | 133 ], |
130 'dependencies': [ | 134 'dependencies': [ |
131 'courgette_lib', | 135 'courgette_lib', |
132 '../base/base.gyp:base', | 136 '../base/base.gyp:base', |
133 '../base/base.gyp:base_i18n', | 137 '../base/base.gyp:base_i18n', |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
231 '../build/isolate.gypi', | 235 '../build/isolate.gypi', |
232 ], | 236 ], |
233 'sources': [ | 237 'sources': [ |
234 'courgette_unittests.isolate', | 238 'courgette_unittests.isolate', |
235 ], | 239 ], |
236 }, | 240 }, |
237 ], | 241 ], |
238 }], | 242 }], |
239 ], | 243 ], |
240 } | 244 } |
OLD | NEW |