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

Side by Side Diff: tests/tests.gyp

Issue 249013: Fixed Mac gyp build. Switched to using Chrome hash_tables.h, changed... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/o3d/
Patch Set: '' Created 11 years, 2 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 | « plugin/cross/o3d_glue.h ('k') | 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) 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
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 }
OLDNEW
« no previous file with comments | « plugin/cross/o3d_glue.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698