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

Side by Side Diff: converter/converter.gyp

Issue 1711015: Copy the Cg-to-GLSL converter script alongside the converter... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/o3d/
Patch Set: Created 10 years, 7 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) 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 18 matching lines...) Expand all
29 '../../<(zlibdir)/zlib.gyp:zlib', 29 '../../<(zlibdir)/zlib.gyp:zlib',
30 '../../base/base.gyp:base', 30 '../../base/base.gyp:base',
31 '../../skia/skia.gyp:skia', 31 '../../skia/skia.gyp:skia',
32 '../compiler/technique/technique.gyp:o3dTechnique', 32 '../compiler/technique/technique.gyp:o3dTechnique',
33 '../core/core.gyp:o3dCore', 33 '../core/core.gyp:o3dCore',
34 '../core/core.gyp:o3dCorePlatform', 34 '../core/core.gyp:o3dCorePlatform',
35 '../import/archive.gyp:o3dArchive', 35 '../import/archive.gyp:o3dArchive',
36 '../import/import.gyp:o3dImport', 36 '../import/import.gyp:o3dImport',
37 '../serializer/serializer.gyp:o3dSerializer', 37 '../serializer/serializer.gyp:o3dSerializer',
38 '../utils/utils.gyp:o3dUtils', 38 '../utils/utils.gyp:o3dUtils',
39 'cgToGLSLConverterScript',
39 ], 40 ],
40 'sources': [ 41 'sources': [
41 'cross/buffer_stub.cc', 42 'cross/buffer_stub.cc',
42 'cross/buffer_stub.h', 43 'cross/buffer_stub.h',
43 'cross/converter.cc', 44 'cross/converter.cc',
44 'cross/converter.h', 45 'cross/converter.h',
45 'cross/converter_main.cc', 46 'cross/converter_main.cc',
46 'cross/draw_element_stub.h', 47 'cross/draw_element_stub.h',
47 'cross/effect_stub.h', 48 'cross/effect_stub.h',
48 'cross/param_cache_stub.h', 49 'cross/param_cache_stub.h',
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 'VCLinkerTool': { 115 'VCLinkerTool': {
115 # Set /SUBSYSTEM:CONSOLE for converter.exe, since 116 # Set /SUBSYSTEM:CONSOLE for converter.exe, since
116 # it is a console app. 117 # it is a console app.
117 'SubSystem': '1', 118 'SubSystem': '1',
118 }, 119 },
119 }, 120 },
120 }, 121 },
121 ], 122 ],
122 ], 123 ],
123 }, 124 },
125 {
126 'target_name': 'cgToGLSLConverterScript',
127 'type': 'none',
128 'copies': [
129 {
130 'destination': '<(PRODUCT_DIR)',
131 'files': [
132 '../cg_to_glsl/convert.py',
133 ]
134 },
135 ]
136 },
124 ], 137 ],
125 } 138 }
126 139
127 # Local Variables: 140 # Local Variables:
128 # tab-width:2 141 # tab-width:2
129 # indent-tabs-mode:nil 142 # indent-tabs-mode:nil
130 # End: 143 # End:
131 # vim: set expandtab tabstop=2 shiftwidth=2: 144 # vim: set expandtab tabstop=2 shiftwidth=2:
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