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

Side by Side Diff: ports/font-util/build.sh

Issue 1285953002: Switch devenv to use pkg packages (Closed) Base URL: https://chromium.googlesource.com/external/naclports.git@toolchain_install
Patch Set: Created 5 years, 4 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) 2013 The Native Client Authors. All rights reserved. 1 # Copyright (c) 2013 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 # The host build of this tool is needed by its dependents. 5 # The host build of this tool is needed by its dependents.
6 HOST_BUILD_DIR=${WORK_DIR}/build_host 6 HOST_BUILD_DIR=${WORK_DIR}/build_host
7 HOST_INSTALL_DIR=${WORK_DIR}/install_host 7 HOST_INSTALL_DIR=${WORK_DIR}/install_host
8 8
9 EXECUTABLES="bdftruncate${NACL_EXEEXT} ucs2any${NACL_EXEEXT}" 9 EXECUTABLES="bdftruncate${NACL_EXEEXT} ucs2any${NACL_EXEEXT}"
10 10
(...skipping 15 matching lines...) Expand all
26 LogExecute make -j${OS_JOBS} 26 LogExecute make -j${OS_JOBS}
27 LogExecute make install 27 LogExecute make install
28 } 28 }
29 29
30 ConfigureStep() { 30 ConfigureStep() {
31 BuildForHost 31 BuildForHost
32 Banner "Building for NaCl" 32 Banner "Building for NaCl"
33 ChangeDir ${BUILD_DIR} 33 ChangeDir ${BUILD_DIR}
34 DefaultConfigureStep 34 DefaultConfigureStep
35 } 35 }
36
37 PublishStep() {
38 PublishByArchForDevEnv
39 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698