devops: fix chromium-win build (#5378)

- add missing build targets
- do not copy *.pdb files in folders
This commit is contained in:
Andrey Lushnikov 2021-02-09 08:49:59 -08:00 committed by GitHub
parent 1efcf442fb
commit d5a51a25b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 3 deletions

View File

@ -118,7 +118,8 @@ compile_chromium() {
"nacl_irt_x86_64.nexe"
"notification_helper.exe"
"resources.pak"
"swiftshader"
"swiftshader/libEGL.dll"
"swiftshader/libGLESv2.dll"
"v8_context_snapshot.bin"
)
else
@ -202,6 +203,7 @@ EOF
COPY_COMMAND="ditto"
fi
for file in ${CHROMIUM_FILES_TO_ARCHIVE[@]}; do
mkdir -p "output/${CHROMIUM_FOLDER_NAME}/$(dirname $file)"
$COPY_COMMAND "${CR_CHECKOUT_PATH}/src/out/Default/${file}" "output/${CHROMIUM_FOLDER_NAME}/${file}"
done
if [[ $1 == "--compile-win"* ]]; then

View File

@ -1,2 +1,2 @@
CALL gn gen out/Default
CALL autoninja -C out/Default chrome
CALL autoninja -C out/Default chrome eventlog_provider

View File

@ -1,2 +1,2 @@
CALL gn gen out/Default
CALL ninja -j 200 -C out/Default chrome
CALL ninja -j 200 -C out/Default chrome eventlog_provider