1*37f5703cSAndroid Build Coastguard Worker/* 2*37f5703cSAndroid Build Coastguard Worker * Copyright (C) 2023 The Android Open Source Project 3*37f5703cSAndroid Build Coastguard Worker * 4*37f5703cSAndroid Build Coastguard Worker * Licensed under the Apache License, Version 2.0 (the "License"); 5*37f5703cSAndroid Build Coastguard Worker * you may not use this file except in compliance with the License. 6*37f5703cSAndroid Build Coastguard Worker * You may obtain a copy of the License at 7*37f5703cSAndroid Build Coastguard Worker * 8*37f5703cSAndroid Build Coastguard Worker * http://www.apache.org/licenses/LICENSE-2.0 9*37f5703cSAndroid Build Coastguard Worker * 10*37f5703cSAndroid Build Coastguard Worker * Unless required by applicable law or agreed to in writing, software 11*37f5703cSAndroid Build Coastguard Worker * distributed under the License is distributed on an "AS IS" BASIS, 12*37f5703cSAndroid Build Coastguard Worker * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13*37f5703cSAndroid Build Coastguard Worker * See the License for the specific language governing permissions and 14*37f5703cSAndroid Build Coastguard Worker * limitations under the License. 15*37f5703cSAndroid Build Coastguard Worker */ 16*37f5703cSAndroid Build Coastguard Worker 17*37f5703cSAndroid Build Coastguard Workergenrule { 18*37f5703cSAndroid Build Coastguard Worker name: "android-smali_version", 19*37f5703cSAndroid Build Coastguard Worker defaults: ["android-smali_version_defaults"], 20*37f5703cSAndroid Build Coastguard Worker out: ["android-smali.properties"], 21*37f5703cSAndroid Build Coastguard Worker} 22*37f5703cSAndroid Build Coastguard Worker 23*37f5703cSAndroid Build Coastguard Worker// build smali jar 24*37f5703cSAndroid Build Coastguard Worker// ============================================================ 25*37f5703cSAndroid Build Coastguard Worker 26*37f5703cSAndroid Build Coastguard Workerjava_binary_host { 27*37f5703cSAndroid Build Coastguard Worker name: "android-smali", 28*37f5703cSAndroid Build Coastguard Worker 29*37f5703cSAndroid Build Coastguard Worker srcs: [ 30*37f5703cSAndroid Build Coastguard Worker "src/main/java/**/*.java", 31*37f5703cSAndroid Build Coastguard Worker ":third_party-smali", 32*37f5703cSAndroid Build Coastguard Worker ], 33*37f5703cSAndroid Build Coastguard Worker 34*37f5703cSAndroid Build Coastguard Worker manifest: "manifest.txt", 35*37f5703cSAndroid Build Coastguard Worker 36*37f5703cSAndroid Build Coastguard Worker static_libs: [ 37*37f5703cSAndroid Build Coastguard Worker "guava", 38*37f5703cSAndroid Build Coastguard Worker "antlr-runtime", 39*37f5703cSAndroid Build Coastguard Worker "jcommander", 40*37f5703cSAndroid Build Coastguard Worker "smali-dexlib2", 41*37f5703cSAndroid Build Coastguard Worker "android-smali-util", 42*37f5703cSAndroid Build Coastguard Worker ], 43*37f5703cSAndroid Build Coastguard Worker 44*37f5703cSAndroid Build Coastguard Worker java_resources: [":android-smali_version"], 45*37f5703cSAndroid Build Coastguard Worker 46*37f5703cSAndroid Build Coastguard Worker wrapper: ":android-smali_script", 47*37f5703cSAndroid Build Coastguard Worker} 48