
Utilize the Closure compiler in Bazel to transpile. As part of this, a rather large file of 'externs' must be added in order to call external code. This file is specific to Polymer and copied from the Closure Github, and should be synced any time there are major changes to Polymer. Test Plan: - run `bazel build polygerrit` and verify that whitespaces are removed from resulting gr-app.js file - run `bazel build Documentation:licenses.txt` and verify that the new dependency is listed in resulting bazel-genfiles/Documentation/licenses.txt TODO in later changes: - Get closure optimizations working - Explore sourcemaps possibilities - Maybe use closure linting? Change-Id: Ic358743dda7286fea3ac1e95a7991a92c96d6341
27 lines
893 B
Python
27 lines
893 B
Python
# Copyright (C) 2017 The Android Open Source Project
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
package(
|
|
default_visibility = ["//visibility:public"],
|
|
)
|
|
|
|
load("@io_bazel_rules_closure//closure:defs.bzl", "closure_js_library")
|
|
|
|
closure_js_library(
|
|
name = "polymer_closure",
|
|
srcs = ["@polymer_closure//file"],
|
|
data = ["//lib:LICENSE-Apache2.0"],
|
|
no_closure_library = True,
|
|
)
|