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

Side by Side Diff: ports/corelibs/build.sh

Issue 1555913002: Build gtest from source rather than using SDK-provided version (Closed) Base URL: https://chromium.googlesource.com/webports.git@master
Patch Set: Created 4 years, 11 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
« no previous file with comments | « build_tools/test_build_tools.py ('k') | ports/devenv/build.sh » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 The Native Client Authors. All rights reserved. 1 # Copyright 2015 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 BuildStep() { 5 BuildStep() {
6 return 6 return
7 } 7 }
8 8
9 InstallStep() { 9 InstallStep() {
10 MakeDir ${INSTALL_DIR}${PREFIX} 10 MakeDir ${INSTALL_DIR}${PREFIX}
11 ChangeDir ${INSTALL_DIR}${PREFIX} 11 ChangeDir ${INSTALL_DIR}${PREFIX}
12 12
13 if [ "${NACL_SHARED}" = "1" ]; then 13 if [ "${NACL_SHARED}" = "1" ]; then
14 MakeDir lib 14 MakeDir lib
15 # Copy core libraries 15 # Copy core libraries
16 LogExecute cp -r ${NACL_SDK_LIB}/*.so* lib/ 16 LogExecute cp -r ${NACL_SDK_LIB}/*.so* lib/
17 17
18 # Copy SDK libs 18 # Copy SDK libs
19 LogExecute cp -r ${NACL_SDK_LIBDIR}/lib*.so* lib/ 19 LogExecute cp -r ${NACL_SDK_LIBDIR}/lib*.so* lib/
20 LogExecute rm -fr lib/libgtest.*so*
21 LogExecute rm -fr lib/libgmock.*so*
22 fi 20 fi
23 } 21 }
OLDNEW
« no previous file with comments | « build_tools/test_build_tools.py ('k') | ports/devenv/build.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698