blob: d1a2425699e9c3b17568562c4b7f3bb882cc611a [file] [log] [blame]
"""This module defines rules for building Skia Infrastructure web applications."""
load("@aspect_rules_js//js:defs.bzl", "js_binary")
# https://github.com/bazelbuild/bazel-skylib/blob/main/rules/common_settings.bzl
load("@bazel_skylib//rules:common_settings.bzl", skylib_bool_flag = "bool_flag")
load("@io_bazel_rules_docker//container:flatten.bzl", "container_flatten")
load("@npm//:mocha/package_json.bzl", _mocha_bin = "bin")
load("//bazel/test_on_env:test_on_env.bzl", "test_on_env")
load("//infra-sk/esbuild:esbuild.bzl", "esbuild_dev_bundle", "esbuild_node_bundle", "esbuild_prod_bundle")
load("//infra-sk/html_insert_assets:index.bzl", "html_insert_assets")
load("//infra-sk/karma_test:index.bzl", _karma_test = "karma_test")
load("//infra-sk/sk_demo_page_server:index.bzl", _sk_demo_page_server = "sk_demo_page_server")
load(":copy_file_from_npm_pkg.bzl", _copy_file_from_npm_pkg = "copy_file_from_npm_pkg")
load(":sass.bzl", "sass_binary", _sass_library = "sass_library")
load(":ts_library.bzl", _ts_library = "ts_library")
# Re-export these common rules so we only have to load this .bzl file from our BUILD.bazel files.
copy_file_from_npm_pkg = _copy_file_from_npm_pkg
karma_test = _karma_test
sass_library = _sass_library
sk_demo_page_server = _sk_demo_page_server
ts_library = _ts_library
def sk_element(
name,
ts_srcs,
sass_srcs = [],
ts_deps = [],
sass_deps = [],
sk_element_deps = [],
visibility = None):
"""Defines a custom element for Skia Infrastructure web applications.
This is just a convenience macro that generates the ts_library and sass_library targets
required to build a custom element.
This macro generates a "ghost" Sass stylesheet with `@import` statements for each sk_element
dependency (sk_element_deps argument). This ghost stylesheet will be included in the CSS
bundles produced by any sk_page targets that depend on this element (directly or transitively).
It is therefore *not* necessary to explicitly import the stylesheets of any depended on
sk_elements.
Args:
name: The name of the target.
ts_srcs: TypeScript source files.
sass_srcs: Sass source files (either .scss or .css files).
ts_deps: Any ts_library dependencies.
sass_deps: Any sass_library dependencies.
sk_element_deps: Any sk_element dependencies. Equivalent to adding the ts_library and
sass_library of each sk_element to ts_deps and sass_deps, respectively.
visibility: Visibility of the generated ts_library and sass_library targets.
"""
# Generate a "ghost" Sass entry-point stylesheet with import statements for the following
# files:
#
# - Each file in the sass_srcs argument.
# - The "ghost" entry-point stylesheets of each sk_element in the sk_element_deps argument.
#
# This stylesheet will be included in the CSS bundles generated by any sk_page targets that
# depend on this sk_element directly or transitively.
generate_sass_stylesheet_with_imports(
name = name + "_ghost_entrypoint_scss",
scss_files_to_import = sass_srcs +
[
make_label_target_explicit(dep) + "_ghost_entrypoint_scss"
for dep in sk_element_deps
],
scss_output_file = name + "__generated_ghost_entrypoint.scss",
visibility = visibility,
)
# Extend ts_deps and sass_deps with the ts_library and sass_library targets produced by each
# sk_element dependency in the sk_element_deps argument.
all_ts_deps = [dep for dep in ts_deps]
all_sass_deps = [dep for dep in sass_deps]
for sk_element_dep in sk_element_deps:
all_ts_deps.append(sk_element_dep)
all_sass_deps.append(make_label_target_explicit(sk_element_dep) + "_styles")
ts_library(
name = name,
srcs = ts_srcs,
deps = all_ts_deps,
visibility = visibility,
)
sass_library(
name = name + "_styles",
srcs = sass_srcs + [name + "_ghost_entrypoint_scss"],
deps = all_sass_deps,
visibility = visibility,
)
def generate_sass_stylesheet_with_imports(name, scss_files_to_import, scss_output_file, visibility = None):
"""Generates a .scss file with one `@import` statement for each file in scss_files_to_import.
Args:
name: The name of the target.
scss_files_to_import: A list of .scss files.
scss_output_file: Name of the .scss file to generate.
visibility: Visibility of the target.
"""
# Build a list of shell commands to generate the output stylesheet.
cmds = ["touch $@"]
for scss_file in scss_files_to_import:
import_statement = "@import '$(rootpath %s)';" % scss_file
cmds.append("echo \"%s\" >> $@" % import_statement)
native.genrule(
name = name,
srcs = scss_files_to_import,
outs = [scss_output_file],
cmd = " && ".join(cmds),
visibility = visibility,
)
def make_label_target_explicit(label):
"""Takes a label with a potentially implicit target name, and makes the target name explicit.
For example, if the label is "//path/to/pkg", this macro will return "//path/to/pkg:pkg". If the
label is already in the latter form, the label will be returned unchanged.
Reference: https://docs.bazel.build/versions/master/build-ref.html#labels
Args:
label: A Bazel label.
Returns:
The given label, expanded to make the target name explicit.
"""
if label.find(":") != -1:
return label
pkg_name = label.split("/").pop()
return label + ":" + pkg_name
def nodejs_test(
name,
src,
src_lib = None,
data = [],
deps = [],
tags = [],
visibility = None,
env = {},
wait_for_debugger = False,
_internal_skip_naming_convention_enforcement = False):
"""Runs a Node.js unit test using the Mocha test runner.
For tests that should run in the browser, please use karma_test instead.
To debug the Mocha test, set wait_for_debugger to True, then attach your debugger using the URL
printed to stdout.
Example debugging session with Chrome DevTools (assumes wait_for_debugger = True):
1. Add a `debugger` statement in your test code (e.g. //path/to/foo_nodejs_test.ts):
```
describe('foo', () => {
it('should do something', () => {
debugger;
...
})
})
```
2. Run `bazel run //path/to:foo_nodejs_test`.
3. Launch Chrome **on the machine where the test is running**, otherwise Chrome won't see the
Node.js process.
4. Enter chrome://inspect in the URL bar, then press return.
5. You should see an "inspect" link under the "Remote Target" heading.
6. Click that link to launch a Chrome DevTools window attached to your Node.js process.
7. Click the "Resume script execution" button (looks like a play/pause icon).
8. Test execution should start, and eventually pause at your `debugger` statement.
Args:
name: Name of the target.
src: A single TypeScript source file.
src_lib: A ts_library containing src. If none is provided, one will be generated.
data: Any data dependencies.
deps: Any ts_library or NPM dependencies of src. Ignored if src_lib is provided.
tags: Tags for the generated nodejs_test rule.
visibility: Visibility of the generated nodejs_test rule.
env: A dictionary of additional environment variables to set when the target is executed.
wait_for_debugger: Whether to invoke the Mocha test runner with --inspect-brk. If true,
the Node.js interpreter will wait for a debugger (such as Chrome DevTools) to be attached
before continuing.
_internal_skip_naming_convention_enforcement: Not part of the public API - do not use.
"""
# This macro is called by sk_element_puppeteer_test, which uses a different naming convention.
if not _internal_skip_naming_convention_enforcement and not src.endswith("_nodejs_test.ts"):
fail("Node.js tests must end with \"_nodejs_test.ts\".")
if not src_lib:
src_lib = "%s_ts_lib" % name
ts_library(
name = src_lib,
srcs = [src],
deps = deps,
)
esbuild_node_bundle(
name = "%s_js_entry_point" % name,
entry_point = src,
deps = [src_lib],
output = "%s_js_entry_point.js" % name,
)
# See https://docs.aspect.build/rulesets/aspect_rules_js/docs/#using-binaries-published-to-npm.
_mocha_bin.mocha_test(
name = name,
data = data + [
"%s_js_entry_point.js" % name,
# Pulls any transitives not included in the JS bundle, such as Puppeteer's Chromium
# binary.
src_lib,
],
fixed_args = [
"--timeout 60000",
"--colors",
"$(rootpath %s)" % "%s_js_entry_point.js" % name,
] + (["--inspect-brk"] if wait_for_debugger else []),
env = env,
tags = tags,
visibility = visibility,
)
def nodejs_binary(
name,
entry_point,
src_lib = None,
data = [],
deps = [],
tags = [],
visibility = None,
env = {}):
"""Runs a Node script written in TS.
Wraps the js_binary rule so that we can first compile the TS to JS.
Args:
name: Name of the target.
entry_point: A single TypeScript source file.
src_lib: A ts_library containing src. If none is provided, one will be generated from the entry_point.
data: Any data dependencies.
deps: Any ts_library or NPM dependencies of src. Ignored if src_lib is provided.
tags: Tags for the generated js_binary rule.
visibility: Visibility of the generated js_binary rule.
env: A dictionary of additional environment variables to set when the target is executed.
"""
if not src_lib:
src_lib = "%s_ts_lib" % name
ts_library(
name = src_lib,
srcs = [entry_point],
deps = deps,
)
esbuild_node_bundle(
name = "%s_js_entry_point" % name,
entry_point = entry_point,
deps = [src_lib],
output = "%s_js_entry_point.js" % name,
)
js_binary(
name = name,
entry_point = "%s_js_entry_point.js" % name,
data = data + [
src_lib,
],
env = env,
tags = tags,
visibility = visibility,
)
def sk_element_puppeteer_test(name, src, sk_demo_page_server, deps = []):
"""Defines a Puppeteer test for the demo page served by an sk_demo_page_server.
Puppeteer tests should save any screenshots inside the $TEST_UNDECLARED_OUTPUTS_DIR directory.
To reduce the chances of name collisions, tests must save their screenshots under the
$TEST_UNDECLARED_OUTPUTS_DIR/puppeteer-test-screenshots subdirectory. This convention will
allow us to recover screenshots from multiple tests in a consistent way.
Screenshots, and any other undeclared outputs of a test, can be found under //_bazel_testlogs
bundled as a single .zip file per test target. For example, if we run a Puppeteer test with e.g.
"bazel test //path/to/my:puppeteer_test", any screenshots taken by this test will be found
inside //_bazel_testlogs/path/to/my/puppeteer_test/test.outputs/outputs.zip.
To read more about undeclared test outputs, please see the following link:
https://docs.bazel.build/versions/master/test-encyclopedia.html#test-interaction-with-the-filesystem.
This rule also generates a "<name>_debug" test target that waits for a debugger (such as
Chrome DevTools, or the VS Code Node.js debugger) to be attached to the Node.js process running
your test before continuing execution. For example, if your test target is
//path/to:my_puppeteer_test, invoke `bazel test //path/to:my_puppeteer_test`, to run your test
the usual way, or invoke `bazel run //path/to:my_puppeteer_test_debug` if you'd like to attach
a debugger. Tip: add one or more `debugger` statement in your test code in order to set
breakpoints. See the nodejs_test rule's docstring for an example debug session.
Additionally, this rule generates a "<name>_debug_headful" target that is identical to the
aforementioned "<name>_debug" target, except that the Chromium instance started by Puppeteer
runs in headful mode. Use this target to visually inspect how your test interacts with the demo
page under test as you step through your test code with the attached debugger. Example
invocation: `bazel run //path/to:my_puppeteer_test_debug_headful`.
Args:
name: Name of the rule.
src: A single TypeScript source file.
sk_demo_page_server: Label for the sk_demo_page_server target.
deps: Any ts_library dependencies.
"""
if not src.endswith("_puppeteer_test.ts"):
fail("Puppeteer tests must end with \"_puppeteer_test.ts\".")
# Rather than letting the nodejs_test macro create a ts_library for the entrypoint file, we
# create one here. The reason is that we will define multiple nodejs_test targets with
# different sufixes ("_debug", "_headful"). If we do not provide a ts_library for the
# entrypoint file, each nodejs_test instance will define its own ts_library that outputs
# the same .js file, causing the build to fail.
ts_library(
name = name + "_ts_lib",
srcs = [src],
deps = deps,
)
for debug, headful in [(False, False), (True, False), (True, True)]:
suffix = ""
if debug:
suffix += "_debug"
if headful:
suffix += "_headful"
nodejs_test(
name = name + "_test_only" + suffix,
src = src,
src_lib = name + "_ts_lib",
tags = ["manual"], # Exclude it from wildcards, e.g. "bazel test //...".
deps = deps,
wait_for_debugger = debug,
env = {"PUPPETEER_TEST_SHOW_BROWSER": "true"} if headful else {},
_internal_skip_naming_convention_enforcement = True,
)
test_on_env(
name = name + suffix,
env = sk_demo_page_server,
test = name + "_test_only" + suffix,
timeout_secs = 60 * 60 * 24 * 365 if debug else 10,
tags = ([
"manual", # Exclude it from wildcards, e.g. "bazel test //...".
"no-remote", # Do not run on RBE.
] if debug or headful else []),
)
def copy_file(name, src, dst, visibility = None):
"""Copies a single file to a destination path, making parent directories as needed."""
native.genrule(
name = name,
srcs = [src],
outs = [dst],
cmd = "mkdir -p $$(dirname $@) && cp $< $@",
visibility = visibility,
)
def sk_page(
name,
html_file,
ts_entry_point,
scss_entry_point = None,
ts_deps = [],
sass_deps = [],
sk_element_deps = [],
assets_serving_path = "",
copy_files = None,
production_sourcemap = False,
nonce = None):
"""Builds a static HTML page, and its CSS and JavaScript development and production bundles.
This macro generates the following files, where <name> is the given target name:
development/<name>.html
development/<name>.js
development/<name>.css
production/<name>.html
production/<name>.js
production/<name>.css
The <name> target defined by this macro generates all of the above files.
Tags <script> and <link> will be inserted into the output HTML pointing to the generated
bundles. The serving path for said bundles defaults to "/" and can be overridden via the
assets_serving_path argument.
A timestamp will be appended to the URLs for any referenced assets for cache busting purposes,
e.g. <script src="/index.js?v=27396986"></script>.
If the nonce argument is provided, a nonce attribute will be inserted to all <link> and <script>
tags. For example, if the nonce argument is set to "{% .Nonce %}", then the generated HTML will
contain tags such as <script nonce="{% .Nonce %}" src="/index.js?v=27396986"></script>.
Args:
name: The prefix used for the names of all the targets generated by this macro.
html_file: The page's HTML file.
ts_entry_point: TypeScript file used as the entry point for the JavaScript bundles.
scss_entry_point: Sass file used as the entry point for the CSS bundles.
ts_deps: Any ts_library dependencies.
sass_deps: Any sass_library dependencies.
sk_element_deps: Any sk_element dependencies. Equivalent to adding the ts_library and
sass_library of each sk_element to deps and sass_deps, respectively.
assets_serving_path: Path prefix for the inserted <script> and <link> tags.
copy_files: Any files that should just be copied into the final build directory. These are
assets needed by the page that are not loaded in via imports (e.g. images, WASM).
production_sourcemap: Whether or not to generate sourcemaps for the production bundles.
Production sourcemaps are linked, rather than inlined, so as not to affect bundle sizes.
Chrome only downloads linked sourcemaps when the Chrome DevTools are open.
nonce: If set, its contents will be added as a "nonce" attribute to any <script> and <link>
tags inserted into the page's HTML file.
"""
# Extend ts_deps and sass_deps with the ts_library and sass_library targets produced by each
# sk_element dependency in the sk_element_deps argument.
all_ts_deps = [dep for dep in ts_deps]
all_sass_deps = [dep for dep in sass_deps]
for sk_element_dep in sk_element_deps:
all_ts_deps.append(sk_element_dep)
all_sass_deps.append(make_label_target_explicit(sk_element_dep) + "_styles")
# Output directories.
DEV_OUT_DIR = "development"
PROD_OUT_DIR = "production"
#######################
# JavaScript bundles. #
#######################
ts_library(
name = "%s_ts_lib" % name,
srcs = [ts_entry_point],
deps = all_ts_deps,
)
# Generates file development/<name>.js.
esbuild_dev_bundle(
name = "%s_js_dev" % name,
entry_point = ts_entry_point,
deps = [":%s_ts_lib" % name],
output = "%s/%s.js" % (DEV_OUT_DIR, name),
)
# Generates file production/<name>.js.
esbuild_prod_bundle(
name = "%s_js_prod" % name,
entry_point = ts_entry_point,
deps = [":%s_ts_lib" % name],
output = "%s/%s.js" % (PROD_OUT_DIR, name),
sourcemap = production_sourcemap,
)
################
# CSS Bundles. #
################
# Generate a blank Sass entry-point file to appease the sass_library rule, if one is not given.
if not scss_entry_point:
scss_entry_point = name + "__generated_empty_scss_entry_point"
native.genrule(
name = scss_entry_point,
outs = [scss_entry_point + ".scss"],
cmd = "touch $@",
)
# Create a sass_library including the scss_entry_point file, and all the Sass dependencies.
sass_library(
name = name + "_styles",
srcs = [scss_entry_point],
deps = all_sass_deps,
visibility = ["//visibility:public"],
)
# Generate a "ghost" Sass entry-point stylesheet with import statements for the following
# files:
#
# - This page's Sass entry-point file (scss_entry_point argument).
# - The "ghost" entry-point stylesheets of each sk_element in the sk_element_deps argument.
#
# We will use this generated stylesheet as the entry-points for the sass_binaries below.
scss_ghost_entry_point = name + "__generated_ghost_entrypoint.scss"
generate_sass_stylesheet_with_imports(
name = name + "_ghost_entrypoint_scss",
scss_files_to_import = [scss_entry_point] +
[
make_label_target_explicit(dep) + "_ghost_entrypoint_scss"
for dep in sk_element_deps
],
scss_output_file = scss_ghost_entry_point,
)
# Generates file development/<name>.css.
sass_binary(
name = name + "_css_dev",
srcs = [scss_ghost_entry_point],
deps = [name + "_styles"],
entry_point = scss_ghost_entry_point,
out = "%s/%s.css" % (DEV_OUT_DIR, name),
mode = "development",
)
# Generates file production/<name>.css.
sass_binary(
name = name + "_css_prod",
srcs = [scss_ghost_entry_point],
deps = [name + "_styles"],
entry_point = scss_ghost_entry_point,
out = "%s/%s.css" % (PROD_OUT_DIR, name),
mode = "production_sourcemap" if production_sourcemap else "production",
)
#####################
# Static resources. #
#####################
if copy_files:
for pair in copy_files:
copy_file(
name = "%s_copy_prod" % pair["dst"],
src = pair["src"],
dst = PROD_OUT_DIR + "/" + pair["dst"],
visibility = ["//visibility:public"],
)
copy_file(
name = "%s_copy_dev" % pair["dst"],
src = pair["src"],
dst = DEV_OUT_DIR + "/" + pair["dst"],
visibility = ["//visibility:public"],
)
###############
# HTML files. #
###############
# Add a slash at the end of the assets_serving_path, but not if the string is empty, as that
# would turn the "" relative path into the "/" absolute path.
if assets_serving_path != "" and not assets_serving_path.endswith("/"):
assets_serving_path += "/"
# Generates file development/<name>.html.
html_insert_assets(
name = "%s_html_dev" % name,
html_src = html_file,
html_out = "%s/%s.html" % (DEV_OUT_DIR, name),
js_src = "%s/%s.js" % (DEV_OUT_DIR, name),
js_serving_path = "%s%s.js" % (assets_serving_path, name),
css_src = "%s/%s.css" % (DEV_OUT_DIR, name),
css_serving_path = "%s%s.css" % (assets_serving_path, name),
nonce = nonce,
)
# Generates file production/<name>.html.
html_insert_assets(
name = "%s_html_prod" % name,
html_src = html_file,
html_out = "%s/%s.html" % (PROD_OUT_DIR, name),
js_src = "%s/%s.js" % (PROD_OUT_DIR, name),
js_serving_path = "%s%s.js" % (assets_serving_path, name),
css_src = "%s/%s.css" % (PROD_OUT_DIR, name),
css_serving_path = "%s%s.css" % (assets_serving_path, name),
nonce = nonce,
)
###########################
# Convenience filegroups. #
###########################
# Generates all output files (that is, the development and production bundles).
native.filegroup(
name = name,
srcs = [
":%s_dev" % name,
":%s_prod" % name,
],
visibility = ["//visibility:public"],
)
# Generates the development bundle.
native.filegroup(
name = "%s_dev" % name,
srcs = [
"development/%s.html" % name,
"development/%s.js" % name,
"development/%s.css" % name,
],
visibility = ["//visibility:public"],
)
# Generates the production bundle.
native.filegroup(
name = "%s_prod" % name,
srcs = [
"production/%s.html" % name,
"production/%s.js" % name,
"production/%s.css" % name,
],
visibility = ["//visibility:public"],
)
def extract_files_from_skia_wasm_container(name, container, container_files, enabled_flag, **kwargs):
"""Extracts files from the Skia WASM container image (gcr.io/skia-public/skia-wasm-release).
This macro takes as inputs a list of paths inside the Docker container (container_files
argument), and a list of the same length with the destination paths for each of the files to
extract (outs argument), relative to the directory where the macro is instantiated.
This image will be pulled if the enabled_flag is true, so users who need to set that flag to
true (e.g. infra folks pushing a clean image) should be granted permissions and have Docker
authentication set up. Users who are working with a local build should set the flag to false
and not need Docker authentication.
Args:
name: Name of the target.
container: The name of the docker container (defined in //WORKSPACE) which contains the files.
container_files: Dictionary of absolute paths inside the Docker container to extract mapped to
the path they should be extracted to.
enabled_flag: Label. If set, should be the name of a bool_flag. If the bool_flag
is True, the real skia_wasm_container image will be pulled and the images loaded as per
usual. If the bool_flag is false, the container will not be loaded, but any outs will be
created as empty files to make dependent rules happy. It is up to the caller to use that
same flag to properly ignore those empty files if the flag is false (e.g. via a select).
**kwargs: Any flags that should be forwarded to the generated rule
"""
# Generates a .tar file with the contents of the image's filesystem (and a .json metadata file
# which we ignore).
#
# See the rule implementation here:
# https://github.com/bazelbuild/rules_docker/blob/02ad0a48fac9afb644908a634e8b2139c5e84670/container/flatten.bzl#L48
#
# Notes:
# - It is unclear whether container_flatten is part of the public API because it is not
# documented. But the fact that container_flatten is re-exported along with other, well
# documented rules in rules_docker suggests that it might indeed be part of the public API
# (see [1] and [2]).
# - If they ever make breaking changes to container_flatten, then it is probably best to fork
# it. The rule itself is relatively small; it is just a wrapper around a Go program that does
# all the heavy lifting.
# - This rule was chosen because most other rules in the rules_docker repository produce .tar
# files with layered outputs, which means we would have to do the flattening ourselves.
#
# [1] https://github.com/bazelbuild/rules_docker/blob/6c29619903b6bc533ad91967f41f2a3448758e6f/container/container.bzl#L28
# [2] https://github.com/bazelbuild/rules_docker/blob/e290d0975ab19f9811933d2c93be275b6daf7427/container/BUILD#L158
# We expect enabled_flag to be a bool_flag, which means we should have two labels defined
# based on the passed in flag name, one with a _true suffix and one with a _false suffix. If
# the flag is set to false, we pull from a public image that has no files in it.
container_flatten(
name = name + "_skia_wasm_container_filesystem",
image = select({
enabled_flag + "_true": container + "//image",
enabled_flag + "_false": "@empty_container//image",
}),
)
# Name of the .tar file produced by the container_flatten target.
skia_wasm_filesystem_tar = name + "_skia_wasm_container_filesystem.tar"
# Shell command that returns the directory of the BUILD file where this macro was instantiated.
#
# This works because:
# - The $< variable[1] is expanded by the below genrule to the path of its only input file.
# - The only input file to the genrule is the .tar file produced by the above container_flatten
# target (see the genrule's srcs attribute).
# - Said .tar file is produced in the directory of the BUILD file where this macro was
# instantiated.
#
# [1] https://bazel.build/reference/be/make-variables
output_dir = "$$(dirname $<)"
# Directory where we will untar the .tar file produced by the container_flatten target.
skia_wasm_filesystem_dir = output_dir + "/" + skia_wasm_filesystem_tar + "_untarred"
# Untar the .tar file produced by the container_flatten rule.
cmd = ("mkdir -p " + skia_wasm_filesystem_dir +
" && tar xf $< -C " + skia_wasm_filesystem_dir)
outs = []
# Copy each requested file from the container filesystem to its desired destination.
for src in container_files:
dst = container_files[src]
copy = " && (cp %s/%s %s/%s" % (skia_wasm_filesystem_dir, src, output_dir, dst)
# If the enabled_flag is False, we will be loading from an empty image and thus the
# files will not exist. As such, we need to create them or Bazel will fail because the
# expected generated files will not be created. It is up to the dependent rules to properly
# ignore these files. We cannot easily have the genrule change its behavior depending on
# how the flag is set, so we always touch the file as a backup. We write stderr to
# /dev/null to squash any errors about files not existing.
copy += " 2>/dev/null || touch %s/%s) " % (output_dir, dst)
cmd += copy
outs.append(dst)
native.genrule(
name = name,
srcs = [skia_wasm_filesystem_tar],
outs = outs,
cmd = cmd,
**kwargs
)
def bool_flag(flag_name, default = True, name = ""): # buildifier: disable=unused-variable
"""Create a boolean flag and corresponding config_settings.
bool_flag is a Bazel Macro that defines a boolean flag with the given name two config_settings,
one for True, one for False. Reminder that Bazel has special syntax for unsetting boolean flags,
but this does not work well with aliases.
https://docs.bazel.build/versions/main/skylark/config.html#using-build-settings-on-the-command-line
Thus it is best to define both an "enabled" alias and a "disabled" alias.
Args:
flag_name: string, the name of the flag to create and use for the config_settings
default: boolean, if the flag should default to on or off.
name: string unused, https://github.com/bazelbuild/buildtools/blob/master/WARNINGS.md#unnamed-macro
"""
skylib_bool_flag(name = flag_name, build_setting_default = default)
native.config_setting(
name = flag_name + "_true",
flag_values = {
# The value must be a string, but it will be parsed to a boolean
# https://docs.bazel.build/versions/main/skylark/config.html#build-settings-and-select
":" + flag_name: "True",
},
)
native.config_setting(
name = flag_name + "_false",
flag_values = {
":" + flag_name: "False",
},
)