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

Side by Side Diff: Source/modules/modules.gypi

Issue 1265703005: Implement the texture uploading of ASTC compression for WebGL(part II) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add braces. Created 5 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
« no previous file with comments | « no previous file | Source/modules/webgl/WebGL2RenderingContext.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 'includes': [ 2 'includes': [
3 '../core/core_generated.gypi', 3 '../core/core_generated.gypi',
4 'modules_generated.gypi', 4 'modules_generated.gypi',
5 ], 5 ],
6 'variables': { 6 'variables': {
7 # Experimental hooks for embedder to provide extra IDL and source files. 7 # Experimental hooks for embedder to provide extra IDL and source files.
8 # 8 #
9 # Note: this is not a supported API. If you rely on this, you will be broken 9 # Note: this is not a supported API. If you rely on this, you will be broken
10 # from time to time as the code generator changes in backward incompatible 10 # from time to time as the code generator changes in backward incompatible
(...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after
250 'webgl/OESElementIndexUint.idl', 250 'webgl/OESElementIndexUint.idl',
251 'webgl/OESStandardDerivatives.idl', 251 'webgl/OESStandardDerivatives.idl',
252 'webgl/OESTextureFloat.idl', 252 'webgl/OESTextureFloat.idl',
253 'webgl/OESTextureFloatLinear.idl', 253 'webgl/OESTextureFloatLinear.idl',
254 'webgl/OESTextureHalfFloat.idl', 254 'webgl/OESTextureHalfFloat.idl',
255 'webgl/OESTextureHalfFloatLinear.idl', 255 'webgl/OESTextureHalfFloatLinear.idl',
256 'webgl/OESVertexArrayObject.idl', 256 'webgl/OESVertexArrayObject.idl',
257 'webgl/WebGL2RenderingContext.idl', 257 'webgl/WebGL2RenderingContext.idl',
258 'webgl/WebGLActiveInfo.idl', 258 'webgl/WebGLActiveInfo.idl',
259 'webgl/WebGLBuffer.idl', 259 'webgl/WebGLBuffer.idl',
260 'webgl/WebGLCompressedTextureASTC.idl',
260 'webgl/WebGLCompressedTextureATC.idl', 261 'webgl/WebGLCompressedTextureATC.idl',
261 'webgl/WebGLCompressedTextureETC1.idl', 262 'webgl/WebGLCompressedTextureETC1.idl',
262 'webgl/WebGLCompressedTexturePVRTC.idl', 263 'webgl/WebGLCompressedTexturePVRTC.idl',
263 'webgl/WebGLCompressedTextureS3TC.idl', 264 'webgl/WebGLCompressedTextureS3TC.idl',
264 'webgl/WebGLContextEvent.idl', 265 'webgl/WebGLContextEvent.idl',
265 'webgl/WebGLDebugRendererInfo.idl', 266 'webgl/WebGLDebugRendererInfo.idl',
266 'webgl/WebGLDebugShaders.idl', 267 'webgl/WebGLDebugShaders.idl',
267 'webgl/WebGLDepthTexture.idl', 268 'webgl/WebGLDepthTexture.idl',
268 'webgl/WebGLDrawBuffers.idl', 269 'webgl/WebGLDrawBuffers.idl',
269 'webgl/WebGLFramebuffer.idl', 270 'webgl/WebGLFramebuffer.idl',
(...skipping 1325 matching lines...) Expand 10 before | Expand all | Expand 10 after
1595 'webgl/OESTextureHalfFloatLinear.h', 1596 'webgl/OESTextureHalfFloatLinear.h',
1596 'webgl/OESVertexArrayObject.cpp', 1597 'webgl/OESVertexArrayObject.cpp',
1597 'webgl/OESVertexArrayObject.h', 1598 'webgl/OESVertexArrayObject.h',
1598 'webgl/WebGL2RenderingContext.cpp', 1599 'webgl/WebGL2RenderingContext.cpp',
1599 'webgl/WebGL2RenderingContext.h', 1600 'webgl/WebGL2RenderingContext.h',
1600 'webgl/WebGL2RenderingContextBase.cpp', 1601 'webgl/WebGL2RenderingContextBase.cpp',
1601 'webgl/WebGL2RenderingContextBase.h', 1602 'webgl/WebGL2RenderingContextBase.h',
1602 'webgl/WebGLActiveInfo.h', 1603 'webgl/WebGLActiveInfo.h',
1603 'webgl/WebGLBuffer.cpp', 1604 'webgl/WebGLBuffer.cpp',
1604 'webgl/WebGLBuffer.h', 1605 'webgl/WebGLBuffer.h',
1606 'webgl/WebGLCompressedTextureASTC.cpp',
1607 'webgl/WebGLCompressedTextureASTC.h',
1605 'webgl/WebGLCompressedTextureATC.cpp', 1608 'webgl/WebGLCompressedTextureATC.cpp',
1606 'webgl/WebGLCompressedTextureATC.h', 1609 'webgl/WebGLCompressedTextureATC.h',
1607 'webgl/WebGLCompressedTextureETC1.cpp', 1610 'webgl/WebGLCompressedTextureETC1.cpp',
1608 'webgl/WebGLCompressedTextureETC1.h', 1611 'webgl/WebGLCompressedTextureETC1.h',
1609 'webgl/WebGLCompressedTexturePVRTC.cpp', 1612 'webgl/WebGLCompressedTexturePVRTC.cpp',
1610 'webgl/WebGLCompressedTexturePVRTC.h', 1613 'webgl/WebGLCompressedTexturePVRTC.h',
1611 'webgl/WebGLCompressedTextureS3TC.cpp', 1614 'webgl/WebGLCompressedTextureS3TC.cpp',
1612 'webgl/WebGLCompressedTextureS3TC.h', 1615 'webgl/WebGLCompressedTextureS3TC.h',
1613 'webgl/WebGLContextAttributeHelpers.cpp', 1616 'webgl/WebGLContextAttributeHelpers.cpp',
1614 'webgl/WebGLContextAttributeHelpers.h', 1617 'webgl/WebGLContextAttributeHelpers.h',
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
1795 'webaudio/AudioBasicProcessorHandlerTest.cpp', 1798 'webaudio/AudioBasicProcessorHandlerTest.cpp',
1796 'webaudio/ConvolverNodeTest.cpp', 1799 'webaudio/ConvolverNodeTest.cpp',
1797 'webaudio/DynamicsCompressorNodeTest.cpp', 1800 'webaudio/DynamicsCompressorNodeTest.cpp',
1798 'webaudio/ScriptProcessorNodeTest.cpp', 1801 'webaudio/ScriptProcessorNodeTest.cpp',
1799 'webaudio/StereoPannerNodeTest.cpp', 1802 'webaudio/StereoPannerNodeTest.cpp',
1800 'websockets/DOMWebSocketTest.cpp', 1803 'websockets/DOMWebSocketTest.cpp',
1801 'websockets/DocumentWebSocketChannelTest.cpp', 1804 'websockets/DocumentWebSocketChannelTest.cpp',
1802 ], 1805 ],
1803 }, 1806 },
1804 } 1807 }
OLDNEW
« no previous file with comments | « no previous file | Source/modules/webgl/WebGL2RenderingContext.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698