OLD | NEW |
(Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 { |
| 6 'variables': { |
| 7 'chromium_code': 1, |
| 8 }, |
| 9 'includes': [ |
| 10 '../build/common.gypi', |
| 11 ], |
| 12 'targets': [ |
| 13 { |
| 14 'target_name': 'courgette_lib', |
| 15 'type': '<(library)', |
| 16 'dependencies': [ |
| 17 '../base/base.gyp:base', |
| 18 #'../third_party/lzma_sdk/7z_C.vcproj', |
| 19 ], |
| 20 'msvs_guid': '9A72A362-E617-4205-B9F2-43C6FB280FA1', |
| 21 'sources': [ |
| 22 'adjustment_method.cc', |
| 23 'adjustment_method.h', |
| 24 'assembly_program.cc', |
| 25 'assembly_program.h', |
| 26 'third_party/bsdiff.h', |
| 27 'third_party/bsdiff_apply.cc', |
| 28 'third_party/bsdiff_create.cc', |
| 29 'courgette.h', |
| 30 'crc.cc', |
| 31 'crc.h', |
| 32 'difference_estimator.cc', |
| 33 'difference_estimator.h', |
| 34 'disassembler.cc', |
| 35 'disassembler.h', |
| 36 'encoded_program.cc', |
| 37 'encoded_program.h', |
| 38 'ensemble.cc', |
| 39 'ensemble.h', |
| 40 'ensemble_apply.cc', |
| 41 'ensemble_create.cc', |
| 42 'image_info.cc', |
| 43 'image_info.h', |
| 44 'region.h', |
| 45 'simple_delta.cc', |
| 46 'simple_delta.h', |
| 47 'streams.cc', |
| 48 'streams.h', |
| 49 'win32_x86_generator.h', |
| 50 'win32_x86_patcher.h', |
| 51 ], |
| 52 }, |
| 53 { |
| 54 'target_name': 'courgette', |
| 55 'type': 'executable', |
| 56 'msvs_guid': '4EA8CE12-9C6F-45E5-9D08-720383FE3685', |
| 57 'sources': [ |
| 58 'courgette_tool.cc', |
| 59 ], |
| 60 'dependencies': [ |
| 61 'courgette_lib', |
| 62 '../base/base.gyp:base', |
| 63 ], |
| 64 }, |
| 65 { |
| 66 'target_name': 'courgette_minimal_tool', |
| 67 'type': 'executable', |
| 68 'msvs_guid': 'EB79415F-2F17-4BDC-AADD-4CA4C2D21B73', |
| 69 'sources': [ |
| 70 'courgette_minimal_tool.cc', |
| 71 ], |
| 72 'dependencies': [ |
| 73 'courgette_lib', |
| 74 '../base/base.gyp:base', |
| 75 ], |
| 76 }, |
| 77 { |
| 78 'target_name': 'courgette_unittests', |
| 79 'type': 'executable', |
| 80 'msvs_guid': '24309F1A-4035-46F9-A3D8-F47DC4BCC2B8', |
| 81 'sources': [ |
| 82 'adjustment_method_unittest.cc', |
| 83 'bsdiff_memory_unittest.cc', |
| 84 'difference_estimator_unittest.cc', |
| 85 'encoded_program_unittest.cc', |
| 86 'encode_decode_unittest.cc', |
| 87 'image_info_unittest.cc', |
| 88 'run_all_unittests.cc', |
| 89 'streams_unittest.cc', |
| 90 ], |
| 91 'dependencies': [ |
| 92 'courgette_lib', |
| 93 '../base/base.gyp:base', |
| 94 '../testing/gtest.gyp:gtest', |
| 95 ], |
| 96 }, |
| 97 { |
| 98 'target_name': 'courgette_fuzz', |
| 99 'type': 'executable', |
| 100 'msvs_guid': '57C27529-8CA9-4FC3-9C02-DA05B172F785', |
| 101 'sources': [ |
| 102 'encoded_program_fuzz_unittest.cc', |
| 103 ], |
| 104 'dependencies': [ |
| 105 'courgette_lib', |
| 106 '../base/base.gyp:base', |
| 107 '../testing/gtest.gyp:gtest', |
| 108 ], |
| 109 }, |
| 110 ], |
| 111 } |
OLD | NEW |