Morten Krogh-Jespersen | 04c7c30 | 2019-10-01 15:04:33 +0200 | [diff] [blame] | 1 | # 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 | |
| 5 | import utils |
| 6 | import os |
| 7 | |
Morten Krogh-Jespersen | 30654dc | 2019-10-08 10:41:56 +0200 | [diff] [blame] | 8 | ANDROID_L_API = '21' |
| 9 | |
Morten Krogh-Jespersen | 04c7c30 | 2019-10-01 15:04:33 +0200 | [diff] [blame] | 10 | VERSIONS = { |
| 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-Jespersen | 30654dc | 2019-10-08 10:41:56 +0200 | [diff] [blame] | 17 | }, |
| 18 | 'proguarded': { |
| 19 | 'inputs': [utils.PINNED_R8_JAR], |
| 20 | 'libraries' : [utils.RT_JAR], |
| 21 | 'min-api' : ANDROID_L_API, |
Morten Krogh-Jespersen | 04c7c30 | 2019-10-01 15:04:33 +0200 | [diff] [blame] | 22 | } |
| 23 | } |
| 24 | } |