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

Side by Side Diff: build/android/buildbot_functions.sh

Issue 10454039: Fix regyp on android_test try bot. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/bin/bash 1 #!/bin/bash
2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 # 5 #
6 # Bash functions used by buildbot annotator scripts for the android 6 # Bash functions used by buildbot annotator scripts for the android
7 # build of chromium. Executing this script should not perform actions 7 # build of chromium. Executing this script should not perform actions
8 # other than setting variables and defining of functions. 8 # other than setting variables and defining of functions.
9 9
10 # Number of jobs on the compile line; e.g. make -j"${JOBS}" 10 # Number of jobs on the compile line; e.g. make -j"${JOBS}"
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after
189 # Talk to maruel for details. 189 # Talk to maruel for details.
190 echo "@@@BUILD_STEP compile@@@" 190 echo "@@@BUILD_STEP compile@@@"
191 bb_goma_make 191 bb_goma_make
192 } 192 }
193 193
194 # Re-gyp and compile with unit test bundles configured as shlibs for 194 # Re-gyp and compile with unit test bundles configured as shlibs for
195 # the native test runner. Experimental for now. Once the native test 195 # the native test runner. Experimental for now. Once the native test
196 # loader is on by default, this entire function becomes obsolete. 196 # loader is on by default, this entire function becomes obsolete.
197 function bb_compile_apk_tests { 197 function bb_compile_apk_tests {
198 echo "@@@BUILD_STEP Re-gyp for the native test runner@@@" 198 echo "@@@BUILD_STEP Re-gyp for the native test runner@@@"
199 # Setup goma again. Not doing this breaks the android_gyp step.
200 bb_setup_goma_internal
John Grabowski 2012/05/25 22:09:32 This only makes sense to me if somehow goma caches
201
199 GYP_DEFINES="$GYP_DEFINES gtest_target_type=shared_library" android_gyp 202 GYP_DEFINES="$GYP_DEFINES gtest_target_type=shared_library" android_gyp
200 203
201 echo "@@@BUILD_STEP Native test runner compile@@@" 204 echo "@@@BUILD_STEP Native test runner compile@@@"
202 bb_goma_make 205 bb_goma_make
203 } 206 }
204 207
205 # Experimental compile step; does not turn the tree red if it fails. 208 # Experimental compile step; does not turn the tree red if it fails.
206 function bb_compile_experimental { 209 function bb_compile_experimental {
207 # Linking DumpRenderTree appears to hang forever? 210 # Linking DumpRenderTree appears to hang forever?
208 EXPERIMENTAL_TARGETS="android_experimental" 211 EXPERIMENTAL_TARGETS="android_experimental"
(...skipping 18 matching lines...) Expand all
227 function bb_run_tests { 230 function bb_run_tests {
228 echo "@@@BUILD_STEP Run Tests on actual hardware@@@" 231 echo "@@@BUILD_STEP Run Tests on actual hardware@@@"
229 build/android/run_tests.py --xvfb --verbose 232 build/android/run_tests.py --xvfb --verbose
230 } 233 }
231 234
232 # Run APK tests on an actual device. 235 # Run APK tests on an actual device.
233 function bb_run_apk_tests { 236 function bb_run_apk_tests {
234 echo "@@@BUILD_STEP Run APK Tests on actual hardware@@@" 237 echo "@@@BUILD_STEP Run APK Tests on actual hardware@@@"
235 build/android/run_tests.py --xvfb --verbose --apk=True 238 build/android/run_tests.py --xvfb --verbose --apk=True
236 } 239 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698