| 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 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 [ 'toolkit_uses_gtk == 1', { | 114 [ 'toolkit_uses_gtk == 1', { |
| 115 'dependencies': [ | 115 'dependencies': [ |
| 116 # Workaround for gyp bug 69. | 116 # Workaround for gyp bug 69. |
| 117 # Needed to handle the #include chain: | 117 # Needed to handle the #include chain: |
| 118 # base/test_suite.h | 118 # base/test_suite.h |
| 119 # gtk/gtk.h | 119 # gtk/gtk.h |
| 120 '../build/linux/system.gyp:gtk', | 120 '../build/linux/system.gyp:gtk', |
| 121 ], | 121 ], |
| 122 }], | 122 }], |
| 123 ], | 123 ], |
| 124 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 125 'msvs_disabled_warnings': [4267, ], |
| 124 }, | 126 }, |
| 125 { | 127 { |
| 126 'target_name': 'courgette_fuzz', | 128 'target_name': 'courgette_fuzz', |
| 127 'type': 'executable', | 129 'type': 'executable', |
| 128 'sources': [ | 130 'sources': [ |
| 129 'base_test_unittest.cc', | 131 'base_test_unittest.cc', |
| 130 'base_test_unittest.h', | 132 'base_test_unittest.h', |
| 131 'encoded_program_fuzz_unittest.cc', | 133 'encoded_program_fuzz_unittest.cc', |
| 132 ], | 134 ], |
| 133 'dependencies': [ | 135 'dependencies': [ |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 'configurations': { | 184 'configurations': { |
| 183 'Common_Base': { | 185 'Common_Base': { |
| 184 'msvs_target_platform': 'x64', | 186 'msvs_target_platform': 'x64', |
| 185 }, | 187 }, |
| 186 }, | 188 }, |
| 187 }, | 189 }, |
| 188 ], | 190 ], |
| 189 }], | 191 }], |
| 190 ], | 192 ], |
| 191 } | 193 } |
| OLD | NEW |