| 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 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 'third_party/qsufsort_unittest.cc', | 124 'third_party/qsufsort_unittest.cc', |
| 125 ], | 125 ], |
| 126 'dependencies': [ | 126 'dependencies': [ |
| 127 'courgette_lib', | 127 'courgette_lib', |
| 128 '../base/base.gyp:base', | 128 '../base/base.gyp:base', |
| 129 '../base/base.gyp:base_i18n', | 129 '../base/base.gyp:base_i18n', |
| 130 '../base/base.gyp:run_all_unittests', | 130 '../base/base.gyp:run_all_unittests', |
| 131 '../base/base.gyp:test_support_base', | 131 '../base/base.gyp:test_support_base', |
| 132 '../testing/gtest.gyp:gtest', | 132 '../testing/gtest.gyp:gtest', |
| 133 ], | 133 ], |
| 134 'conditions': [ | |
| 135 [ 'os_posix == 1 and OS != "mac" and OS != "android" and OS != "ios"', { | |
| 136 'conditions': [ | |
| 137 ['use_allocator!="none"', { | |
| 138 'dependencies': [ | |
| 139 '../base/allocator/allocator.gyp:allocator', | |
| 140 ], | |
| 141 }], | |
| 142 ], | |
| 143 }], | |
| 144 ], | |
| 145 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 134 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 146 'msvs_disabled_warnings': [4267, ], | 135 'msvs_disabled_warnings': [4267, ], |
| 147 }, | 136 }, |
| 148 { | 137 { |
| 149 'target_name': 'courgette_fuzz', | 138 'target_name': 'courgette_fuzz', |
| 150 'type': 'executable', | 139 'type': 'executable', |
| 151 'sources': [ | 140 'sources': [ |
| 152 'base_test_unittest.cc', | 141 'base_test_unittest.cc', |
| 153 'base_test_unittest.h', | 142 'base_test_unittest.h', |
| 154 'encoded_program_fuzz_unittest.cc', | 143 'encoded_program_fuzz_unittest.cc', |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 238 '../build/isolate.gypi', | 227 '../build/isolate.gypi', |
| 239 ], | 228 ], |
| 240 'sources': [ | 229 'sources': [ |
| 241 'courgette_unittests.isolate', | 230 'courgette_unittests.isolate', |
| 242 ], | 231 ], |
| 243 }, | 232 }, |
| 244 ], | 233 ], |
| 245 }], | 234 }], |
| 246 ], | 235 ], |
| 247 } | 236 } |
| OLD | NEW |