blob: 372195567057d9a4f8b4a5aec1198cd11e9c338e [file] [log] [blame]
Igor Murashkin42691732017-06-26 15:57:31 -07001#!/bin/bash
2#
3# Copyright 2017 The Android Open Source Project
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16
17# This checker test is incompatible with jack bytecode output,
18# so force it to use javac/dx.
19export USE_JACK=false
20# Also disable desugar because it is missing in jack platform builds.
21export DESUGAR=false
22
Alan Leung69107b32017-09-18 17:31:17 -070023# See b/65168732
Alan Leungdfadb592017-10-10 01:26:05 -070024export USE_D8=false
Alan Leung69107b32017-09-18 17:31:17 -070025
Igor Murashkin42691732017-06-26 15:57:31 -070026./default-build "$@"