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

Unified 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 jrg'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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | content/content_shell.gypi » ('j') | content/content_shell.gypi » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/content_shell_ant_helper.sh
diff --git a/build/android/content_shell_ant_helper.sh b/build/android/content_shell_ant_helper.sh
new file mode 100755
index 0000000000000000000000000000000000000000..26cb3657db8a5773971a710694c51a77022b4eef
--- /dev/null
+++ b/build/android/content_shell_ant_helper.sh
@@ -0,0 +1,15 @@
+#!/bin/bash
+
+# Copyright (c) 2012 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+set -eu
+
+# A helper script to help convert the values of the fifth parameter for
+# ant building: 'Debug' -> 'debug'; 'Release' -> 'release'.
+# It's used by content/content_shell.gypi
+
+buildtype="$(tr '[A-Z]' '[a-z]' <<< "${6}")"
+
+exec "${1}" "${2}" "${3}" "${4}" "${5}" "${buildtype}"
« no previous file with comments | « no previous file | content/content_shell.gypi » ('j') | content/content_shell.gypi » ('J')

Powered by Google App Engine
This is Rietveld 408576698