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

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

Issue 10669030: Pass the build type to ant build (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Refine the patch according to jochen's comments Created 8 years, 5 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 | content/content_shell.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #!/bin/bash
2
3 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
4 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file.
6
7 set -eu
8
9 # A helper script to help convert the values of the fifth parameter for
10 # ant building: 'Debug' -> 'debug'; 'Release' -> 'release'.
11 # It's used by content/content_shell.gypi
Mark Mentovai 2012/07/10 12:21:37 Then why does it live here in some far-off directo
John Grabowski 2012/07/10 14:16:05 Because I suggested he move it? There are no othe
12
13 buildtype="$(tr '[A-Z]' '[a-z]' <<< "${6}")"
14
15 # TODO(yongsheng): enable build type by adding "${buildtype}" into the
16 # end of parameter list once the workflow is ready to support release
17 # mode.
18 exec "${1}" "${2}" "${3}" "${4}" "${5}"
OLDNEW
« no previous file with comments | « no previous file | content/content_shell.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698