| 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 'rel32_finder_x86.h', | 55 'rel32_finder_x86.h', |
| 56 'simple_delta.cc', | 56 'simple_delta.cc', |
| 57 'simple_delta.h', | 57 'simple_delta.h', |
| 58 'streams.cc', | 58 'streams.cc', |
| 59 'streams.h', | 59 'streams.h', |
| 60 'third_party/bsdiff/bsdiff.h', | 60 'third_party/bsdiff/bsdiff.h', |
| 61 'third_party/bsdiff/bsdiff_apply.cc', | 61 'third_party/bsdiff/bsdiff_apply.cc', |
| 62 'third_party/bsdiff/bsdiff_create.cc', | 62 'third_party/bsdiff/bsdiff_create.cc', |
| 63 'third_party/bsdiff/bsdiff_search.h', | 63 'third_party/bsdiff/bsdiff_search.h', |
| 64 'third_party/bsdiff/paged_array.h', | 64 'third_party/bsdiff/paged_array.h', |
| 65 'third_party/bsdiff/qsufsort.h', | 65 'third_party/divsufsort/divsufsort.cc', |
| 66 'third_party/divsufsort/divsufsort.h', |
| 67 'third_party/divsufsort/divsufsort_private.h', |
| 68 'third_party/divsufsort/sssort.cc', |
| 69 'third_party/divsufsort/trsort.cc', |
| 66 'types_elf.h', | 70 'types_elf.h', |
| 67 'types_win_pe.h', | 71 'types_win_pe.h', |
| 68 ], | 72 ], |
| 69 }, | 73 }, |
| 70 'targets': [ | 74 'targets': [ |
| 71 { | 75 { |
| 72 'target_name': 'courgette_lib', | 76 'target_name': 'courgette_lib', |
| 73 'type': 'static_library', | 77 'type': 'static_library', |
| 74 'dependencies': [ | 78 'dependencies': [ |
| 75 '../base/base.gyp:base', | 79 '../base/base.gyp:base', |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 'image_utils_unittest.cc', | 129 'image_utils_unittest.cc', |
| 126 'label_manager_unittest.cc', | 130 'label_manager_unittest.cc', |
| 127 'memory_allocator_unittest.cc', | 131 'memory_allocator_unittest.cc', |
| 128 'program_detector_unittest.cc', | 132 'program_detector_unittest.cc', |
| 129 'rel32_finder_unittest.cc', | 133 'rel32_finder_unittest.cc', |
| 130 'streams_unittest.cc', | 134 'streams_unittest.cc', |
| 131 'typedrva_unittest.cc', | 135 'typedrva_unittest.cc', |
| 132 'versioning_unittest.cc', | 136 'versioning_unittest.cc', |
| 133 'third_party/bsdiff/bsdiff_search_unittest.cc', | 137 'third_party/bsdiff/bsdiff_search_unittest.cc', |
| 134 'third_party/bsdiff/paged_array_unittest.cc', | 138 'third_party/bsdiff/paged_array_unittest.cc', |
| 135 'third_party/bsdiff/qsufsort_unittest.cc', | 139 'third_party/divsufsort/divsufsort_unittest.cc', |
| 136 ], | 140 ], |
| 137 'dependencies': [ | 141 'dependencies': [ |
| 138 'courgette_lib', | 142 'courgette_lib', |
| 139 '../base/base.gyp:base', | 143 '../base/base.gyp:base', |
| 140 '../base/base.gyp:base_i18n', | 144 '../base/base.gyp:base_i18n', |
| 141 '../base/base.gyp:run_all_unittests', | 145 '../base/base.gyp:run_all_unittests', |
| 142 '../base/base.gyp:test_support_base', | 146 '../base/base.gyp:test_support_base', |
| 143 '../testing/gtest.gyp:gtest', | 147 '../testing/gtest.gyp:gtest', |
| 144 ], | 148 ], |
| 145 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 149 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 238 '../build/isolate.gypi', | 242 '../build/isolate.gypi', |
| 239 ], | 243 ], |
| 240 'sources': [ | 244 'sources': [ |
| 241 'courgette_unittests.isolate', | 245 'courgette_unittests.isolate', |
| 242 ], | 246 ], |
| 243 }, | 247 }, |
| 244 ], | 248 ], |
| 245 }], | 249 }], |
| 246 ], | 250 ], |
| 247 } | 251 } |
| OLD | NEW |