summaryrefslogtreecommitdiffstats
path: root/mojo/tools
diff options
context:
space:
mode:
authorsky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-04-05 20:14:17 +0000
committersky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-04-05 20:14:17 +0000
commit1c142a5d402b0a0a33ca345dbc65af719ff7f294 (patch)
tree83c68ddffcb391bf1acb218aac1cd19d91df7cf8 /mojo/tools
parentf6c30c92b7d0d3202bced1f0b991dc0e72a3ff66 (diff)
downloadchromium_src-1c142a5d402b0a0a33ca345dbc65af719ff7f294.zip
chromium_src-1c142a5d402b0a0a33ca345dbc65af719ff7f294.tar.gz
chromium_src-1c142a5d402b0a0a33ca345dbc65af719ff7f294.tar.bz2
Removes use_mojo
Now that we've sorted out the build issues on all platforms it can be removed. BUG=353602 TEST=none R=jam@chromium.org TBR=tsepez@chromium.org Review URL: https://codereview.chromium.org/226213002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@262032 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'mojo/tools')
-rwxr-xr-xmojo/tools/mojob.sh17
1 files changed, 0 insertions, 17 deletions
diff --git a/mojo/tools/mojob.sh b/mojo/tools/mojob.sh
index e4f9697..291012c 100755
--- a/mojo/tools/mojob.sh
+++ b/mojo/tools/mojob.sh
@@ -90,9 +90,6 @@ should_do_Release() {
COMPILER=clang
# Valid values: shared or static.
COMPONENT=shared
-# TODO(vtl): Remove this. crbug.com/353602
-# Valid values: enabled or disabled.
-USE_MOJO=enabled
make_gyp_defines() {
local options=()
# Always include these options.
@@ -113,14 +110,6 @@ make_gyp_defines() {
options+=("component=static_library")
;;
esac
- case "$USE_MOJO" in
- enabled)
- options+=("use_mojo=1")
- ;;
- disabled)
- options+=("use_mojo=0")
- ;;
- esac
echo ${options[*]}
}
@@ -191,12 +180,6 @@ for arg in "$@"; do
--static)
COMPONENT=static
;;
- --use-mojo)
- USE_MOJO=enabled
- ;;
- --no-use-mojo)
- USE_MOJO=disabled
- ;;
*)
echo "Unknown command \"${arg}\". Try \"$(basename "$0") help\"."
exit 1