-
Notifications
You must be signed in to change notification settings - Fork 154
Expand file tree
/
Copy pathBUILD
More file actions
105 lines (89 loc) · 2.84 KB
/
BUILD
File metadata and controls
105 lines (89 loc) · 2.84 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
load("@rules_closure//closure:defs.bzl", "closure_js_library")
load("@rules_license//rules:license.bzl", "license")
load("//build_defs:rules.bzl", "j2cl_alias")
# Description:
# Public targets available externally. Also see build_defs/rules.bzl for the provided rules.
load("@bazel_skylib//rules:common_settings.bzl", "bool_flag", "string_flag")
package(
default_applicable_licenses = [":j2cl_license"],
default_visibility = ["//visibility:public"],
licenses = ["notice"],
)
license(
name = "j2cl_license",
package_name = "j2cl",
)
exports_files(["LICENSE"])
# JRE emulation
# This is not an alias since it is intended only for js targets not j2cl targets
closure_js_library(
name = "jre",
exports = ["//jre/java:jre"],
)
alias(
name = "jsinterop-annotations",
actual = "//third_party:jsinterop-annotations",
)
j2cl_alias(
name = "jsinterop-annotations-j2cl",
actual = "//third_party:jsinterop-annotations-j2cl",
)
# JUnit library emulation
j2cl_alias(
name = "junit",
actual = "//junit/emul/java:junit_emul",
)
# JUnit async runner (EXPERIMENTAL)
alias(
name = "junit_async_runner",
actual = "//junit/generator/java/com/google/j2cl/junit/async",
)
alias(
name = "junit_async_runner-j2cl",
actual = "//junit/generator/java/com/google/j2cl/junit/async:async-j2cl",
)
# Optional minifier library for development servers
alias(
name = "minifier",
actual = "//tools/java/com/google/j2cl/tools/minifier",
)
# TODO(b/135123615): Temporary support for selecting frontend. Once javac becomes the frontend for
# J2CL this will be removed.
string_flag(
name = "experimental_java_frontend",
build_setting_default = "",
values = [
"", # Default: let compiler itself decide.
"jdt",
"javac",
],
)
# Flag to configure j2kt-web experiment. Please talk to j2cl-team@ before using it.
string_flag(
name = "j2kt_web_environment",
build_setting_default = "production",
values = [
# Enables J2KT/Web for the set packages in the J2KT_WEB_ENABLED allowlist.
"production",
# Enables J2KT/Web for the set packages in the J2KT_WEB_EXPERIMENT_ENABLED allowlist.
"experimental",
# Enables J2KT/Web for the set packages in the J2KT_WEB_STAGING_ENABLED allowlist.
"staging",
# Disables J2KT/Web for all targets, regardless of allowlist membership.
"disabled",
],
)
# Flag to enable klibs experiment. Please talk to j2cl-team@ before using it.
bool_flag(
name = "experimental_enable_klibs",
build_setting_default = False,
)
# Flag to enable profiling for particular targets.
# Example usage:
# blaze build <my_binary> --//:profiling_filter=<target_pattern>
# pprof --flame blaze-bin/<target>.profile
string_flag(
name = "profiling_filter",
build_setting_default = "<disabled>",
scope = "universal",
)