summaryrefslogtreecommitdiff
path: root/chromium/webkit
diff options
context:
space:
mode:
authorJocelyn Turcotte <jocelyn.turcotte@digia.com>2013-10-30 14:27:28 +0100
committerJocelyn Turcotte <jocelyn.turcotte@digia.com>2013-11-01 11:20:41 +0100
commitedc469353a41710cf12a78211b9bc88adc4be9fe (patch)
treeea73fc3d6376a86ecc05c98e3a11f3fd3de61e81 /chromium/webkit
parenteca36f26ad3765fdaf954735bd5744e2a16154f1 (diff)
downloadqtwebengine-chromium-edc469353a41710cf12a78211b9bc88adc4be9fe.tar.gz
Fix the build with a GL ES2 configured Qt.
GLES/gl2.h is included through Qt public headers and the copy of Chromium is used since its include path comes before /usr/include. The problem is that this header is incompatible for some reasons, one of them being that it converts all GL function symbols from gl* to GLES2*. Qt layer code should always need to go through GL directly, so make sure that only GYP targets that depend directly on gpu.gyp, khronos.gyp or webkit_gpu.gyp will have an include path pointing to those headers. Replace all_dependent_settings with direct_dependent_settings and control which target inherits this include_dirs from its dependencies by using export_dependent_settings. Change-Id: Id4d98fe22ef8b778b5ba8da300dad28e69507732 Reviewed-by: Zeno Albisser <zeno.albisser@digia.com> Reviewed-by: Pierre Rossi <pierre.rossi@gmail.com>
Diffstat (limited to 'chromium/webkit')
-rw-r--r--chromium/webkit/common/gpu/webkit_gpu.gyp3
1 files changed, 3 insertions, 0 deletions
diff --git a/chromium/webkit/common/gpu/webkit_gpu.gyp b/chromium/webkit/common/gpu/webkit_gpu.gyp
index 5390c9a6a39..effc5b7135b 100644
--- a/chromium/webkit/common/gpu/webkit_gpu.gyp
+++ b/chromium/webkit/common/gpu/webkit_gpu.gyp
@@ -26,6 +26,9 @@
'<(DEPTH)/ui/gl/gl.gyp:gl',
'<(DEPTH)/ui/ui.gyp:ui',
],
+ 'export_dependent_settings': [
+ '<(DEPTH)/gpu/gpu.gyp:gles2_implementation',
+ ],
'sources': [
# This list contains all .h and .cc in gpu except for test code.
'context_provider_in_process.cc',