| 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 }, | 8 }, |
| 9 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| 11 'target_name': 'courgette_lib', | 11 'target_name': 'courgette_lib', |
| 12 'type': '<(library)', | 12 'type': '<(library)', |
| 13 'dependencies': [ | 13 'dependencies': [ |
| 14 '../base/base.gyp:base', | 14 '../base/base.gyp:base', |
| 15 '../third_party/lzma_sdk/lzma_sdk.gyp:lzma_sdk', | 15 '../third_party/lzma_sdk/lzma_sdk.gyp:lzma_sdk', |
| 16 ], | 16 ], |
| 17 'msvs_guid': '9A72A362-E617-4205-B9F2-43C6FB280FA1', | 17 'msvs_guid': '9A72A362-E617-4205-B9F2-43C6FB280FA1', |
| 18 'sources': [ | 18 'sources': [ |
| 19 'adjustment_method.cc', | 19 'adjustment_method.cc', |
| 20 'adjustment_method_2.cc', | 20 'adjustment_method_2.cc', |
| 21 'adjustment_method.h', | 21 'adjustment_method.h', |
| 22 'assembly_program.cc', | 22 'assembly_program.cc', |
| 23 'assembly_program.h', | 23 'assembly_program.h', |
| 24 'third_party/bsdiff.h', | 24 'third_party/bsdiff.h', |
| 25 'third_party/bsdiff_apply.cc', | 25 'third_party/bsdiff_apply.cc', |
| 26 'third_party/bsdiff_create.cc', | 26 'third_party/bsdiff_create.cc', |
| 27 'third_party/paged_array.h', |
| 27 'courgette.h', | 28 'courgette.h', |
| 28 'crc.cc', | 29 'crc.cc', |
| 29 'crc.h', | 30 'crc.h', |
| 30 'difference_estimator.cc', | 31 'difference_estimator.cc', |
| 31 'difference_estimator.h', | 32 'difference_estimator.h', |
| 32 'disassembler.cc', | 33 'disassembler.cc', |
| 33 'disassembler.h', | 34 'disassembler.h', |
| 34 'encoded_program.cc', | 35 'encoded_program.cc', |
| 35 'encoded_program.h', | 36 'encoded_program.h', |
| 36 'ensemble.cc', | 37 'ensemble.cc', |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 'msvs_guid': '24309F1A-4035-46F9-A3D8-F47DC4BCC2B8', | 79 'msvs_guid': '24309F1A-4035-46F9-A3D8-F47DC4BCC2B8', |
| 79 'sources': [ | 80 'sources': [ |
| 80 'adjustment_method_unittest.cc', | 81 'adjustment_method_unittest.cc', |
| 81 'bsdiff_memory_unittest.cc', | 82 'bsdiff_memory_unittest.cc', |
| 82 'difference_estimator_unittest.cc', | 83 'difference_estimator_unittest.cc', |
| 83 'encoded_program_unittest.cc', | 84 'encoded_program_unittest.cc', |
| 84 'encode_decode_unittest.cc', | 85 'encode_decode_unittest.cc', |
| 85 'image_info_unittest.cc', | 86 'image_info_unittest.cc', |
| 86 'run_all_unittests.cc', | 87 'run_all_unittests.cc', |
| 87 'streams_unittest.cc', | 88 'streams_unittest.cc', |
| 89 'third_party/paged_array_unittest.cc' |
| 88 ], | 90 ], |
| 89 'dependencies': [ | 91 'dependencies': [ |
| 90 'courgette_lib', | 92 'courgette_lib', |
| 91 '../base/base.gyp:base', | 93 '../base/base.gyp:base', |
| 92 '../base/base.gyp:base_i18n', | 94 '../base/base.gyp:base_i18n', |
| 93 '../testing/gtest.gyp:gtest', | 95 '../testing/gtest.gyp:gtest', |
| 94 ], | 96 ], |
| 95 'conditions': [ | 97 'conditions': [ |
| 96 [ 'OS == "linux" or OS == "freebsd" or OS == "openbsd"', { | 98 [ 'OS == "linux" or OS == "freebsd" or OS == "openbsd"', { |
| 97 'dependencies': [ | 99 'dependencies': [ |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 ], | 132 ], |
| 131 }, | 133 }, |
| 132 ], | 134 ], |
| 133 } | 135 } |
| 134 | 136 |
| 135 # Local Variables: | 137 # Local Variables: |
| 136 # tab-width:2 | 138 # tab-width:2 |
| 137 # indent-tabs-mode:nil | 139 # indent-tabs-mode:nil |
| 138 # End: | 140 # End: |
| 139 # vim: set expandtab tabstop=2 shiftwidth=2: | 141 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |