blob: 831944b8ee2ff7f971510e9742756559f9aa4f81 [file] [log] [blame]
Ruchika Ashtankar34f5d0e2019-10-09 19:28:42 +05301/*
2 * Copyright (C) 2019 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
17android_test {
18 name: "MediaBenchmarkTest",
19
20 // Include all the test code
21 srcs: ["src/androidTest/**/*.java"],
22
23 sdk_version: "system_current",
24
25 resource_dirs: ["res"],
26
27 libs: [
28 "android.test.runner",
29 "android.test.base",
30 ],
31
32 static_libs: [
33 "libMediaBenchmark",
34 "junit",
35 "androidx.test.runner",
36 ],
37}
38
39android_library {
40 name: "libMediaBenchmark",
41
42 // Include all the libraries
43 srcs: ["src/main/**/*.java"],
44
45 sdk_version: "system_current",
46}