mirror of
https://github.com/google/nomulus.git
synced 2025-06-24 13:30:54 +02:00
Import code from internal repository to git
This commit is contained in:
commit
0ef0c933d2
2490 changed files with 281594 additions and 0 deletions
16
third_party/closure/library/BUILD
vendored
Normal file
16
third_party/closure/library/BUILD
vendored
Normal file
|
@ -0,0 +1,16 @@
|
|||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
licenses(["notice"]) # Apache License 2.0
|
||||
|
||||
load("//third_party/closure/compiler:closure_js_library.bzl", "closure_js_library")
|
||||
load("//third_party/closure/stylesheets:closure_css_library.bzl", "closure_css_library")
|
||||
|
||||
closure_js_library(
|
||||
name = "library",
|
||||
srcs = ["@closure_library//:js_files"],
|
||||
)
|
||||
|
||||
closure_css_library(
|
||||
name = "css",
|
||||
srcs = ["@closure_library//:css_files"],
|
||||
)
|
31
third_party/closure/library/closure_library.BUILD
vendored
Normal file
31
third_party/closure/library/closure_library.BUILD
vendored
Normal file
|
@ -0,0 +1,31 @@
|
|||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
filegroup(
|
||||
name = "js_files",
|
||||
srcs = glob(
|
||||
[
|
||||
"closure/goog/**/*.js",
|
||||
"third_party/closure/goog/**/*.js",
|
||||
],
|
||||
exclude = [
|
||||
"closure/goog/**/*_test.js",
|
||||
"closure/goog/demos/**/*.js",
|
||||
"third_party/closure/goog/**/*_test.js",
|
||||
],
|
||||
),
|
||||
)
|
||||
|
||||
filegroup(
|
||||
name = "css_files",
|
||||
srcs = glob(["closure/goog/css/**/*.css"]),
|
||||
)
|
||||
|
||||
py_binary(
|
||||
name = "depswriter",
|
||||
srcs = [
|
||||
"closure/bin/build/depswriter.py",
|
||||
"closure/bin/build/source.py",
|
||||
"closure/bin/build/treescan.py",
|
||||
],
|
||||
main = "closure/bin/build/depswriter.py",
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue