зеркало из https://github.com/mozilla/gecko-dev.git
108 строки
2.9 KiB
Python
108 строки
2.9 KiB
Python
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
|
# vim: set filetype=python:
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
with Files('**'):
|
|
BUG_COMPONENT = ('Core', 'Graphics: WebRender')
|
|
|
|
EXPORTS.mozilla.webrender += [
|
|
'RenderBufferTextureHost.h',
|
|
'RenderCompositor.h',
|
|
'RenderCompositorOGL.h',
|
|
'RenderEGLImageTextureHost.h',
|
|
'RendererOGL.h',
|
|
'RendererScreenshotGrabber.h',
|
|
'RenderSharedSurfaceTextureHost.h',
|
|
'RenderTextureHost.h',
|
|
'RenderTextureHostOGL.h',
|
|
'RenderThread.h',
|
|
'webrender_ffi.h',
|
|
'WebRenderAPI.h',
|
|
'WebRenderTypes.h',
|
|
]
|
|
|
|
UNIFIED_SOURCES += [
|
|
'Moz2DImageRenderer.cpp',
|
|
'RenderBufferTextureHost.cpp',
|
|
'RenderCompositor.cpp',
|
|
'RenderCompositorOGL.cpp',
|
|
'RenderEGLImageTextureHost.cpp',
|
|
'RendererOGL.cpp',
|
|
'RendererScreenshotGrabber.cpp',
|
|
'RenderSharedSurfaceTextureHost.cpp',
|
|
'RenderTextureHost.cpp',
|
|
'RenderTextureHostOGL.cpp',
|
|
'RenderThread.cpp',
|
|
'WebRenderAPI.cpp',
|
|
'WebRenderTypes.cpp',
|
|
]
|
|
|
|
if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'cocoa':
|
|
EXPORTS.mozilla.webrender += [
|
|
'RenderMacIOSurfaceTextureHostOGL.h',
|
|
]
|
|
UNIFIED_SOURCES += [
|
|
'RenderMacIOSurfaceTextureHostOGL.cpp',
|
|
]
|
|
|
|
if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'android':
|
|
EXPORTS.mozilla.webrender += [
|
|
'RenderAndroidSurfaceTextureHostOGL.h',
|
|
'RenderCompositorEGL.h',
|
|
]
|
|
UNIFIED_SOURCES += [
|
|
'RenderAndroidSurfaceTextureHostOGL.cpp',
|
|
'RenderCompositorEGL.cpp',
|
|
]
|
|
|
|
if CONFIG['MOZ_ENABLE_D3D10_LAYER']:
|
|
DEFINES['MOZ_ENABLE_D3D10_LAYER'] = True
|
|
EXPORTS.mozilla.webrender += [
|
|
'DCLayerTree.h',
|
|
'RenderCompositorANGLE.h',
|
|
'RenderD3D11TextureHostOGL.h',
|
|
]
|
|
UNIFIED_SOURCES += [
|
|
'RenderD3D11TextureHostOGL.cpp',
|
|
]
|
|
SOURCES += [
|
|
'DCLayerTree.cpp',
|
|
'RenderCompositorANGLE.cpp',
|
|
]
|
|
|
|
if CONFIG['MOZ_WAYLAND']:
|
|
EXPORTS.mozilla.webrender += [
|
|
'RenderCompositorEGL.h',
|
|
'RenderWaylandDMABUFTextureHostOGL.h',
|
|
]
|
|
SOURCES += [
|
|
'RenderCompositorEGL.cpp',
|
|
'RenderWaylandDMABUFTextureHostOGL.cpp',
|
|
]
|
|
|
|
if CONFIG['MOZ_WIDGET_TOOLKIT'] in ('android', 'gtk'):
|
|
CXXFLAGS += CONFIG['MOZ_CAIRO_CFLAGS']
|
|
CXXFLAGS += CONFIG['CAIRO_FT_CFLAGS']
|
|
|
|
if CONFIG['COMPILE_ENVIRONMENT']:
|
|
EXPORTS.mozilla.webrender += [
|
|
'!webrender_ffi_generated.h',
|
|
]
|
|
|
|
GeneratedFile('webrender_ffi_generated.h',
|
|
script='/layout/style/RunCbindgen.py', entry_point='generate',
|
|
inputs=[
|
|
'/gfx/webrender_bindings',
|
|
'/gfx/wr/webrender',
|
|
'/gfx/wr/webrender_api',
|
|
])
|
|
|
|
|
|
include('/ipc/chromium/chromium-config.mozbuild')
|
|
|
|
FINAL_LIBRARY = 'xul'
|
|
|
|
CXXFLAGS += CONFIG['TK_CFLAGS']
|