summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@theqtcompany.com>2016-04-29 13:58:54 +0200
committerAllan Sandfeld Jensen <allan.jensen@theqtcompany.com>2016-04-29 15:50:22 +0000
commita0017319c730127cd3a726392fbbb6360c1ad418 (patch)
tree5ef80620d671c0e239c084eab71eb9dbea073375 /src
parentf5aaf48aac2a559f6576602ca34d68d94ea878d7 (diff)
Disable extensions at compile time
We don't use extensions and can disable them. Change-Id: I2f1ff2a177cf60d229b599e8dffc4ee55b46b920 Reviewed-by: Michael BrĂ¼ning <michael.bruning@theqtcompany.com>
Diffstat (limited to 'src')
-rw-r--r--src/core/chrome_qt.gyp2
-rw-r--r--src/core/config/common.pri2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/core/chrome_qt.gyp b/src/core/chrome_qt.gyp
index d7e6cc2e9..f2d7c5831 100644
--- a/src/core/chrome_qt.gyp
+++ b/src/core/chrome_qt.gyp
@@ -132,8 +132,6 @@
'<(DEPTH)/chrome/browser/printing/print_job_worker_owner.h',
'<(DEPTH)/chrome/browser/printing/printer_query.cc',
'<(DEPTH)/chrome/browser/printing/printer_query.h',
- '<(DEPTH)/extensions/browser/notification_types.h',
- '<(DEPTH)/extensions/browser/notification_types.cc',
],
'dependencies': [
'<(chromium_src_dir)/third_party/mojo/mojo_public.gyp:mojo_cpp_bindings',
diff --git a/src/core/config/common.pri b/src/core/config/common.pri
index 96506cd37..5822bc589 100644
--- a/src/core/config/common.pri
+++ b/src/core/config/common.pri
@@ -8,3 +8,5 @@ GYP_CONFIG += v8_use_external_startup_data=0
GYP_CONFIG += enable_basic_printing=1 enable_print_preview=0
# WebSpeech requires Google API keys and adds dependencies on speex and flac.
GYP_CONFIG += enable_web_speech=0
+# We do not use or even include the extensions
+GYP_CONFIG += enable_extensions=0