blob: c4c509ff6f4ab72b6c80bf25fedd80d46ecf4e04 [file] [log] [blame]
Morten Krogh-Jespersen04c7c302019-10-01 15:04:33 +02001# Copyright (c) 2019, the R8 project authors. Please see the AUTHORS file
2# for details. All rights reserved. Use of this source code is governed by a
3# BSD-style license that can be found in the LICENSE file.
4
5import utils
6import os
7
Morten Krogh-Jespersen30654dc2019-10-08 10:41:56 +02008ANDROID_L_API = '21'
9
Morten Krogh-Jespersen04c7c302019-10-01 15:04:33 +020010VERSIONS = {
11 'cf': {
12 'deploy': {
13 'inputs': [utils.PINNED_R8_JAR],
14 'pgconf': [os.path.join(utils.REPO_ROOT, 'src', 'main', 'keep.txt')],
15 'libraries' : [utils.RT_JAR],
16 'flags': '--classfile',
Morten Krogh-Jespersen30654dc2019-10-08 10:41:56 +020017 },
18 'proguarded': {
19 'inputs': [utils.PINNED_R8_JAR],
20 'libraries' : [utils.RT_JAR],
21 'min-api' : ANDROID_L_API,
Morten Krogh-Jespersen04c7c302019-10-01 15:04:33 +020022 }
23 }
24}