# TensorFlow external dependencies that can be loaded in WORKSPACE files. load("@io_bazel_rules_closure//closure:defs.bzl", "filegroup_external") load("@io_bazel_rules_closure//closure:defs.bzl", "webfiles_external") load("//third_party/gpus:cuda_configure.bzl", "cuda_configure") load("//third_party/sycl:sycl_configure.bzl", "sycl_configure") # Parse the bazel version string from `native.bazel_version`. def _parse_bazel_version(bazel_version): # Remove commit from version. version = bazel_version.split(" ", 1)[0] # Split into (release, date) parts and only return the release # as a tuple of integers. parts = version.split('-', 1) # Turn "release" into a tuple of strings version_tuple = () for number in parts[0].split('.'): version_tuple += (str(number),) return version_tuple # Check that a specific bazel version is being used. def check_version(bazel_version): if "bazel_version" not in dir(native): fail("\nCurrent Bazel version is lower than 0.2.1, expected at least %s\n" % bazel_version) elif not native.bazel_version: print("\nCurrent Bazel is not a release version, cannot check for compatibility.") print("Make sure that you are running at least Bazel %s.\n" % bazel_version) else: current_bazel_version = _parse_bazel_version(native.bazel_version) minimum_bazel_version = _parse_bazel_version(bazel_version) if minimum_bazel_version > current_bazel_version: fail("\nCurrent Bazel version is {}, expected at least {}\n".format( native.bazel_version, bazel_version)) pass def _repos_are_siblings(): return Label("@foo//bar").workspace_root.startswith("../") # Temporary workaround to support including TensorFlow as a submodule until this # use-case is supported in the next Bazel release. def _temp_workaround_http_archive_impl(repo_ctx): repo_ctx.template("BUILD", repo_ctx.attr.build_file, { "%prefix%" : ".." if _repos_are_siblings() else "external", "%ws%": repo_ctx.attr.repository }, False) repo_ctx.download_and_extract(repo_ctx.attr.urls, "", repo_ctx.attr.sha256, "", repo_ctx.attr.strip_prefix) temp_workaround_http_archive = repository_rule( implementation=_temp_workaround_http_archive_impl, attrs = { "build_file": attr.label(), "repository": attr.string(), "urls": attr.string_list(default = []), "sha256": attr.string(default = ""), "strip_prefix": attr.string(default = ""), }) # If TensorFlow is linked as a submodule. # path_prefix and tf_repo_name are no longer used. def tf_workspace(path_prefix = "", tf_repo_name = ""): cuda_configure(name = "local_config_cuda") sycl_configure(name = "local_config_sycl") if path_prefix: print("path_prefix was specified to tf_workspace but is no longer used and will be removed in the future.") if tf_repo_name: print("tf_repo_name was specified to tf_workspace but is no longer used and will be removed in the future.") native.new_http_archive( name = "eigen_archive", urls = [ "http://bazel-mirror.storage.googleapis.com/bitbucket.org/eigen/eigen/get/290bfb42684a.tar.gz", "https://bitbucket.org/eigen/eigen/get/290bfb42684a.tar.gz", ], sha256 = "269c8bf20e8ac1aa8f5caf1ab2ca7be4909ec6ae085177a647aae138cd069b12", strip_prefix = "eigen-eigen-290bfb42684a", build_file = str(Label("//third_party:eigen.BUILD")), ) native.new_http_archive( name = "libxsmm_archive", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/hfp/libxsmm/archive/1.7.tar.gz", "https://github.com/hfp/libxsmm/archive/1.7.tar.gz", ], sha256 = "2eea65624a697e74b939511cd2a686b4c957e90c99be168fe134d96771e811ad", strip_prefix = "libxsmm-1.7", build_file = str(Label("//third_party:libxsmm.BUILD")), ) native.bind( name = "xsmm_avx", actual = "@libxsmm_archive//third_party:xsmm_avx", ) native.http_archive( name = "com_googlesource_code_re2", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/google/re2/archive/b94b7cd42e9f02673cd748c1ac1d16db4052514c.tar.gz", "https://github.com/google/re2/archive/b94b7cd42e9f02673cd748c1ac1d16db4052514c.tar.gz", ], sha256 = "bd63550101e056427c9e7ff12a408c1c8b74e9803f393ca916b2926fc2c4906f", strip_prefix = "re2-b94b7cd42e9f02673cd748c1ac1d16db4052514c", ) native.http_archive( name = "gemmlowp", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/google/gemmlowp/archive/a6f29d8ac48d63293f845f2253eccbf86bc28321.tar.gz", "https://github.com/google/gemmlowp/archive/a6f29d8ac48d63293f845f2253eccbf86bc28321.tar.gz", ], sha256 = "75d40ea8e68b0d1644f052fffe8f14a410b2a73d40ccb859a95c0578d194ec26", strip_prefix = "gemmlowp-a6f29d8ac48d63293f845f2253eccbf86bc28321", ) native.new_http_archive( name = "farmhash_archive", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/google/farmhash/archive/92e897b282426729f4724d91a637596c7e2fe28f.zip", "https://github.com/google/farmhash/archive/92e897b282426729f4724d91a637596c7e2fe28f.zip", ], sha256 = "4c626d1f306bda2c6804ab955892f803f5245f4dcaecb4979dc08b091256da54", strip_prefix = "farmhash-92e897b282426729f4724d91a637596c7e2fe28f", build_file = str(Label("//third_party:farmhash.BUILD")), ) native.bind( name = "farmhash", actual = "@farmhash//:farmhash", ) native.new_http_archive( name = "highwayhash", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/google/highwayhash/archive/dfcb97ca4fe9277bf9dc1802dd979b071896453b.tar.gz", "https://github.com/google/highwayhash/archive/dfcb97ca4fe9277bf9dc1802dd979b071896453b.tar.gz", ], sha256 = "0f30a15b1566d93f146c8d149878a06e91d9bb7ec2cfd76906df62a82be4aac9", strip_prefix = "highwayhash-dfcb97ca4fe9277bf9dc1802dd979b071896453b", build_file = str(Label("//third_party:highwayhash.BUILD")), ) native.new_http_archive( name = "nasm", urls = [ "http://bazel-mirror.storage.googleapis.com/www.nasm.us/pub/nasm/releasebuilds/2.12.02/nasm-2.12.02.tar.bz2", "http://pkgs.fedoraproject.org/repo/pkgs/nasm/nasm-2.12.02.tar.bz2/d15843c3fb7db39af80571ee27ec6fad/nasm-2.12.02.tar.bz2", ], sha256 = "00b0891c678c065446ca59bcee64719d0096d54d6886e6e472aeee2e170ae324", strip_prefix = "nasm-2.12.02", build_file = str(Label("//third_party:nasm.BUILD")), ) temp_workaround_http_archive( name = "jpeg", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/libjpeg-turbo/libjpeg-turbo/archive/1.5.1.tar.gz", "https://github.com/libjpeg-turbo/libjpeg-turbo/archive/1.5.1.tar.gz", ], sha256 = "c15a9607892113946379ccea3ca8b85018301b200754f209453ab21674268e77", strip_prefix = "libjpeg-turbo-1.5.1", build_file = str(Label("//third_party/jpeg:jpeg.BUILD")), repository = tf_repo_name, ) native.new_http_archive( name = "png_archive", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/glennrp/libpng/archive/v1.2.53.zip", "https://github.com/glennrp/libpng/archive/v1.2.53.zip", ], sha256 = "c35bcc6387495ee6e757507a68ba036d38ad05b415c2553b3debe2a57647a692", strip_prefix = "libpng-1.2.53", build_file = str(Label("//third_party:png.BUILD")), ) native.new_http_archive( name = "gif_archive", urls = [ "http://bazel-mirror.storage.googleapis.com/ufpr.dl.sourceforge.net/project/giflib/giflib-5.1.4.tar.gz", "http://ufpr.dl.sourceforge.net/project/giflib/giflib-5.1.4.tar.gz", "http://pilotfiber.dl.sourceforge.net/project/giflib/giflib-5.1.4.tar.gz", ], sha256 = "34a7377ba834397db019e8eb122e551a49c98f49df75ec3fcc92b9a794a4f6d1", strip_prefix = "giflib-5.1.4", build_file = str(Label("//third_party:gif.BUILD")), ) native.new_http_archive( name = "six_archive", urls = [ "http://bazel-mirror.storage.googleapis.com/pypi.python.org/packages/source/s/six/six-1.10.0.tar.gz", "http://pypi.python.org/packages/source/s/six/six-1.10.0.tar.gz", ], sha256 = "105f8d68616f8248e24bf0e9372ef04d3cc10104f1980f54d57b2ce73a5ad56a", strip_prefix = "six-1.10.0", build_file = str(Label("//third_party:six.BUILD")), ) native.new_http_archive( name = "org_pocoo_werkzeug", urls = [ "http://bazel-mirror.storage.googleapis.com/pypi.python.org/packages/b7/7f/44d3cfe5a12ba002b253f6985a4477edfa66da53787a2a838a40f6415263/Werkzeug-0.11.10.tar.gz", "https://pypi.python.org/packages/b7/7f/44d3cfe5a12ba002b253f6985a4477edfa66da53787a2a838a40f6415263/Werkzeug-0.11.10.tar.gz", ], strip_prefix = "Werkzeug-0.11.10", sha256 = "cc64dafbacc716cdd42503cf6c44cb5a35576443d82f29f6829e5c49264aeeee", build_file = str(Label("//third_party:werkzeug.BUILD")), ) native.bind( name = "six", actual = "@six_archive//:six", ) native.http_archive( name = "protobuf", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/google/protobuf/archive/ef927cc428db7bf41d3a593a16a8f1a0fe6306c5.tar.gz", "https://github.com/google/protobuf/archive/ef927cc428db7bf41d3a593a16a8f1a0fe6306c5.tar.gz", ], sha256 = "8813a4ab27f7c61565d0db17d69236b4ec0b1404371efc728f15079b85e457ca", strip_prefix = "protobuf-ef927cc428db7bf41d3a593a16a8f1a0fe6306c5", ) native.new_http_archive( name = "gmock_archive", urls = [ "http://bazel-mirror.storage.googleapis.com/pkgs.fedoraproject.org/repo/pkgs/gmock/gmock-1.7.0.zip/073b984d8798ea1594f5e44d85b20d66/gmock-1.7.0.zip", "http://pkgs.fedoraproject.org/repo/pkgs/gmock/gmock-1.7.0.zip/073b984d8798ea1594f5e44d85b20d66/gmock-1.7.0.zip", ], sha256 = "26fcbb5925b74ad5fc8c26b0495dfc96353f4d553492eb97e85a8a6d2f43095b", strip_prefix = "gmock-1.7.0", build_file = str(Label("//third_party:gmock.BUILD")), ) native.bind( name = "gtest", actual = "@gmock_archive//:gtest", ) native.bind( name = "gtest_main", actual = "@gmock_archive//:gtest_main", ) native.bind( name = "python_headers", actual = str(Label("//util/python:python_headers")), ) native.new_http_archive( name = "pcre", sha256 = "ccdf7e788769838f8285b3ee672ed573358202305ee361cfec7a4a4fb005bbc7", urls = [ "http://bazel-mirror.storage.googleapis.com/ftp.exim.org/pub/pcre/pcre-8.39.tar.gz", "http://ftp.exim.org/pub/pcre/pcre-8.39.tar.gz", ], strip_prefix = "pcre-8.39", build_file = str(Label("//third_party:pcre.BUILD")), ) native.new_http_archive( name = "swig", sha256 = "58a475dbbd4a4d7075e5fe86d4e54c9edde39847cdb96a3053d87cb64a23a453", urls = [ "http://bazel-mirror.storage.googleapis.com/ufpr.dl.sourceforge.net/project/swig/swig/swig-3.0.8/swig-3.0.8.tar.gz", "http://ufpr.dl.sourceforge.net/project/swig/swig/swig-3.0.8/swig-3.0.8.tar.gz", "http://pilotfiber.dl.sourceforge.net/project/swig/swig/swig-3.0.8/swig-3.0.8.tar.gz", ], strip_prefix = "swig-3.0.8", build_file = str(Label("//third_party:swig.BUILD")), ) temp_workaround_http_archive( name = "curl", sha256 = "ff3e80c1ca6a068428726cd7dd19037a47cc538ce58ef61c59587191039b2ca6", urls = [ "http://bazel-mirror.storage.googleapis.com/curl.haxx.se/download/curl-7.49.1.tar.gz", "https://curl.haxx.se/download/curl-7.49.1.tar.gz", ], strip_prefix = "curl-7.49.1", build_file = str(Label("//third_party:curl.BUILD")), ) # grpc expects //external:protobuf_clib and //external:protobuf_compiler # to point to the protobuf's compiler library. native.bind( name = "protobuf_clib", actual = "@protobuf//:protoc_lib", ) native.bind( name = "protobuf_compiler", actual = "@protobuf//:protoc_lib", ) native.new_http_archive( name = "grpc", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/grpc/grpc/archive/d7ff4ff40071d2b486a052183e3e9f9382afb745.tar.gz", "https://github.com/grpc/grpc/archive/d7ff4ff40071d2b486a052183e3e9f9382afb745.tar.gz", ], sha256 = "a15f352436ab92c521b1ac11e729e155ace38d0856380cf25048c5d1d9ba8e31", strip_prefix = "grpc-d7ff4ff40071d2b486a052183e3e9f9382afb745", build_file = str(Label("//third_party:grpc.BUILD")), ) # protobuf expects //external:grpc_cpp_plugin to point to grpc's # C++ plugin code generator. native.bind( name = "grpc_cpp_plugin", actual = "@grpc//:grpc_cpp_plugin", ) native.bind( name = "grpc_lib", actual = "@grpc//:grpc++_unsecure", ) native.new_http_archive( name = "linenoise", sha256 = "7f51f45887a3d31b4ce4fa5965210a5e64637ceac12720cfce7954d6a2e812f7", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/antirez/linenoise/archive/c894b9e59f02203dbe4e2be657572cf88c4230c3.tar.gz", "https://github.com/antirez/linenoise/archive/c894b9e59f02203dbe4e2be657572cf88c4230c3.tar.gz", ], strip_prefix = "linenoise-c894b9e59f02203dbe4e2be657572cf88c4230c3", build_file = str(Label("//third_party:linenoise.BUILD")), ) # TODO(phawkins): currently, this rule uses an unofficial LLVM mirror. # Switch to an official source of snapshots if/when possible. temp_workaround_http_archive( name = "llvm", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/llvm-mirror/llvm/archive/94403df1ddb4cf9af6ac7dcbbd629fcc22e19db9.tar.gz", "https://github.com/llvm-mirror/llvm/archive/94403df1ddb4cf9af6ac7dcbbd629fcc22e19db9.tar.gz", ], sha256 = "87ce84c0d5496eeaf92e4948e76afe6bb35094de18efb3c7ce59ab4cfccdbef0", strip_prefix = "llvm-94403df1ddb4cf9af6ac7dcbbd629fcc22e19db9", build_file = str(Label("//third_party/llvm:llvm.BUILD")), repository = tf_repo_name, ) native.new_http_archive( name = "jsoncpp_git", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/open-source-parsers/jsoncpp/archive/11086dd6a7eba04289944367ca82cea71299ed70.tar.gz", "https://github.com/open-source-parsers/jsoncpp/archive/11086dd6a7eba04289944367ca82cea71299ed70.tar.gz", ], sha256 = "07d34db40593d257324ec5fb9debc4dc33f29f8fb44e33a2eeb35503e61d0fe2", strip_prefix = "jsoncpp-11086dd6a7eba04289944367ca82cea71299ed70", build_file = str(Label("//third_party:jsoncpp.BUILD")), ) native.bind( name = "jsoncpp", actual = "@jsoncpp_git//:jsoncpp", ) native.http_archive( name = "boringssl", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/google/boringssl/archive/bbcaa15b0647816b9a1a9b9e0d209cd6712f0105.tar.gz", "https://github.com/google/boringssl/archive/bbcaa15b0647816b9a1a9b9e0d209cd6712f0105.tar.gz", # 2016-07-11 ], sha256 = "025264d6e9a7ad371f2f66d17a28b6627de0c9592dc2eb54afd062f68f1f9aa3", strip_prefix = "boringssl-bbcaa15b0647816b9a1a9b9e0d209cd6712f0105", ) native.new_http_archive( name = "nanopb_git", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/nanopb/nanopb/archive/1251fa1065afc0d62f635e0f63fec8276e14e13c.tar.gz", "https://github.com/nanopb/nanopb/archive/1251fa1065afc0d62f635e0f63fec8276e14e13c.tar.gz", ], sha256 = "ab1455c8edff855f4f55b68480991559e51c11e7dab060bbab7cffb12dd3af33", strip_prefix = "nanopb-1251fa1065afc0d62f635e0f63fec8276e14e13c", build_file = str(Label("//third_party:nanopb.BUILD")), ) native.bind( name = "nanopb", actual = "@nanopb_git//:nanopb", ) native.new_http_archive( name = "zlib_archive", urls = [ "http://bazel-mirror.storage.googleapis.com/zlib.net/zlib-1.2.8.tar.gz", "http://zlib.net/fossils/zlib-1.2.8.tar.gz", ], sha256 = "36658cb768a54c1d4dec43c3116c27ed893e88b02ecfcb44f2166f9c0b7f2a0d", strip_prefix = "zlib-1.2.8", build_file = str(Label("//third_party:zlib.BUILD")), ) native.bind( name = "zlib", actual = "@zlib_archive//:zlib", ) native.new_http_archive( name = "nccl_archive", url = "https://github.com/nvidia/nccl/archive/024d1e267845f2ed06f3e2e42476d50f04a00ee6.tar.gz", sha256 = "6787f0eed88d52ee8e32956fa4947d92c139da469f1d8e311c307f27d641118e", strip_prefix = "nccl-024d1e267845f2ed06f3e2e42476d50f04a00ee6", build_file = str(Label("//third_party:nccl.BUILD")), ) # Make junit-4.12 available as //external:junit native.http_jar( name = "junit_jar", url = "https://github.com/junit-team/junit4/releases/download/r4.12/junit-4.12.jar", sha256 = "59721f0805e223d84b90677887d9ff567dc534d7c502ca903c0c2b17f05c116a", ) native.bind( name = "junit", actual = "@junit_jar//jar", ) temp_workaround_http_archive( name = "jemalloc", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/jemalloc/jemalloc/archive/4.4.0.tar.gz", "https://github.com/jemalloc/jemalloc/archive/4.4.0.tar.gz", ], sha256 = "3c8f25c02e806c3ce0ab5fb7da1817f89fc9732709024e2a81b6b82f7cc792a8", strip_prefix = "jemalloc-4.4.0", build_file = str(Label("//third_party:jemalloc.BUILD")), repository = tf_repo_name, ) ############################################################################## # TensorBoard Build Tools filegroup_external( name = "org_nodejs", # MIT with portions licensed: # - MIT # - Old MIT # - 2-Clause-BSD # - 3-Clause-BSD # - ISC # - Unicode # - zlib # - Artistic 2.0 licenses = ["notice"], sha256_urls_extract_macos = { "47109a00cac344d80296c195451bb5eee7c21727fcef1594384ddfe1f852957a": [ "http://bazel-mirror.storage.googleapis.com/nodejs.org/dist/v4.3.2/node-v4.3.2-darwin-x64.tar.xz", "http://nodejs.org/dist/v4.3.2/node-v4.3.2-darwin-x64.tar.xz", ], }, sha256_urls_windows = { "606c44c42d17866c017c50c0afadad411d9492ac4281d2431b937f881911614e": [ "http://bazel-mirror.storage.googleapis.com/nodejs.org/dist/v4.3.2/win-x64/node.exe", "http://nodejs.org/dist/v4.3.2/win-x64/node.exe", ], "451a40570099a95488d6438f175813629e0430f87f23c8659bc18dc42494820a": [ "http://bazel-mirror.storage.googleapis.com/nodejs.org/dist/v4.3.2/win-x64/node.lib", "http://nodejs.org/dist/v4.3.2/win-x64/node.lib", ], }, sha256_urls_extract = { "4350d0431b49697517c6cca5d66adf5f74eb9101c52f52ae959fa94225822d44": [ "http://bazel-mirror.storage.googleapis.com/nodejs.org/dist/v4.3.2/node-v4.3.2-linux-x64.tar.xz", "http://nodejs.org/dist/v4.3.2/node-v4.3.2-linux-x64.tar.xz", ], }, strip_prefix = { "node-v4.3.2-darwin-x64.tar.xz": "node-v4.3.2-darwin-x64", "node-v4.3.2-linux-x64.tar.xz": "node-v4.3.2-linux-x64", }, executable = [ "node", "node.exe", ], # POSTED: Email jart@google.com before changing this whitelist. visibility = ["@com_microsoft_typescript//:__pkg__"], ) filegroup_external( name = "com_microsoft_typescript", licenses = ["notice"], # Apache 2.0 sha256_urls = { "e3d9e320a2cae99be4aaa37953961a48323cdf16ba9aa2557a44d69571cd9b8d": [ "http://bazel-mirror.storage.googleapis.com/raw.githubusercontent.com/Microsoft/TypeScript/v2.1.6/lib/tsc.js", "https://raw.githubusercontent.com/Microsoft/TypeScript/v2.1.6/lib/tsc.js", ], "f189cebe96eb76b238c6e364e72d4b0324e699f83eeae5deac23506cb3764fc6": [ "http://bazel-mirror.storage.googleapis.com/raw.githubusercontent.com/Microsoft/TypeScript/v2.1.6/lib/lib.es6.d.ts", "https://raw.githubusercontent.com/Microsoft/TypeScript/v2.1.6/lib/lib.es6.d.ts", ], }, extra_build_file_content = "\n".join([ "sh_binary(", " name = \"tsc\",", " srcs = [\"tsc.sh\"],", " data = [", " \"tsc.js\",", " \"@org_nodejs\",", " ],", ")", "", "genrule(", " name = \"tsc_sh\",", " outs = [\"tsc.sh\"],", " cmd = \"cat >$@ <<'EOF'\\n\" +", " \"#!/bin/bash\\n\" +", " \"NODE=external/org_nodejs/bin/node\\n\" +", " \"if [[ -e external/org_nodejs/node.exe ]]; then\\n\" +", " \" NODE=external/org_nodejs/node.exe\\n\" +", " \"fi\\n\" +", " \"exec $${NODE} external/com_microsoft_typescript/tsc.js \\\"$$@\\\"\\n\" +", " \"EOF\",", " executable = True,", ")", ]), ) ############################################################################## # TensorBoard JavaScript Production Dependencies filegroup_external( name = "com_lodash", licenses = ["notice"], # MIT sha256_urls = { "7c7b391810bc08cf815683431857c51b5ee190062ae4f557e1e4689d6dd910ea": [ "http://bazel-mirror.storage.googleapis.com/raw.githubusercontent.com/lodash/lodash/3.8.0/lodash.js", "https://raw.githubusercontent.com/lodash/lodash/3.8.0/lodash.js", ], }, ) filegroup_external( name = "com_numericjs", # no @license header licenses = ["notice"], # MIT sha256_urls = { "dfaca3b8485bee735788cc6eebca82ea25719adc1fb8911c7799c6bd5a95df3b": [ "http://bazel-mirror.storage.googleapis.com/raw.githubusercontent.com/sloisel/numeric/v1.2.6/src/numeric.js", "https://raw.githubusercontent.com/sloisel/numeric/v1.2.6/src/numeric.js", ], }, ) filegroup_external( name = "com_palantir_plottable", # no @license header licenses = ["notice"], # MIT sha256_urls = { "77510d7538dbd3b59f1c8a06f68131b38562e3be546364747618d5112723e818": [ "http://bazel-mirror.storage.googleapis.com/raw.githubusercontent.com/palantir/plottable/v1.16.1/plottable.css", "https://raw.githubusercontent.com/palantir/plottable/v1.16.1/plottable.css", ], "cd46dc709b01cd361e8399f797760871a6a207bc832e08fcff385ced02ef2b43": [ "http://bazel-mirror.storage.googleapis.com/raw.githubusercontent.com/palantir/plottable/v1.16.1/plottable.d.ts", "https://raw.githubusercontent.com/palantir/plottable/v1.16.1/plottable.d.ts", ], "32647b0fb4175fa875a71e6d56c761b88d975186ed6a8820e2c7854165a8988d": [ "http://bazel-mirror.storage.googleapis.com/raw.githubusercontent.com/palantir/plottable/v1.16.1/plottable.js", "https://raw.githubusercontent.com/palantir/plottable/v1.16.1/plottable.js", ], }, ) filegroup_external( name = "io_github_cpettitt_dagre", # no @license header licenses = ["notice"], # MIT sha256_urls = { "7323829ddd77924a69e2b1235ded3eac30acd990da0f037e0fbd3c8e9035b50d": [ "http://bazel-mirror.storage.googleapis.com/raw.githubusercontent.com/cpettitt/dagre/v0.7.4/dist/dagre.core.js", "https://raw.githubusercontent.com/cpettitt/dagre/v0.7.4/dist/dagre.core.js", ], }, ) filegroup_external( name = "io_github_cpettitt_graphlib", # no @license header licenses = ["notice"], # MIT sha256_urls = { "772045d412b1513b549be991c2e1846c38019429d43974efcae943fbe83489bf": [ "http://bazel-mirror.storage.googleapis.com/raw.githubusercontent.com/cpettitt/graphlib/v1.0.7/dist/graphlib.core.js", "https://raw.githubusercontent.com/cpettitt/graphlib/v1.0.7/dist/graphlib.core.js", ], }, ) filegroup_external( name = "io_github_waylonflinn_weblas", # no @license header licenses = ["notice"], # MIT sha256_urls = { "f138fce57f673ca8a633f4aee5ae5b6fcb6ad0de59069a42a74e996fd04d8fcc": [ "http://bazel-mirror.storage.googleapis.com/raw.githubusercontent.com/waylonflinn/weblas/v0.9.0/dist/weblas.js", "https://raw.githubusercontent.com/waylonflinn/weblas/v0.9.0/dist/weblas.js", ], }, ) filegroup_external( name = "org_d3js", # no @license header licenses = ["notice"], # BSD-3-Clause sha256_urls = { "bc1e38838f5c5c8e040132d41efee6bfddbef728210bd566479dc1694af1d3f5": [ "http://bazel-mirror.storage.googleapis.com/raw.githubusercontent.com/d3/d3/v3.5.15/d3.js", "https://raw.githubusercontent.com/d3/d3/v3.5.15/d3.js", ], }, ) filegroup_external( name = "org_definitelytyped", licenses = ["notice"], # MIT sha256_urls = { "b7da645f6e5555feb7aeede73775da0023ce2257df9c8e76c9159266035a9c0d": [ "http://bazel-mirror.storage.googleapis.com/raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/ebc69904eb78f94030d5d517b42db20867f679c0/chai/chai.d.ts", "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/ebc69904eb78f94030d5d517b42db20867f679c0/chai/chai.d.ts", ], "177293828c7a206bf2a7f725753d51396d38668311aa37c96445f91bbf8128a7": [ "http://bazel-mirror.storage.googleapis.com/raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/6e2f2280ef16ef277049d0ce8583af167d586c59/d3/d3.d.ts", "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/6e2f2280ef16ef277049d0ce8583af167d586c59/d3/d3.d.ts", ], "e4cd3d5de0eb3bc7b1063b50d336764a0ac82a658b39b5cf90511f489ffdee60": [ "http://bazel-mirror.storage.googleapis.com/raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/efd40e67ff323f7147651bdbef03c03ead7b1675/lodash/lodash.d.ts", "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/efd40e67ff323f7147651bdbef03c03ead7b1675/lodash/lodash.d.ts", ], "695a03dd2ccb238161d97160b239ab841562710e5c4e42886aefd4ace2ce152e": [ "http://bazel-mirror.storage.googleapis.com/raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/ebc69904eb78f94030d5d517b42db20867f679c0/mocha/mocha.d.ts", "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/ebc69904eb78f94030d5d517b42db20867f679c0/mocha/mocha.d.ts", ], }, ) filegroup_external( name = "org_threejs", # no @license header licenses = ["notice"], # MIT sha256_urls = { "7aff264bd84c90bed3c72a4dc31db8c19151853c6df6980f52b01d3e9872c82d": [ "http://bazel-mirror.storage.googleapis.com/raw.githubusercontent.com/mrdoob/three.js/ad419d40bdaab80abbb34b8f359b4ee840033a02/build/three.js", "https://raw.githubusercontent.com/mrdoob/three.js/ad419d40bdaab80abbb34b8f359b4ee840033a02/build/three.js", ], "0e98ded15bb7fe398a655667e76b39909d36c0973a8950d01c62f65f93161c27": [ "http://bazel-mirror.storage.googleapis.com/raw.githubusercontent.com/mrdoob/three.js/ad419d40bdaab80abbb34b8f359b4ee840033a02/examples/js/controls/OrbitControls.js", "https://raw.githubusercontent.com/mrdoob/three.js/ad419d40bdaab80abbb34b8f359b4ee840033a02/examples/js/controls/OrbitControls.js", ], }, ) ############################################################################## # TensorBoard JavaScript Testing Dependencies filegroup_external( name = "com_chaijs", # no @license header licenses = ["notice"], # MIT sha256_urls = { "b926b325ad9843bf0b7a6d580ef78bb560e47c484b98680098d4fd9b31b77cd9": [ "http://bazel-mirror.storage.googleapis.com/raw.githubusercontent.com/chaijs/chai/2.3.0/chai.js", "https://raw.githubusercontent.com/chaijs/chai/2.3.0/chai.js", ], }, ) filegroup_external( name = "org_mochajs", # no @license header licenses = ["notice"], # MIT sha256_urls = { "e36d865a17ffdf5868e55e736526ae30f3d4bc667c85a2a28cd5c850a82361e2": [ "http://bazel-mirror.storage.googleapis.com/raw.githubusercontent.com/mochajs/mocha/2.3.4/mocha.js", "https://raw.githubusercontent.com/mochajs/mocha/2.3.4/mocha.js", ], }, ) ############################################################################## # TensorBoard Polymer Dependencies webfiles_external( name = "org_polymer_font_roboto", licenses = ["notice"], # BSD-3-Clause sha256 = "fae51429b56a4a4c15f1f0c23b733c7095940cc9c04c275fa7adb3bf055b23b3", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/font-roboto/archive/v1.0.1.tar.gz", "https://github.com/PolymerElements/font-roboto/archive/v1.0.1.tar.gz", ], strip_prefix = "font-roboto-1.0.1", path = "/font-roboto", srcs = ["roboto.html"], ) webfiles_external( name = "org_polymer_iron_a11y_announcer", licenses = ["notice"], # BSD-3-Clause sha256 = "6bce143db7a374a68535ec8b861a5f30e81f2f1e4ee36a55bda2a891f6fd2818", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/iron-a11y-announcer/archive/v1.0.5.tar.gz", "https://github.com/PolymerElements/iron-a11y-announcer/archive/v1.0.5.tar.gz", ], strip_prefix = "iron-a11y-announcer-1.0.5", path = "/iron-a11y-announcer", srcs = ["iron-a11y-announcer.html"], deps = ["@org_polymer"], ) webfiles_external( name = "org_polymer_iron_a11y_keys_behavior", licenses = ["notice"], # BSD-3-Clause sha256 = "6823efc47a83208fd51d39c5a1d3eb0c0bebc705df1ce01310509da22a13ebd2", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/iron-a11y-keys-behavior/archive/v1.1.8.tar.gz", "https://github.com/PolymerElements/iron-a11y-keys-behavior/archive/v1.1.8.tar.gz", ], strip_prefix = "iron-a11y-keys-behavior-1.1.8", path = "/iron-a11y-keys-behavior", srcs = ["iron-a11y-keys-behavior.html"], deps = ["@org_polymer"], ) webfiles_external( name = "org_polymer_iron_ajax", licenses = ["notice"], # BSD-3-Clause sha256 = "9162d8af4611e911ac3ebbfc08bb7038ac04f6e79a9287b1476fe36ad6770bc5", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/iron-ajax/archive/v1.2.0.tar.gz", "https://github.com/PolymerElements/iron-ajax/archive/v1.2.0.tar.gz", ], strip_prefix = "iron-ajax-1.2.0", path = "/iron-ajax", srcs = [ "iron-ajax.html", "iron-request.html", ], deps = [ "@org_polymer", "@org_polymer_promise_polyfill", ], ) webfiles_external( name = "org_polymer_iron_autogrow_textarea", licenses = ["notice"], # BSD-3-Clause sha256 = "50bbb901d2c8f87462e3552e3d671a552faa12c37c485e548d7a234ebffbc427", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/iron-autogrow-textarea/archive/v1.0.12.tar.gz", "https://github.com/PolymerElements/iron-autogrow-textarea/archive/v1.0.12.tar.gz", ], strip_prefix = "iron-autogrow-textarea-1.0.12", path = "/iron-autogrow-textarea", srcs = ["iron-autogrow-textarea.html"], deps = [ "@org_polymer", "@org_polymer_iron_behaviors", "@org_polymer_iron_flex_layout", "@org_polymer_iron_form_element_behavior", "@org_polymer_iron_validatable_behavior", ], ) webfiles_external( name = "org_polymer_iron_behaviors", licenses = ["notice"], # BSD-3-Clause sha256 = "a1e8d4b7a13f3d36beba9c2a6b186ed33a53e6af2e79f98c1fcc7e85e7b53f89", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/iron-behaviors/archive/v1.0.17.tar.gz", "https://github.com/PolymerElements/iron-behaviors/archive/v1.0.17.tar.gz", ], strip_prefix = "iron-behaviors-1.0.17", path = "/iron-behaviors", srcs = [ "iron-button-state.html", "iron-control-state.html", ], deps = [ "@org_polymer", "@org_polymer_iron_a11y_keys_behavior", ], ) webfiles_external( name = "org_polymer_iron_checked_element_behavior", licenses = ["notice"], # BSD-3-Clause sha256 = "539a0e1c4df0bc702d3bd342388e4e56c77ec4c2066cce69e41426a69f92e8bd", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/iron-checked-element-behavior/archive/v1.0.4.tar.gz", "https://github.com/PolymerElements/iron-checked-element-behavior/archive/v1.0.4.tar.gz", ], strip_prefix = "iron-checked-element-behavior-1.0.4", path = "/iron-checked-element-behavior", srcs = ["iron-checked-element-behavior.html"], deps = [ "@org_polymer", "@org_polymer_iron_form_element_behavior", "@org_polymer_iron_validatable_behavior", ], ) webfiles_external( name = "org_polymer_iron_collapse", licenses = ["notice"], # BSD-3-Clause sha256 = "275808994a609a2f9923e2dd2db1957945ab141ba840eadc33f19e1f406d600e", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/iron-collapse/archive/v1.0.8.tar.gz", "https://github.com/PolymerElements/iron-collapse/archive/v1.0.8.tar.gz", ], strip_prefix = "iron-collapse-1.0.8", path = "/iron-collapse", srcs = ["iron-collapse.html"], deps = [ "@org_polymer", "@org_polymer_iron_resizable_behavior", ], ) webfiles_external( name = "org_polymer_iron_demo_helpers", licenses = ["notice"], # BSD-3-Clause sha256 = "aa7458492a6ac3d1f6344640a4c2ab07bce64e7ad0422b83b5d665707598cce6", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/iron-demo-helpers/archive/v1.1.0.tar.gz", "https://github.com/PolymerElements/iron-demo-helpers/archive/v1.1.0.tar.gz", ], strip_prefix = "iron-demo-helpers-1.1.0", path = "/iron-demo-helpers", srcs = [ "demo-pages-shared-styles.html", "demo-snippet.html", ], deps = [ "@org_polymer", "@org_polymer_iron_flex_layout", "@org_polymer_iron_icons", "@org_polymer_marked_element", "@org_polymer_paper_icon_button", "@org_polymer_paper_styles", "@org_polymer_prism_element", ], ) webfiles_external( name = "org_polymer_iron_dropdown", licenses = ["notice"], # BSD-3-Clause sha256 = "f7e4a31d096d10d8af1920397695cb17f3eb1cbe5e5ff91a861dabfcc085f376", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/iron-dropdown/archive/v1.4.0.tar.gz", "https://github.com/PolymerElements/iron-dropdown/archive/v1.4.0.tar.gz", ], strip_prefix = "iron-dropdown-1.4.0", path = "/iron-dropdown", srcs = [ "iron-dropdown.html", "iron-dropdown-scroll-manager.html", ], deps = [ "@org_polymer", "@org_polymer_iron_a11y_keys_behavior", "@org_polymer_iron_behaviors", "@org_polymer_iron_overlay_behavior", "@org_polymer_iron_resizable_behavior", "@org_polymer_neon_animation", ], ) webfiles_external( name = "org_polymer_iron_fit_behavior", licenses = ["notice"], # BSD-3-Clause sha256 = "10132a2ea309a37c4c07b8fead71f64abc588ee6107931e34680f5f36dd8291e", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/iron-fit-behavior/archive/v1.2.5.tar.gz", "https://github.com/PolymerElements/iron-fit-behavior/archive/v1.2.5.tar.gz", ], strip_prefix = "iron-fit-behavior-1.2.5", path = "/iron-fit-behavior", srcs = ["iron-fit-behavior.html"], deps = ["@org_polymer"], ) webfiles_external( name = "org_polymer_iron_flex_layout", licenses = ["notice"], # BSD-3-Clause sha256 = "79287f6ca1c2d4e003f68b88fe19d03a1b6a0011e2b4cae579fe4d1474163a2e", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/iron-flex-layout/archive/v1.3.0.tar.gz", "https://github.com/PolymerElements/iron-flex-layout/archive/v1.3.0.tar.gz", ], strip_prefix = "iron-flex-layout-1.3.0", path = "/iron-flex-layout", srcs = [ "classes/iron-flex-layout.html", "classes/iron-shadow-flex-layout.html", "iron-flex-layout.html", "iron-flex-layout-classes.html", ], deps = ["@org_polymer"], ) webfiles_external( name = "org_polymer_iron_form_element_behavior", licenses = ["notice"], # BSD-3-Clause sha256 = "1dd9371c638e5bc2ecba8a64074aa680dfb8712198e9612f9ed24d387efc8f26", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/iron-form-element-behavior/archive/v1.0.6.tar.gz", "https://github.com/PolymerElements/iron-form-element-behavior/archive/v1.0.6.tar.gz", ], strip_prefix = "iron-form-element-behavior-1.0.6", path = "/iron-form-element-behavior", srcs = ["iron-form-element-behavior.html"], deps = ["@org_polymer"], ) webfiles_external( name = "org_polymer_iron_icon", licenses = ["notice"], # BSD-3-Clause sha256 = "9ed58a69159a02c07a6050d242e6d4e585a29f3245b8c8c390cfd52ddb786dc4", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/iron-icon/archive/v1.0.11.tar.gz", "https://github.com/PolymerElements/iron-icon/archive/v1.0.11.tar.gz", ], strip_prefix = "iron-icon-1.0.11", path = "/iron-icon", srcs = ["iron-icon.html"], deps = [ "@org_polymer", "@org_polymer_iron_flex_layout", "@org_polymer_iron_meta", ], ) webfiles_external( name = "org_polymer_iron_icons", licenses = ["notice"], # BSD-3-Clause sha256 = "3b18542c147c7923dc3a36b1a51984a73255d610f297d43c9aaccc52859bd0d0", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/iron-icons/archive/v1.1.3.tar.gz", "https://github.com/PolymerElements/iron-icons/archive/v1.1.3.tar.gz", ], strip_prefix = "iron-icons-1.1.3", path = "/iron-icons", srcs = [ "av-icons.html", "communication-icons.html", "device-icons.html", "editor-icons.html", "hardware-icons.html", "image-icons.html", "iron-icons.html", "maps-icons.html", "notification-icons.html", "places-icons.html", "social-icons.html", ], deps = [ "@org_polymer_iron_icon", "@org_polymer_iron_iconset_svg", ], ) webfiles_external( name = "org_polymer_iron_iconset_svg", licenses = ["notice"], # BSD-3-Clause sha256 = "7e3925b7e63a7d22524c4b43ce16ab80d06a576649644783643c11a003284368", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/iron-iconset-svg/archive/v1.1.0.tar.gz", "https://github.com/PolymerElements/iron-iconset-svg/archive/v1.1.0.tar.gz", ], strip_prefix = "iron-iconset-svg-1.1.0", path = "/iron-iconset-svg", srcs = ["iron-iconset-svg.html"], deps = [ "@org_polymer", "@org_polymer_iron_meta", ], ) webfiles_external( name = "org_polymer_iron_input", licenses = ["notice"], # BSD-3-Clause sha256 = "c505101ead08ab25526b1f49baecc8c28b4221b92a65e7334c783bdc81553c36", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/iron-input/archive/1.0.10.tar.gz", "https://github.com/PolymerElements/iron-input/archive/1.0.10.tar.gz", ], strip_prefix = "iron-input-1.0.10", path = "/iron-input", srcs = ["iron-input.html"], deps = [ "@org_polymer", "@org_polymer_iron_a11y_announcer", "@org_polymer_iron_validatable_behavior", ], ) webfiles_external( name = "org_polymer_iron_list", licenses = ["notice"], # BSD-3-Clause sha256 = "72a6530b9f0ad5557f5d287845792a0ada74d8b159198e27f940e226313dc116", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/iron-list/archive/v1.3.9.tar.gz", "https://github.com/PolymerElements/iron-list/archive/v1.3.9.tar.gz", ], strip_prefix = "iron-list-1.3.9", path = "/iron-list", srcs = ["iron-list.html"], deps = [ "@org_polymer", "@org_polymer_iron_a11y_keys_behavior", "@org_polymer_iron_resizable_behavior", "@org_polymer_iron_scroll_target_behavior", ], ) webfiles_external( name = "org_polymer_iron_menu_behavior", licenses = ["notice"], # BSD-3-Clause sha256 = "ad27889343bc9a709258b073f69abc028bb1ffd3fdb975cd2d3939f7f5d7bb6c", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/iron-menu-behavior/archive/v1.1.10.tar.gz", "https://github.com/PolymerElements/iron-menu-behavior/archive/v1.1.10.tar.gz", ], strip_prefix = "iron-menu-behavior-1.1.10", path = "/iron-menu-behavior", srcs = [ "iron-menu-behavior.html", "iron-menubar-behavior.html", ], deps = [ "@org_polymer", "@org_polymer_iron_a11y_keys_behavior", "@org_polymer_iron_selector", ], ) webfiles_external( name = "org_polymer_iron_meta", licenses = ["notice"], # BSD-3-Clause sha256 = "fb05e6031bae6b4effe5f15d44b3f548d5807f9e3b3aa2442ba17cf4b8b84361", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/iron-meta/archive/v1.1.1.tar.gz", "https://github.com/PolymerElements/iron-meta/archive/v1.1.1.tar.gz", ], strip_prefix = "iron-meta-1.1.1", path = "/iron-meta", srcs = ["iron-meta.html"], deps = ["@org_polymer"], ) webfiles_external( name = "org_polymer_iron_overlay_behavior", licenses = ["notice"], # BSD-3-Clause sha256 = "3df5b54ff2e0510c87a2aff8c9d730d3fe83d3d11277cc1a49fa29b549acb46c", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/iron-overlay-behavior/archive/v1.10.1.tar.gz", "https://github.com/PolymerElements/iron-overlay-behavior/archive/v1.10.1.tar.gz", ], strip_prefix = "iron-overlay-behavior-1.10.1", path = "/iron-overlay-behavior", srcs = [ "iron-focusables-helper.html", "iron-overlay-backdrop.html", "iron-overlay-behavior.html", "iron-overlay-manager.html", ], deps = [ "@org_polymer", "@org_polymer_iron_a11y_keys_behavior", "@org_polymer_iron_fit_behavior", "@org_polymer_iron_resizable_behavior", ], ) webfiles_external( name = "org_polymer_iron_range_behavior", licenses = ["notice"], # BSD-3-Clause sha256 = "b2f2b6d52284542330bd30b586e217926eb0adec5e13934a3cef557717c22dc2", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/iron-range-behavior/archive/v1.0.4.tar.gz", "https://github.com/PolymerElements/iron-range-behavior/archive/v1.0.4.tar.gz", ], strip_prefix = "iron-range-behavior-1.0.4", path = "/iron-range-behavior", srcs = ["iron-range-behavior.html"], deps = ["@org_polymer"], ) webfiles_external( name = "org_polymer_iron_resizable_behavior", licenses = ["notice"], # BSD-3-Clause sha256 = "a87a78ee9223c2f6afae7fc94a3ff91cbce6f7e2a7ed3f2979af7945c9281616", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/iron-resizable-behavior/archive/v1.0.3.tar.gz", "https://github.com/PolymerElements/iron-resizable-behavior/archive/v1.0.3.tar.gz", ], strip_prefix = "iron-resizable-behavior-1.0.3", path = "/iron-resizable-behavior", srcs = ["iron-resizable-behavior.html"], deps = ["@org_polymer"], ) webfiles_external( name = "org_polymer_iron_scroll_target_behavior", licenses = ["notice"], # BSD-3-Clause sha256 = "d0de0c804b1ec91d814754144afd9da1cdb082690de88bd5e47fd5f41990746f", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/iron-scroll-target-behavior/archive/v1.0.3.tar.gz", "https://github.com/PolymerElements/iron-scroll-target-behavior/archive/v1.0.3.tar.gz", ], strip_prefix = "iron-scroll-target-behavior-1.0.3", path = "/iron-scroll-target-behavior", srcs = ["iron-scroll-target-behavior.html"], deps = ["@org_polymer"], ) webfiles_external( name = "org_polymer_iron_selector", licenses = ["notice"], # BSD-3-Clause sha256 = "ba28a47443bad3b744611c9d7a79fb21dbdf2e35edc5ef8f812e2dcd72b16747", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/iron-selector/archive/v1.5.2.tar.gz", "https://github.com/PolymerElements/iron-selector/archive/v1.5.2.tar.gz", ], strip_prefix = "iron-selector-1.5.2", path = "/iron-selector", srcs = [ "iron-multi-selectable.html", "iron-selectable.html", "iron-selection.html", "iron-selector.html", ], deps = ["@org_polymer"], ) webfiles_external( name = "org_polymer_iron_validatable_behavior", licenses = ["notice"], # BSD-3-Clause sha256 = "aef4901e68043824f36104799269573dd345ffaac494186e466fdc79c06fdb63", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/iron-validatable-behavior/archive/v1.1.1.tar.gz", "https://github.com/PolymerElements/iron-validatable-behavior/archive/v1.1.1.tar.gz", ], strip_prefix = "iron-validatable-behavior-1.1.1", path = "/iron-validatable-behavior", srcs = ["iron-validatable-behavior.html"], deps = [ "@org_polymer", "@org_polymer_iron_meta", ], ) webfiles_external( name = "org_polymer_marked", licenses = ["notice"], # MIT sha256 = "93d30bd593736ca440938d77808b7ef5972da0f3fcfe4ae63ae7b4ce117da2cb", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/chjj/marked/archive/v0.3.2.zip", "https://github.com/chjj/marked/archive/v0.3.2.zip", ], strip_prefix = "marked-0.3.2", path = "/marked", srcs = ["lib/marked.js"], ) webfiles_external( name = "org_polymer_marked_element", licenses = ["notice"], # BSD-3-Clause sha256 = "7547616df95f8b903757e6afbabfcdba5322c2bcec3f17c726b8bba5adf4bc5f", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/marked-element/archive/v1.1.3.tar.gz", "https://github.com/PolymerElements/marked-element/archive/v1.1.3.tar.gz", ], strip_prefix = "marked-element-1.1.3", path = "/marked-element", srcs = [ "marked-element.html", "marked-import.html", ], deps = [ "@org_polymer", "@org_polymer_marked", ], ) webfiles_external( name = "org_polymer_neon_animation", licenses = ["notice"], # BSD-3-Clause sha256 = "8800c314a76b2da190a2b203259c1091f6d38e0057ed37c2a3d0b734980fa9a5", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/neon-animation/archive/v1.2.2.tar.gz", "https://github.com/PolymerElements/neon-animation/archive/v1.2.2.tar.gz", ], strip_prefix = "neon-animation-1.2.2", path = "/neon-animation", srcs = [ "animations/cascaded-animation.html", "animations/fade-in-animation.html", "animations/fade-out-animation.html", "animations/hero-animation.html", "animations/opaque-animation.html", "animations/reverse-ripple-animation.html", "animations/ripple-animation.html", "animations/scale-down-animation.html", "animations/scale-up-animation.html", "animations/slide-down-animation.html", "animations/slide-from-bottom-animation.html", "animations/slide-from-left-animation.html", "animations/slide-from-right-animation.html", "animations/slide-from-top-animation.html", "animations/slide-left-animation.html", "animations/slide-right-animation.html", "animations/slide-up-animation.html", "animations/transform-animation.html", "neon-animatable.html", "neon-animatable-behavior.html", "neon-animated-pages.html", "neon-animation.html", "neon-animation-behavior.html", "neon-animation-runner-behavior.html", "neon-animations.html", "neon-shared-element-animatable-behavior.html", "neon-shared-element-animation-behavior.html", "web-animations.html", ], deps = [ "@org_polymer", "@org_polymer_iron_meta", "@org_polymer_iron_resizable_behavior", "@org_polymer_iron_selector", "@org_polymer_web_animations_js", ], ) webfiles_external( name = "org_polymer_paper_behaviors", licenses = ["notice"], # BSD-3-Clause sha256 = "7cfcb9082ef9909da262df6b5c120bc62dbeaff278cb563e8fc60465ddd387e5", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/paper-behaviors/archive/v1.0.12.tar.gz", "https://github.com/PolymerElements/paper-behaviors/archive/v1.0.12.tar.gz", ], strip_prefix = "paper-behaviors-1.0.12", path = "/paper-behaviors", srcs = [ "paper-button-behavior.html", "paper-checked-element-behavior.html", "paper-inky-focus-behavior.html", "paper-ripple-behavior.html", ], deps = [ "@org_polymer", "@org_polymer_iron_behaviors", "@org_polymer_iron_checked_element_behavior", "@org_polymer_paper_ripple", ], ) webfiles_external( name = "org_polymer_paper_button", licenses = ["notice"], # BSD-3-Clause sha256 = "896c0a7e34bfcce63fc23c63e105ed9c4d62fa3a6385b7161e1e5cd4058820a6", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/paper-button/archive/v1.0.11.tar.gz", "https://github.com/PolymerElements/paper-button/archive/v1.0.11.tar.gz", ], strip_prefix = "paper-button-1.0.11", path = "/paper-button", srcs = ["paper-button.html"], deps = [ "@org_polymer", "@org_polymer_iron_flex_layout", "@org_polymer_paper_behaviors", "@org_polymer_paper_material", "@org_polymer_paper_ripple", ], ) webfiles_external( name = "org_polymer_paper_checkbox", licenses = ["notice"], # BSD-3-Clause sha256 = "6828a6954a048b1230fbd2606faffbae950ba1d042175b96ec50ae355786a166", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/paper-checkbox/archive/v1.4.0.tar.gz", "https://github.com/PolymerElements/paper-checkbox/archive/v1.4.0.tar.gz", ], strip_prefix = "paper-checkbox-1.4.0", path = "/paper-checkbox", srcs = ["paper-checkbox.html"], deps = [ "@org_polymer", "@org_polymer_paper_behaviors", "@org_polymer_paper_styles", ], ) webfiles_external( name = "org_polymer_paper_dialog", licenses = ["notice"], # BSD-3-Clause sha256 = "c6a9709e7f528d03dcd574503c18b72d4751ca30017346d16e6a791d37ed9259", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/paper-dialog/archive/v1.0.4.tar.gz", "https://github.com/PolymerElements/paper-dialog/archive/v1.0.4.tar.gz", ], strip_prefix = "paper-dialog-1.0.4", path = "/paper-dialog", srcs = ["paper-dialog.html"], deps = [ "@org_polymer", "@org_polymer_neon_animation", "@org_polymer_paper_dialog_behavior", ], ) webfiles_external( name = "org_polymer_paper_dialog_behavior", licenses = ["notice"], # BSD-3-Clause sha256 = "a7e0e27ce63554bc14f384cf94bcfa24da8dc5f5120dfd565f45e166261aee40", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/paper-dialog-behavior/archive/v1.2.5.tar.gz", "https://github.com/PolymerElements/paper-dialog-behavior/archive/v1.2.5.tar.gz", ], strip_prefix = "paper-dialog-behavior-1.2.5", path = "/paper-dialog-behavior", srcs = [ "paper-dialog-behavior.html", "paper-dialog-common.css", "paper-dialog-shared-styles.html", ], suppress = ["cssSyntax"], deps = [ "@org_polymer", "@org_polymer_iron_flex_layout", "@org_polymer_iron_overlay_behavior", "@org_polymer_paper_styles", ], ) webfiles_external( name = "org_polymer_paper_dialog_scrollable", licenses = ["notice"], # BSD-3-Clause sha256 = "a2e69283e7674f782c44d811387a0f8da2d01fac0172743d1add65e253e6b5ff", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/paper-dialog-scrollable/archive/1.1.5.tar.gz", "https://github.com/PolymerElements/paper-dialog-scrollable/archive/1.1.5.tar.gz", ], strip_prefix = "paper-dialog-scrollable-1.1.5", path = "/paper-dialog-scrollable", srcs = ["paper-dialog-scrollable.html"], deps = [ "@org_polymer", "@org_polymer_iron_flex_layout", "@org_polymer_paper_dialog_behavior", "@org_polymer_paper_styles", ], ) webfiles_external( name = "org_polymer_paper_dropdown_menu", licenses = ["notice"], # BSD-3-Clause sha256 = "9d88f654ec03ee9be211df9e69bede9e8a22b51bf1dbcc63b79762e4256d81ad", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/paper-dropdown-menu/archive/v1.4.0.tar.gz", "https://github.com/PolymerElements/paper-dropdown-menu/archive/v1.4.0.tar.gz", ], strip_prefix = "paper-dropdown-menu-1.4.0", path = "/paper-dropdown-menu", srcs = [ "paper-dropdown-menu.html", "paper-dropdown-menu-icons.html", "paper-dropdown-menu-light.html", "paper-dropdown-menu-shared-styles.html", ], deps = [ "@org_polymer", "@org_polymer_iron_a11y_keys_behavior", "@org_polymer_iron_behaviors", "@org_polymer_iron_form_element_behavior", "@org_polymer_iron_icon", "@org_polymer_iron_iconset_svg", "@org_polymer_iron_validatable_behavior", "@org_polymer_paper_behaviors", "@org_polymer_paper_input", "@org_polymer_paper_menu_button", "@org_polymer_paper_ripple", "@org_polymer_paper_styles", ], ) webfiles_external( name = "org_polymer_paper_header_panel", licenses = ["notice"], # BSD-3-Clause sha256 = "0db4bd8a4bf6f20dcd0dffb4f907b31c93a8647c9c021344239cf30b40b87075", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/paper-header-panel/archive/v1.1.4.tar.gz", "https://github.com/PolymerElements/paper-header-panel/archive/v1.1.4.tar.gz", ], strip_prefix = "paper-header-panel-1.1.4", path = "/paper-header-panel", srcs = ["paper-header-panel.html"], deps = [ "@org_polymer", "@org_polymer_iron_flex_layout", ], ) webfiles_external( name = "org_polymer_paper_icon_button", licenses = ["notice"], # BSD-3-Clause sha256 = "9cba5bcfd6aeb4c41581c1392c678cf2278d360e9d122f4d9db54a9ebb404496", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/paper-icon-button/archive/v1.1.3.tar.gz", "https://github.com/PolymerElements/paper-icon-button/archive/v1.1.3.tar.gz", ], strip_prefix = "paper-icon-button-1.1.3", path = "/paper-icon-button", srcs = [ "paper-icon-button.html", "paper-icon-button-light.html", ], deps = [ "@org_polymer", "@org_polymer_iron_icon", "@org_polymer_paper_behaviors", "@org_polymer_paper_styles", ], ) webfiles_external( name = "org_polymer_paper_input", licenses = ["notice"], # BSD-3-Clause sha256 = "17c3dea9bb1c2026cc61324696c6c774214a0dc37686b91ca214a6af550994db", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/paper-input/archive/v1.1.18.tar.gz", "https://github.com/PolymerElements/paper-input/archive/v1.1.18.tar.gz", ], strip_prefix = "paper-input-1.1.18", path = "/paper-input", srcs = [ "paper-input.html", "paper-input-addon-behavior.html", "paper-input-behavior.html", "paper-input-char-counter.html", "paper-input-container.html", "paper-input-error.html", "paper-textarea.html", ], deps = [ "@org_polymer", "@org_polymer_iron_a11y_keys_behavior", "@org_polymer_iron_autogrow_textarea", "@org_polymer_iron_behaviors", "@org_polymer_iron_flex_layout", "@org_polymer_iron_form_element_behavior", "@org_polymer_iron_input", "@org_polymer_paper_styles", ], ) webfiles_external( name = "org_polymer_paper_item", licenses = ["notice"], # BSD-3-Clause sha256 = "12ee0dcb61b0d5721c5988571f6974d7b2211e97724f4195893fbcc9058cdac8", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/paper-item/archive/v1.1.4.tar.gz", "https://github.com/PolymerElements/paper-item/archive/v1.1.4.tar.gz", ], strip_prefix = "paper-item-1.1.4", path = "/paper-item", srcs = [ "paper-icon-item.html", "paper-item.html", "paper-item-behavior.html", "paper-item-body.html", "paper-item-shared-styles.html", ], deps = [ "@org_polymer", "@org_polymer_iron_behaviors", "@org_polymer_iron_flex_layout", "@org_polymer_paper_styles", ], ) webfiles_external( name = "org_polymer_paper_listbox", licenses = ["notice"], # BSD-3-Clause sha256 = "3cb35f4fe9a3f15185a9e91711dba8f27e9291c8cd371ebf1be21b8f1d5f65fb", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/paper-listbox/archive/v1.1.2.tar.gz", "https://github.com/PolymerElements/paper-listbox/archive/v1.1.2.tar.gz", ], strip_prefix = "paper-listbox-1.1.2", path = "/paper-listbox", srcs = ["paper-listbox.html"], deps = [ "@org_polymer", "@org_polymer_iron_menu_behavior", "@org_polymer_paper_styles", ], ) webfiles_external( name = "org_polymer_paper_material", licenses = ["notice"], # BSD-3-Clause sha256 = "09f6c8bd6ddbea2be541dc86306efe41cdfb31bec0b69d35a5dc29772bbc8506", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/paper-material/archive/v1.0.6.tar.gz", "https://github.com/PolymerElements/paper-material/archive/v1.0.6.tar.gz", ], strip_prefix = "paper-material-1.0.6", path = "/paper-material", srcs = [ "paper-material.html", "paper-material-shared-styles.html", ], deps = [ "@org_polymer", "@org_polymer_paper_styles", ], ) webfiles_external( name = "org_polymer_paper_menu", licenses = ["notice"], # BSD-3-Clause sha256 = "a3cee220926e315f7412236b3628288774694447c0da4428345f36d0f127ba3b", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/paper-menu/archive/v1.2.2.tar.gz", "https://github.com/PolymerElements/paper-menu/archive/v1.2.2.tar.gz", ], strip_prefix = "paper-menu-1.2.2", path = "/paper-menu", srcs = [ "paper-menu.html", "paper-menu-shared-styles.html", "paper-submenu.html", ], deps = [ "@org_polymer", "@org_polymer_iron_behaviors", "@org_polymer_iron_collapse", "@org_polymer_iron_flex_layout", "@org_polymer_iron_menu_behavior", "@org_polymer_paper_styles", ], ) webfiles_external( name = "org_polymer_paper_menu_button", licenses = ["notice"], # BSD-3-Clause sha256 = "be3290c288a2bd4f9887213db22c75add99cc29ff4d088100c0bc4eb0e57997b", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/paper-menu-button/archive/v1.5.1.tar.gz", "https://github.com/PolymerElements/paper-menu-button/archive/v1.5.1.tar.gz", ], strip_prefix = "paper-menu-button-1.5.1", path = "/paper-menu-button", srcs = [ "paper-menu-button.html", "paper-menu-button-animations.html", ], deps = [ "@org_polymer", "@org_polymer_iron_a11y_keys_behavior", "@org_polymer_iron_behaviors", "@org_polymer_iron_dropdown", "@org_polymer_neon_animation", "@org_polymer_paper_styles", ], ) webfiles_external( name = "org_polymer_paper_progress", licenses = ["notice"], # BSD-3-Clause sha256 = "2b6776b2f023c1f344feea17ba29b58d879e46f8ed43b7256495054b5183fff6", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/paper-progress/archive/v1.0.9.tar.gz", "https://github.com/PolymerElements/paper-progress/archive/v1.0.9.tar.gz", ], strip_prefix = "paper-progress-1.0.9", path = "/paper-progress", srcs = ["paper-progress.html"], deps = [ "@org_polymer", "@org_polymer_iron_flex_layout", "@org_polymer_iron_range_behavior", "@org_polymer_paper_styles", ], ) webfiles_external( name = "org_polymer_paper_radio_button", licenses = ["notice"], # BSD-3-Clause sha256 = "6e911d0c308aa388136b3af79d1bdcbe5a1f4159cbc79d71efb4ff3b6c0b4e91", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/paper-radio-button/archive/v1.1.2.tar.gz", "https://github.com/PolymerElements/paper-radio-button/archive/v1.1.2.tar.gz", ], strip_prefix = "paper-radio-button-1.1.2", path = "/paper-radio-button", srcs = ["paper-radio-button.html"], deps = [ "@org_polymer", "@org_polymer_paper_behaviors", "@org_polymer_paper_styles", ], ) webfiles_external( name = "org_polymer_paper_radio_group", licenses = ["notice"], # BSD-3-Clause sha256 = "7885ad1f81e9dcc03dcea4139b54a201ff55c18543770cd44f94530046c9e163", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/paper-radio-group/archive/v1.0.9.tar.gz", "https://github.com/PolymerElements/paper-radio-group/archive/v1.0.9.tar.gz", ], strip_prefix = "paper-radio-group-1.0.9", path = "/paper-radio-group", srcs = ["paper-radio-group.html"], deps = [ "@org_polymer", "@org_polymer_iron_a11y_keys_behavior", "@org_polymer_iron_selector", "@org_polymer_paper_radio_button", ], ) webfiles_external( name = "org_polymer_paper_ripple", licenses = ["notice"], # BSD-3-Clause sha256 = "ba76bfb1c737260a8a103d3ca97faa1f7c3288c7db9b2519f401b7a782147c09", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/paper-ripple/archive/v1.0.5.tar.gz", "https://github.com/PolymerElements/paper-ripple/archive/v1.0.5.tar.gz", ], strip_prefix = "paper-ripple-1.0.5", path = "/paper-ripple", srcs = ["paper-ripple.html"], deps = [ "@org_polymer", "@org_polymer_iron_a11y_keys_behavior", ], ) webfiles_external( name = "org_polymer_paper_slider", licenses = ["notice"], # BSD-3-Clause sha256 = "08e7c541dbf5d2e959208810bfc03188e82ced87e4d30d325172967f67962c3c", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/paper-slider/archive/v1.0.10.tar.gz", "https://github.com/PolymerElements/paper-slider/archive/v1.0.10.tar.gz", ], strip_prefix = "paper-slider-1.0.10", path = "/paper-slider", srcs = ["paper-slider.html"], deps = [ "@org_polymer", "@org_polymer_iron_a11y_keys_behavior", "@org_polymer_iron_flex_layout", "@org_polymer_iron_form_element_behavior", "@org_polymer_iron_range_behavior", "@org_polymer_paper_behaviors", "@org_polymer_paper_input", "@org_polymer_paper_progress", "@org_polymer_paper_styles", ], ) webfiles_external( name = "org_polymer_paper_spinner", licenses = ["notice"], # BSD-3-Clause sha256 = "6a752907fab7899cbeed15b478e7b9299047c15fbf9d1561d6eb4d204bdbd178", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/paper-spinner/archive/v1.1.1.tar.gz", "https://github.com/PolymerElements/paper-spinner/archive/v1.1.1.tar.gz", ], strip_prefix = "paper-spinner-1.1.1", path = "/paper-spinner", srcs = [ "paper-spinner.html", "paper-spinner-behavior.html", "paper-spinner-lite.html", "paper-spinner-styles.html" ], deps = [ "@org_polymer", "@org_polymer_iron_flex_layout", "@org_polymer_paper_styles", ], ) webfiles_external( name = "org_polymer_paper_styles", licenses = ["notice"], # BSD-3-Clause sha256 = "6d26b0a4c286402098853dc7388f6b22f30dfb7a74e47b34992ac03380144bb2", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/paper-styles/archive/v1.1.4.tar.gz", "https://github.com/PolymerElements/paper-styles/archive/v1.1.4.tar.gz", ], strip_prefix = "paper-styles-1.1.4", path = "/paper-styles", srcs = [ "classes/global.html", "classes/shadow.html", "classes/shadow-layout.html", "classes/typography.html", "color.html", "default-theme.html", "demo.css", "demo-pages.html", "paper-styles.html", "paper-styles-classes.html", "shadow.html", "typography.html", ], deps = [ "@org_polymer", "@org_polymer_font_roboto", "@org_polymer_iron_flex_layout", ], ) webfiles_external( name = "org_polymer_paper_tabs", licenses = ["notice"], # BSD-3-Clause sha256 = "c23b6a5221db35e5b1ed3eb8e8696b952572563e285adaec96aba1e3134db825", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/paper-tabs/archive/v1.7.0.tar.gz", "https://github.com/PolymerElements/paper-tabs/archive/v1.7.0.tar.gz", ], strip_prefix = "paper-tabs-1.7.0", path = "/paper-tabs", srcs = [ "paper-tab.html", "paper-tabs.html", "paper-tabs-icons.html", ], deps = [ "@org_polymer", "@org_polymer_iron_behaviors", "@org_polymer_iron_flex_layout", "@org_polymer_iron_icon", "@org_polymer_iron_iconset_svg", "@org_polymer_iron_menu_behavior", "@org_polymer_iron_resizable_behavior", "@org_polymer_paper_behaviors", "@org_polymer_paper_icon_button", "@org_polymer_paper_styles", ], ) webfiles_external( name = "org_polymer_paper_toast", licenses = ["notice"], # BSD-3-Clause sha256 = "55f623712ed1f2bae6d6fadc522a2458e083ccd44cc0a907672547e7b10758a9", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/paper-toast/archive/v1.3.0.tar.gz", "https://github.com/PolymerElements/paper-toast/archive/v1.3.0.tar.gz", ], strip_prefix = "paper-toast-1.3.0", path = "/paper-toast", srcs = ["paper-toast.html"], deps = [ "@org_polymer", "@org_polymer_iron_a11y_announcer", "@org_polymer_iron_overlay_behavior", ], ) webfiles_external( name = "org_polymer_paper_toggle_button", licenses = ["notice"], # BSD-3-Clause sha256 = "4aa7cf0396fa2994a8bc2ac6e8428f48b07b945bb7c41bd52041ef5827b45de3", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/paper-toggle-button/archive/v1.2.0.tar.gz", "https://github.com/PolymerElements/paper-toggle-button/archive/v1.2.0.tar.gz", ], strip_prefix = "paper-toggle-button-1.2.0", path = "/paper-toggle-button", srcs = ["paper-toggle-button.html"], deps = [ "@org_polymer", "@org_polymer_iron_flex_layout", "@org_polymer_paper_behaviors", "@org_polymer_paper_styles", ], ) webfiles_external( name = "org_polymer_paper_toolbar", licenses = ["notice"], # BSD-3-Clause sha256 = "dbddffc0654d9fb5fb48843087eebe16bf7a134902495a664c96c11bf8a2c63d", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/paper-toolbar/archive/v1.1.4.tar.gz", "https://github.com/PolymerElements/paper-toolbar/archive/v1.1.4.tar.gz", ], strip_prefix = "paper-toolbar-1.1.4", path = "/paper-toolbar", srcs = ["paper-toolbar.html"], deps = [ "@org_polymer", "@org_polymer_iron_flex_layout", "@org_polymer_paper_styles", ], ) webfiles_external( name = "org_polymer_paper_tooltip", licenses = ["notice"], # BSD-3-Clause sha256 = "4c6667acf01f73da14c3cbc0aa574bf14280304567987ee0314534328377d2ad", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/paper-tooltip/archive/v1.1.2.tar.gz", "https://github.com/PolymerElements/paper-tooltip/archive/v1.1.2.tar.gz", ], strip_prefix = "paper-tooltip-1.1.2", path = "/paper-tooltip", srcs = ["paper-tooltip.html"], deps = [ "@org_polymer", "@org_polymer_neon_animation", ], ) webfiles_external( name = "org_polymer", licenses = ["notice"], # BSD-3-Clause sha256 = "07a9e62ffb52193da3af09adda2fbac5cc690439978520e2d03e783863f65f91", strip_prefix = "polymer-1.7.0", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/polymer/polymer/archive/v1.7.0.tar.gz", "https://github.com/polymer/polymer/archive/v1.7.0.tar.gz", ], path = "/polymer", srcs = [ "polymer.html", "polymer-micro.html", "polymer-mini.html", ], ) webfiles_external( name = "org_polymer_prism", licenses = ["notice"], # MIT sha256 = "e06eb54f2a80e6b3cd0bd4d59f900423bcaee53fc03998a056df63740c684683", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/PrismJS/prism/archive/abee2b7587f1925e57777044270e2a1860810994.tar.gz", "https://github.com/PrismJS/prism/archive/abee2b7587f1925e57777044270e2a1860810994.tar.gz", ], strip_prefix = "prism-abee2b7587f1925e57777044270e2a1860810994", path = "/prism", srcs = [ "prism.js", "themes/prism.css", ], ) webfiles_external( name = "org_polymer_prism_element", licenses = ["notice"], # BSD-3-Clause sha256 = "ad70bf9cd5bbdf525d465e1b0658867ab4022193eb9c74087a839044b46312b4", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/PolymerElements/prism-element/archive/1.0.4.tar.gz", "https://github.com/PolymerElements/prism-element/archive/1.0.4.tar.gz", ], strip_prefix = "prism-element-1.0.4", path = "/prism-element", srcs = [ "prism-highlighter.html", "prism-import.html", ], deps = [ "@org_polymer", "@org_polymer_prism", ], ) webfiles_external( name = "org_polymer_promise_polyfill", licenses = ["notice"], # BSD-3-Clause sha256 = "4495450e5d884c3e16b537b43afead7f84d17c7dc061bcfcbf440eac083e4ef5", strip_prefix = "promise-polyfill-1.0.0", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/PolymerLabs/promise-polyfill/archive/v1.0.0.tar.gz", "https://github.com/PolymerLabs/promise-polyfill/archive/v1.0.0.tar.gz", ], path = "/promise-polyfill", srcs = [ "Promise.js", "Promise-Statics.js", "promise-polyfill.html", "promise-polyfill-lite.html" ], deps = ["@org_polymer"], ) webfiles_external( name = "org_polymer_web_animations_js", licenses = ["notice"], # BSD-3-Clause sha256 = "f8bd760cbdeba131f6790bd5abe170bcbf7b1755ff58ed16d0b82fa8a7f34a7f", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/web-animations/web-animations-js/archive/2.2.1.tar.gz", "https://github.com/web-animations/web-animations-js/archive/2.2.1.tar.gz", ], strip_prefix = "web-animations-js-2.2.1", path = "/web-animations-js", srcs = ["web-animations-next-lite.min.js"], ) webfiles_external( name = "org_polymer_webcomponentsjs", licenses = ["notice"], # BSD-3-Clause sha256 = "138c43306ee0a6d699ddca9b3c6b0f4982974ea8b7bdad291ea7276c72301df9", urls = [ "http://bazel-mirror.storage.googleapis.com/github.com/webcomponents/webcomponentsjs/archive/v0.7.22.tar.gz", "https://github.com/webcomponents/webcomponentsjs/archive/v0.7.22.tar.gz", ], strip_prefix = "webcomponentsjs-0.7.22", path = "/webcomponentsjs", srcs = [ "CustomElements.js", "CustomElements.min.js", "HTMLImports.js", "HTMLImports.min.js", "MutationObserver.js", "MutationObserver.min.js", "ShadowDOM.js", "ShadowDOM.min.js", "webcomponents.js", "webcomponents.min.js", "webcomponents-lite.js", "webcomponents-lite.min.js", ], )