summaryrefslogtreecommitdiffstats
path: root/tools/qmake
diff options
context:
space:
mode:
authorPierre Rossi <pierre.rossi@digia.com>2013-11-20 13:45:03 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-12-03 11:57:27 +0100
commit430f202718f7311c541a7243870719e2df456f2f (patch)
tree12f089ba18081aa724761848be4b7bdd5b24d7c0 /tools/qmake
parent7f980badcf1ec600f6a0a8f205a284240c501a64 (diff)
Ship repacked .pak files
We used to wrap various .pak files in qrc files, but it turns out to be very memory inefficient compared to chromium's approach of mmaping those files. Drop the pak->qrc logic and instead add some pure gyp targets to repack the resources. We then install those with qmake and look them up with QLibraryInfo. Change-Id: I6dd3cedf6afa626ed181463911fef8885c9e9add Reviewed-by: Andras Becsi <andras.becsi@digia.com>
Diffstat (limited to 'tools/qmake')
-rw-r--r--tools/qmake/mkspecs/features/gyp_generator.prf20
1 files changed, 1 insertions, 19 deletions
diff --git a/tools/qmake/mkspecs/features/gyp_generator.prf b/tools/qmake/mkspecs/features/gyp_generator.prf
index 96de5e280..6ae886a33 100644
--- a/tools/qmake/mkspecs/features/gyp_generator.prf
+++ b/tools/qmake/mkspecs/features/gyp_generator.prf
@@ -114,11 +114,6 @@ macx {
GYP_CONTENTS += " ]," \
" },"
-!isEmpty(GYPDEPENDENCIES) {
- GYP_CONTENTS += " 'dependencies': ["
- for (dep, GYPDEPENDENCIES): GYP_CONTENTS += " '$$dep',"
- GYP_CONTENTS += " ],"
-}
!isEmpty(DEFINES) {
GYP_CONTENTS += " 'defines': ["
for (define, DEFINES): GYP_CONTENTS += " '$$define',"
@@ -172,20 +167,7 @@ GYP_CONTENTS += " ],"
GYP_CONTENTS += " ],"
}
-# Some needed files (like devtools_resources.pak) are both _generated_ as part of the build process and are _needed_ as part of the build process.
-!isEmpty(COPY_FILES) {
- GYP_CONTENTS += " 'copies': ["
- for (index, 0..$$size(COPY_FILES)) {
- copyFile = $$member(COPY_FILES, $$index)
- !isEmpty(copyFile) {
- copyDestination = $$member(COPY_DESTINATIONS, $$index)
- GYP_CONTENTS += " {'destination': '$$copyDestination', 'files': ['$$copyFile']},"
- }
- }
- GYP_CONTENTS += " ],"
-}
-
-# Generate the actions for moc, copy
+# Generate the actions for moc and rcc
GYP_CONTENTS += " 'actions': ["
for(resourcefile, RESOURCES): GYP_CONTENTS += $$rccAction($$resourcefile)
for(header, MOCABLE_HEADERS): GYP_CONTENTS += $$mocAction($$header)