Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(82)

Side by Side Diff: ports/sdl2-tests/build.sh

Issue 1804293003: Add support for new pnacl native toolchain driver (Closed) Base URL: https://chromium.googlesource.com/webports.git@master
Patch Set: Fix according to Brad's comments Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 # Copyright (c) 2011 The Native Client Authors. All rights reserved. 1 # Copyright (c) 2011 The Native Client Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 NACLPORTS_CFLAGS+=" -std=gnu99" 5 NACLPORTS_CFLAGS+=" -std=gnu99"
6 6
7 EXECUTABLES=" 7 EXECUTABLES="
8 checkkeys${NACL_EXEEXT} 8 checkkeys${NACL_EXEEXT}
9 controllermap${NACL_EXEEXT} 9 controllermap${NACL_EXEEXT}
10 loopwave${NACL_EXEEXT} 10 loopwave${NACL_EXEEXT}
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 InstallStep() { 77 InstallStep() {
78 Remove ${PUBLISH_DIR} 78 Remove ${PUBLISH_DIR}
79 MakeDir ${PUBLISH_DIR} 79 MakeDir ${PUBLISH_DIR}
80 LogExecute cp *${NACL_EXEEXT} ${PUBLISH_DIR} 80 LogExecute cp *${NACL_EXEEXT} ${PUBLISH_DIR}
81 ChangeDir ${SRC_DIR}/test 81 ChangeDir ${SRC_DIR}/test
82 LogExecute cp *.bmp *.wav *.xbm *.dat *.txt ${PUBLISH_DIR} 82 LogExecute cp *.bmp *.wav *.xbm *.dat *.txt ${PUBLISH_DIR}
83 ChangeDir ${PUBLISH_DIR} 83 ChangeDir ${PUBLISH_DIR}
84 for NEXE in ${EXECUTABLES}; do 84 for NEXE in ${EXECUTABLES}; do
85 LogExecute "${NACL_SDK_ROOT}/tools/create_html.py" ${NEXE} 85 LogExecute "${NACL_SDK_ROOT}/tools/create_html.py" ${NEXE}
86 done 86 done
87 if [ ${NACL_ARCH} = "pnacl" ]; then 87 if [ ${NACL_ARCH} = "pnacl" -o ${NACL_ARCH} = "le32" ]; then
88 sed -i.bak 's/x-nacl/x-pnacl/' *.html 88 sed -i.bak 's/x-nacl/x-pnacl/' *.html
89 fi 89 fi
90 } 90 }
OLDNEW
« make_all.sh ('K') | « ports/sdl-tests/nacl.patch ('k') | ports/sdl2-tests/nacl.patch » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698