1// Copyright (C) 2023 The Android Open Source Project 2// 3// Licensed under the Apache License, Version 2.0 (the "License"); 4// you may not use this file except in compliance with the License. 5// You may obtain a copy of the License at 6// 7// http://www.apache.org/licenses/LICENSE-2.0 8// 9// Unless required by applicable law or agreed to in writing, software 10// distributed under the License is distributed on an "AS IS" BASIS, 11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12// See the License for the specific language governing permissions and 13// limitations under the License. 14 15package { 16 default_applicable_licenses: ["Android-Apache-2.0"], 17} 18 19///////////////////////////////////////////// Reference Color library //////////////////////////// 20android_library { 21 name: "car-resource-common-color", 22 23 sdk_version: "current", 24 25 manifest: "AndroidManifest.xml", 26 27 resource_dirs: [ 28 "res-color", 29 ], 30} 31 32///////////////////////////////////////////// Reference resource library ///////////////////////// 33android_library { 34 name: "car-resource-common", 35 36 sdk_version: "current", 37 38 manifest: "AndroidManifest.xml", 39 40 resource_dirs: [ 41 "res", 42 ], 43 static_libs: [ 44 "car-resource-common-color", 45 ], 46} 47 48///////////////////////////////////////////// Experimental theme resources libraries ///////////// 49android_library { 50 name: "car-resource-theme-pink-common", 51 52 sdk_version: "current", 53 54 manifest: "AndroidManifest.xml", 55 56 resource_dirs: [ 57 "res", 58 ], 59 static_libs: [ 60 "car-resource-theme-pink-color", 61 ], 62} 63 64android_library { 65 name: "car-resource-theme-orange-common", 66 67 sdk_version: "current", 68 69 manifest: "AndroidManifest.xml", 70 71 resource_dirs: [ 72 "res", 73 ], 74 static_libs: [ 75 "car-resource-theme-orange-color", 76 ], 77} 78