blob: 57cd05aa7db0b585488094a5235ddc5c551eafe6 [file] [log] [blame]
Colin Cross9f84aff2018-08-09 15:24:50 -07001// Copyright (C) 2010 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//
15//
16
Bob Badour35a52ba2021-02-12 17:08:43 -080017package {
18 default_applicable_licenses: ["external_easymock_license"],
19}
20
21// Added automatically by a large-scale-change
22//
23// large-scale-change included anything that looked like it might be a license
24// text as a license_text. e.g. LICENSE, NOTICE, COPYING etc.
25//
26// Please consider removing redundant or irrelevant files from 'license_text:'.
27// See: http://go/android-license-faq
28license {
29 name: "external_easymock_license",
30 visibility: [":__subpackages__"],
31 license_kinds: [
32 "SPDX-license-identifier-Apache-2.0",
33 ],
34 license_text: [
35 "LICENSE.txt",
36 "NOTICE",
37 ],
38}
39
Colin Cross9f84aff2018-08-09 15:24:50 -070040java_library {
41 name: "easymock",
42 host_supported: true,
43 srcs: ["src/**/*.java"],
44 sdk_version: "9",
45}
46
47java_library {
48 name: "easymocklib",
49 static_libs: ["easymock"],
50 sdk_version: "9",
51}