| 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', |
| (...skipping 18 matching lines...) Expand all Loading... |
| 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 Loading... |
| 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: |
| OLD | NEW |