summaryrefslogtreecommitdiffstats
path: root/src/core/config/windows.pri
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/config/windows.pri')
-rw-r--r--src/core/config/windows.pri65
1 files changed, 0 insertions, 65 deletions
diff --git a/src/core/config/windows.pri b/src/core/config/windows.pri
index dddb2e953..bc086277f 100644
--- a/src/core/config/windows.pri
+++ b/src/core/config/windows.pri
@@ -1,5 +1,3 @@
-GYP_ARGS += "-D qt_os=\"win32\" -I config/windows.gypi"
-
include(common.pri)
gn_args += \
@@ -12,21 +10,6 @@ gn_args += \
is_multi_dll_chrome=false \
win_linker_timing=true
-GYP_CONFIG += \
- disable_nacl=1 \
- remoting=0 \
- use_ash=0
-
-# Libvpx build needs additional search path on Windows.
-GYP_ARGS += "-D qtwe_chromium_obj_dir=\"$$OUT_PWD/$$getConfigDir()/obj/$${getChromiumSrcDir()}\""
-
-# Use path from environment for perl, bison and gperf instead of values set in WebKit's core.gypi.
-GYP_ARGS += "-D perl_exe=\"perl.exe\" -D bison_exe=\"bison.exe\" -D gperf_exe=\"gperf.exe\""
-
-# Gyp's parallel processing is broken on Windows
-GYP_ARGS += "--no-parallel"
-
-
isDeveloperBuild() {
gn_args += \
is_win_fastlink=true \
@@ -36,52 +19,6 @@ isDeveloperBuild() {
use_incremental_linking=false
}
-qtConfig(angle) {
- #FIXME: Expect LIBQTANGLE_NAME to be always set
- #FIXME: Replace qt_egl_library and qt_glesv2_library into qt_angle_library
- LIB_EGL=libEGL
- LIB_GLESV2=libGLESv2
- !isEmpty(LIBQTANGLE_NAME) {
- LIB_EGL=$$LIBQTANGLE_NAME
- LIB_GLESV2=$$LIBQTANGLE_NAME
- }
- CONFIG(release, debug|release) {
- GYP_ARGS += "-D qt_egl_library=\"$${LIB_EGL}.lib\" -D qt_glesv2_library=\"$${LIB_GLESV2}.lib\""
- } else {
- GYP_ARGS += "-D qt_egl_library=\"$${LIB_EGL}d.lib\" -D qt_glesv2_library=\"$${LIB_GLESV2}d.lib\""
- }
- GYP_ARGS += "-D qt_gl=\"angle\""
-} else {
- GYP_ARGS += "-D qt_gl=\"opengl\""
-}
-
-defineTest(usingMSVC32BitCrossCompiler) {
- CL_DIR =
- for(dir, QMAKE_PATH_ENV) {
- exists($$dir/cl.exe) {
- CL_DIR = $$dir
- break()
- }
- }
- isEmpty(CL_DIR): {
- warning(Cannot determine location of cl.exe.)
- return(false)
- }
- CL_DIR = $$system_path($$CL_DIR)
- CL_DIR = $$split(CL_DIR, \\)
- CL_PLATFORM = $$last(CL_DIR)
- equals(CL_PLATFORM, amd64_x86): return(true)
- return(false)
-}
-
-msvc:contains(QT_ARCH, "i386"):!usingMSVC32BitCrossCompiler() {
- # The 32 bit MSVC linker runs out of memory if we do not remove all debug information.
- GYP_CONFIG += fastbuild=2
-} else {
- # Chromium builds with debug info in release by default but Qt doesn't
- CONFIG(release, debug|release):!force_debug_info: GYP_CONFIG += fastbuild=1
-}
-
msvc {
equals(MSVC_VER, 14.0) {
MSVS_VERSION = 2015
@@ -91,7 +28,6 @@ msvc {
fatal("Visual Studio compiler version \"$$MSVC_VER\" is not supported by Qt WebEngine")
}
- GYP_ARGS += "-G msvs_version=$$MSVS_VERSION"
gn_args += visual_studio_version=$$MSVS_VERSION
SDK_PATH = $$(WINDOWSSDKDIR)
@@ -100,7 +36,6 @@ msvc {
gn_args += windows_sdk_path=$$shell_quote($$SDK_PATH)
contains(QT_ARCH, "i386"): gn_args += target_cpu=\"x86\"
- isBuildingOnWin32(): GYP_ARGS += "-D windows_sdk_path=\"C:/Program Files/Windows Kits/10\""
} else {
fatal("Qt WebEngine for Windows can only be built with the Microsoft Visual Studio C++ compiler")