1// 2// Copyright (C) 2008 The Android Open Source Project 3// 4// Licensed under the Apache License, Version 2.0 (the "License"); 5// you may not use this file except in compliance with the License. 6// You may obtain a copy of the License at 7// 8// http://www.apache.org/licenses/LICENSE-2.0 9// 10// Unless required by applicable law or agreed to in writing, software 11// distributed under the License is distributed on an "AS IS" BASIS, 12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13// See the License for the specific language governing permissions and 14// limitations under the License. 15// 16 17package { 18 default_applicable_licenses: ["Android-Apache-2.0"], 19} 20 21java_library_host { 22 name: "layoutlib", 23 24 srcs: ["src/**/*.java"], 25 java_resource_dirs: ["resources"], 26 27 libs: [ 28 "kxml2-2.3.0", 29 "layoutlib_api-prebuilt", 30 "tools-common-prebuilt", 31 "guava", 32 ], 33 34 static_libs: [ 35 "temp_layoutlib", 36 "ninepatch-prebuilt", 37 "layoutlib-common", 38 "layoutlib-validator", 39 "sdk-common", 40 ], 41 42 jarjar_rules: "jarjar-rules.txt", 43 44 dist: { 45 targets: ["layoutlib"], 46 }, 47} 48 49java_library_host { 50 name: "layoutlib-no-framework", 51 52 srcs: ["src/**/*.java"], 53 java_resource_dirs: ["resources"], 54 55 libs: [ 56 "kxml2-2.3.0", 57 "temp_layoutlib", 58 "guava", 59 ], 60 61 static_libs: [ 62 "layoutlib_create", 63 "layoutlib_api-prebuilt", 64 "tools-common-prebuilt", 65 "ninepatch-prebuilt", 66 "layoutlib-common", 67 "layoutlib-validator", 68 "sdk-common", 69 ], 70 71 jarjar_rules: "jarjar-rules.txt", 72 73 dist: { 74 targets: ["layoutlib"], 75 }, 76} 77