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 'includes': [ | 9 'includes': [ |
10 '../build/common.gypi', | 10 '../build/common.gypi', |
11 ], | 11 ], |
12 'target_defaults': { | 12 'target_defaults': { |
13 'include_dirs': [ | 13 'include_dirs': [ |
14 '..', | 14 '..', |
15 '../..', | 15 '../..', |
16 ], | 16 ], |
| 17 # TODO(rlp): remove this after fixing signed / unsigned issues in |
| 18 # command buffer code and tests. |
| 19 'target_conditions': [ |
| 20 ['OS == "mac"', |
| 21 { |
| 22 'xcode_settings': { |
| 23 'GCC_TREAT_WARNINGS_AS_ERRORS': 'NO' |
| 24 }, |
| 25 }, |
| 26 ], |
| 27 ], |
17 }, | 28 }, |
18 'targets': [ | 29 'targets': [ |
19 { | 30 { |
20 'target_name': 'unit_tests', | 31 'target_name': 'unit_tests', |
21 'type': 'executable', | 32 'type': 'executable', |
22 'dependencies': [ | 33 'dependencies': [ |
23 '../../<(antlrdir)/antlr.gyp:antlr3c', | 34 '../../<(antlrdir)/antlr.gyp:antlr3c', |
24 '../../<(fcolladadir)/fcollada.gyp:fcollada', | 35 '../../<(fcolladadir)/fcollada.gyp:fcollada', |
25 '../../<(jpegdir)/libjpeg.gyp:libjpeg', | 36 '../../<(jpegdir)/libjpeg.gyp:libjpeg', |
26 '../../<(pngdir)/libpng.gyp:libpng', | 37 '../../<(pngdir)/libpng.gyp:libpng', |
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
203 '../../<(pdiffdir)/bin/linux/perceptualdiff', | 214 '../../<(pdiffdir)/bin/linux/perceptualdiff', |
204 ], | 215 ], |
205 }, | 216 }, |
206 ], | 217 ], |
207 }, | 218 }, |
208 ], | 219 ], |
209 ], | 220 ], |
210 }, | 221 }, |
211 ], | 222 ], |
212 } | 223 } |
OLD | NEW |