Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(611)

Side by Side Diff: courgette/courgette.gyp

Issue 12207096: Make courgette_unittests build on Win64 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698