blob: 4f9c9947e74b008306b2be4b2961d8605e98217f [file] [log] [blame]
Keith Stanger8621efc2017-05-26 16:42:08 -04001# Copyright 2015 The Bazel Authors. All rights reserved.
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
15licenses(["notice"]) # Apache License 2.0
16
17exports_files(["LICENSE"])
18
19package(
20 default_visibility = ["//visibility:public"],
21)
22
23java_library(
24 name = "annotations",
25 exports = ["@bazel_j2objc//:annotations"],
26)
27
28genrule(
29 name = "jre_emul_jar",
30 srcs = ["@bazel_j2objc//:jre_emul.jar"],
31 outs = ["jre_emul.jar"],
32 cmd = "cp $< $@",
33)
34
35objc_library(
36 name = "jre_core_lib",
37 deps = ["@bazel_j2objc//:jre_core_lib"],
38)
39
40filegroup(
41 name = "proto_plugin",
42 srcs = ["@bazel_j2objc//:proto_plugin"],
43)
44
45objc_library(
46 name = "proto_runtime",
47 deps = ["@bazel_j2objc//:proto_runtime"],
48)