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

Side by Side Diff: import/import.gyp

Issue 147129: Adding in most of the unit tests. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/o3d/
Patch Set: '' Created 11 years, 5 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 | « import/cross/memory_stream_test.cc ('k') | plugin/plugin.gyp » ('j') | 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 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 'conditions' : [ 119 'conditions' : [
120 ['renderer == "d3d9" and OS == "win"', 120 ['renderer == "d3d9" and OS == "win"',
121 { 121 {
122 'include_dirs': [ 122 'include_dirs': [
123 '$(DXSDK_DIR)/Include', 123 '$(DXSDK_DIR)/Include',
124 ], 124 ],
125 } 125 }
126 ], 126 ],
127 ], 127 ],
128 }, 128 },
129 {
130 'target_name': 'o3dImportTest',
131 'type': 'none',
132 'dependencies': [
133 'o3dArchive',
134 'o3dImport',
135 '../../<(antlrdir)/antlr.gyp:antlr3c',
136 '../../<(fcolladadir)/fcollada.gyp:fcollada',
137 '../../<(jpegdir)/libjpeg.gyp:libjpeg',
138 '../../<(pngdir)/libpng.gyp:libpng',
139 '../../<(zlibdir)/zlib.gyp:zlib',
140 ],
141 'direct_dependent_settings': {
142 'sources': [
143 'cross/gz_compressor_test.cc',
144 'cross/gz_decompressor_test.cc',
145 'cross/memory_buffer_test.cc',
146 'cross/memory_stream_test.cc',
147 'cross/raw_data_test.cc',
148 'cross/tar_generator_test.cc',
149 'cross/tar_processor_test.cc',
150 'cross/targz_generator_test.cc',
151 'cross/targz_processor_test.cc',
152 ],
153 'conditions' : [
154 ['renderer == "d3d9" and OS == "win"',
155 {
156 'include_dirs': [
157 '$(DXSDK_DIR)/Include',
158 ],
159 }
160 ],
161 ],
162 },
163 },
129 ], 164 ],
130 } 165 }
OLDNEW
« no previous file with comments | « import/cross/memory_stream_test.cc ('k') | plugin/plugin.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698