blob: 42a2748c108fbaa5767142a5e3492ffbdc490b11 [file] [log] [blame]
Colin Crossb1d05432020-07-22 13:40:44 -07001//
2// Copyright (C) 2013 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
17//#################################
18cc_prebuilt_library_shared {
19 name: "librsjni",
20 sdk_version: "23",
21 arch: {
22 arm: {
23 srcs: ["lib/arm/librsjni.so"],
24 },
25 arm64: {
26 srcs: ["lib/arm64/librsjni.so"],
27 },
28 x86: {
29 srcs: ["lib/x86/librsjni.so"],
30 },
31 x86_64: {
32 srcs: ["lib/x86_64/librsjni.so"],
33 },
34 },
35}
36
37//#################################
38cc_prebuilt_library_shared {
39 name: "libRSSupport",
40 sdk_version: "23",
41 arch: {
42 arm: {
43 srcs: ["lib/arm/libRSSupport.so"],
44 },
45 arm64: {
46 srcs: ["lib/arm64/libRSSupport.so"],
47 },
48 x86: {
49 srcs: ["lib/x86/libRSSupport.so"],
50 },
51 x86_64: {
52 srcs: ["lib/x86_64/libRSSupport.so"],
53 },
54 },
55}
56
57//#################################
58cc_prebuilt_library_shared {
59 name: "libRSSupportIO",
60 sdk_version: "23",
61 arch: {
62 arm: {
63 srcs: ["lib/arm/libRSSupportIO.so"],
64 },
65 arm64: {
66 srcs: ["lib/arm64/libRSSupportIO.so"],
67 },
68 x86: {
69 srcs: ["lib/x86/libRSSupportIO.so"],
70 },
71 x86_64: {
72 srcs: ["lib/x86_64/libRSSupportIO.so"],
73 },
74 },
75}
76
77//#################################
78java_import {
79 name: "android-support-v8-renderscript",
80 jars: ["lib/javalib.jar"],
81
82 // 23 as specified at frameworks/rs/support/Android.mk
83 sdk_version: "23",
84}
85
86//#################################
87java_import {
88 name: "android-support-v8-renderscript-legacy",
89 jars: ["lib/javalib_legacy.jar"],
90
91 // 23 as specified at frameworks/rs/support/Android.mk
92 sdk_version: "23",
93}
94
95//#################################