blob: 2f4d1df96a741fcdc3ce61c01af13e64d03d79bb [file] [log] [blame]
Jiyong Park08172562018-03-09 00:52:23 +09001//
2// Copyright (C) 2017 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
17java_library_static {
18 name: "wycheproof",
19 srcs: ["java/**/*.java"],
20 exclude_srcs: [
21 "java/com/google/security/wycheproof/SpongyCastleTest.java",
22 "java/com/google/security/wycheproof/SpongyCastleAllTests.java",
23 ],
Neil Fuller0b75d362018-10-04 11:01:10 +010024 no_standard_libs: true,
Jiyong Park08172562018-03-09 00:52:23 +090025 libs: [
Neil Fuller0b75d362018-10-04 11:01:10 +010026 "core-oj",
27 "core-libart",
Jiyong Park08172562018-03-09 00:52:23 +090028 "bouncycastle",
Neil Fuller0b75d362018-10-04 11:01:10 +010029 "conscrypt",
Jiyong Park08172562018-03-09 00:52:23 +090030 "junit",
31 ],
Neil Fuller0b75d362018-10-04 11:01:10 +010032 system_modules: "core-system-modules",
Jiyong Park08172562018-03-09 00:52:23 +090033}