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

Side by Side Diff: tests/tests.gyp

Issue 208037: Added command buffer unit tests to gyp.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/o3d/
Patch Set: '' Created 11 years, 3 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 | « tests/common/win/testing_common.cc ('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',
(...skipping 10 matching lines...) Expand all
21 'type': 'executable', 21 'type': 'executable',
22 'dependencies': [ 22 'dependencies': [
23 '../../<(antlrdir)/antlr.gyp:antlr3c', 23 '../../<(antlrdir)/antlr.gyp:antlr3c',
24 '../../<(fcolladadir)/fcollada.gyp:fcollada', 24 '../../<(fcolladadir)/fcollada.gyp:fcollada',
25 '../../<(jpegdir)/libjpeg.gyp:libjpeg', 25 '../../<(jpegdir)/libjpeg.gyp:libjpeg',
26 '../../<(pngdir)/libpng.gyp:libpng', 26 '../../<(pngdir)/libpng.gyp:libpng',
27 '../../<(zlibdir)/zlib.gyp:zlib', 27 '../../<(zlibdir)/zlib.gyp:zlib',
28 '../../base/base.gyp:base', 28 '../../base/base.gyp:base',
29 '../../skia/skia.gyp:skia', 29 '../../skia/skia.gyp:skia',
30 '../../testing/gtest.gyp:gtest', 30 '../../testing/gtest.gyp:gtest',
31 '../../testing/gmock.gyp:gmock',
31 '../../native_client/src/shared/imc/imc.gyp:google_nacl_imc', 32 '../../native_client/src/shared/imc/imc.gyp:google_nacl_imc',
32 '../compiler/technique/technique.gyp:o3dTechnique', 33 '../compiler/technique/technique.gyp:o3dTechnique',
33 '../compiler/technique/technique.gyp:o3dTechniqueTest', 34 '../compiler/technique/technique.gyp:o3dTechniqueTest',
35 '../command_buffer/command_buffer.gyp:command_buffer_client_test',
36 '../command_buffer/command_buffer.gyp:command_buffer_common_test',
37 '../command_buffer/command_buffer.gyp:command_buffer_service_test',
34 '../core/core.gyp:o3dCore', 38 '../core/core.gyp:o3dCore',
35 '../core/core.gyp:o3dCorePlatform', 39 '../core/core.gyp:o3dCorePlatform',
36 '../core/core.gyp:o3dCoreTest', 40 '../core/core.gyp:o3dCoreTest',
37 '../import/import.gyp:o3dImport', 41 '../import/import.gyp:o3dImport',
38 '../import/archive.gyp:o3dArchiveTest', 42 '../import/archive.gyp:o3dArchiveTest',
39 '../import/import.gyp:o3dImportTest', 43 '../import/import.gyp:o3dImportTest',
40 '../serializer/serializer.gyp:o3dSerializerTest', 44 '../serializer/serializer.gyp:o3dSerializerTest',
41 '../utils/utils.gyp:o3dUtils', 45 '../utils/utils.gyp:o3dUtils',
42 '../utils/utils.gyp:o3dUtilsTest', 46 '../utils/utils.gyp:o3dUtilsTest',
43 ], 47 ],
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
155 'OptimizeReferences': '1', 159 'OptimizeReferences': '1',
156 }, 160 },
157 }, 161 },
158 # We switch it to console post-build so that we have a 162 # We switch it to console post-build so that we have a
159 # windows app that can output to the console and still 163 # windows app that can output to the console and still
160 # open windows. 164 # open windows.
161 'msvs_postbuild': 165 'msvs_postbuild':
162 'editbin /SUBSYSTEM:CONSOLE $(OutDir)/$(TargetFileName)', 166 'editbin /SUBSYSTEM:CONSOLE $(OutDir)/$(TargetFileName)',
163 }, 167 },
164 ], 168 ],
165 ['OS == "win" and (renderer == "d3d9" or renderer == "cb")', 169 ['OS == "win" and (renderer == "d3d9" or cb_service == "d3d9")',
166 { 170 {
167 'sources': [ 171 'sources': [
168 'common/win/dxcapture.cc', 172 'common/win/dxcapture.cc',
169 ], 173 ],
170 'include_dirs': [ 174 'include_dirs': [
171 '"$(DXSDK_DIR)/Include"', 175 '"$(DXSDK_DIR)/Include"',
172 ], 176 ],
173 'msvs_settings': { 177 'msvs_settings': {
174 'VCLinkerTool': { 178 'VCLinkerTool': {
175 'AdditionalDependencies': [ 179 'AdditionalDependencies': [
(...skipping 17 matching lines...) Expand all
193 '../../<(pdiffdir)/bin/linux/perceptualdiff', 197 '../../<(pdiffdir)/bin/linux/perceptualdiff',
194 ], 198 ],
195 }, 199 },
196 ], 200 ],
197 }, 201 },
198 ], 202 ],
199 ], 203 ],
200 }, 204 },
201 ], 205 ],
202 } 206 }
OLDNEW
« no previous file with comments | « tests/common/win/testing_common.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698