blob: 958a53c30ed1b5f3fc3f0df80d1e69885cf22191 [file] [log] [blame]
Vijay Vasudevan8cc567b2016-05-26 11:05:13 -08001workspace(name = "org_tensorflow")
2
Justine Tunney02f276c2017-02-03 17:13:49 -08003http_archive(
4 name = "io_bazel_rules_closure",
5 sha256 = "60fc6977908f999b23ca65698c2bb70213403824a84f7904310b6000d78be9ce",
6 strip_prefix = "rules_closure-5ca1dab6df9ad02050f7ba4e816407f88690cf7d",
7 urls = [
8 "http://bazel-mirror.storage.googleapis.com/github.com/bazelbuild/rules_closure/archive/5ca1dab6df9ad02050f7ba4e816407f88690cf7d.tar.gz", # 2017-02-03
9 "https://github.com/bazelbuild/rules_closure/archive/5ca1dab6df9ad02050f7ba4e816407f88690cf7d.tar.gz",
10 ],
11)
12
13load("@io_bazel_rules_closure//closure:defs.bzl", "closure_repositories")
14
15closure_repositories()
16
Shanqing Caiefd40e52017-01-08 20:31:30 -080017load("//tensorflow:workspace.bzl", "check_version", "tf_workspace")
18
19# We must check the bazel version before trying to parse any other BUILD files,
20# in case the parsing of those build files depends on the bazel version we
21# require here.
22check_version("0.4.2")
23
Manjunath Kudlurf41959c2015-11-06 16:27:58 -080024# Uncomment and update the paths in these entries to build the Android demo.
25#android_sdk_repository(
26# name = "androidsdk",
27# api_level = 23,
28# build_tools_version = "23.0.1",
29# # Replace with path to Android SDK on your system
30# path = "<PATH_TO_SDK>",
31#)
32#
33#android_ndk_repository(
34# name="androidndk",
35# path="<PATH_TO_NDK>",
36# api_level=21)
37
Kiril Gorovoy5b5976a2016-03-10 14:06:08 -080038# Please add all new TensorFlow dependencies in workspace.bzl.
Kiril Gorovoy77da1682016-02-24 18:02:16 -080039tf_workspace()
Manjunath Kudlurf41959c2015-11-06 16:27:58 -080040
Dan Smilkovf0e9bd32016-11-09 12:53:00 -080041new_http_archive(
42 name = "inception5h",
43 build_file = "models.BUILD",
44 url = "https://storage.googleapis.com/download.tensorflow.org/models/inception5h.zip",
45 sha256 = "d13569f6a98159de37e92e9c8ec4dae8f674fbf475f69fe6199b514f756d4364"
46)
47
Andrew Harpa30b9922016-11-28 15:41:52 -080048new_http_archive(
49 name = "mobile_multibox",
50 build_file = "models.BUILD",
Andrew Harpff151c92017-01-18 13:11:45 -080051 url = "https://storage.googleapis.com/download.tensorflow.org/models/mobile_multibox_v1a.zip",
52 sha256 = "859edcddf84dddb974c36c36cfc1f74555148e9c9213dedacf1d6b613ad52b96"
Andrew Harpa30b9922016-11-28 15:41:52 -080053)
54
Andrew Harp6426c4e2017-01-11 14:05:52 -080055new_http_archive(
56 name = "stylize",
57 build_file = "models.BUILD",
58 url = "https://storage.googleapis.com/download.tensorflow.org/models/stylize_v1.zip",
59 sha256 = "3d374a730aef330424a356a8d4f04d8a54277c425e274ecb7d9c83aa912c6bfa"
60)
61
A. Unique TensorFlower231c8532016-01-06 12:52:05 -080062# TENSORBOARD_BOWER_AUTOGENERATED_BELOW_THIS_LINE_DO_NOT_EDIT
63
Dan Smilkov80acdaf2016-08-31 09:24:10 -080064new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -080065 name = "d3",
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -080066 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -080067 url = "https://github.com/mbostock-bower/d3-bower/archive/v3.5.15.tar.gz",
68 strip_prefix = "d3-bower-3.5.15",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -080069)
70
Dan Smilkov80acdaf2016-08-31 09:24:10 -080071new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -080072 name = "dagre",
73 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -080074 url = "https://github.com/cpettitt/dagre/archive/v0.7.4.tar.gz",
75 strip_prefix = "dagre-0.7.4",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -080076)
77
Dan Smilkov80acdaf2016-08-31 09:24:10 -080078new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -080079 name = "es6_promise",
80 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -080081 url = "https://github.com/components/es6-promise/archive/v2.1.0.tar.gz",
82 strip_prefix = "es6-promise-2.1.0",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -080083)
84
Dan Smilkov80acdaf2016-08-31 09:24:10 -080085new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -080086 name = "font_roboto",
87 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -080088 url = "https://github.com/polymerelements/font-roboto/archive/v1.0.1.tar.gz",
89 strip_prefix = "font-roboto-1.0.1",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -080090)
91
Dan Smilkov80acdaf2016-08-31 09:24:10 -080092new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -080093 name = "graphlib",
94 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -080095 url = "https://github.com/cpettitt/graphlib/archive/v1.0.7.tar.gz",
96 strip_prefix = "graphlib-1.0.7",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -080097)
98
Dan Smilkov80acdaf2016-08-31 09:24:10 -080099new_http_archive(
Dan Mané3b2309b2016-04-01 17:55:43 -0800100 name = "iron_a11y_announcer",
101 build_file = "bower.BUILD",
Dan Smilkovf0e9bd32016-11-09 12:53:00 -0800102 url = "https://github.com/polymerelements/iron-a11y-announcer/archive/v1.0.5.tar.gz",
103 strip_prefix = "iron-a11y-announcer-1.0.5",
Dan Mané3b2309b2016-04-01 17:55:43 -0800104)
105
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800106new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800107 name = "iron_a11y_keys_behavior",
108 build_file = "bower.BUILD",
Dan Smilkov3037d182016-10-10 05:08:49 -0800109 url = "https://github.com/polymerelements/iron-a11y-keys-behavior/archive/v1.1.8.tar.gz",
110 strip_prefix = "iron-a11y-keys-behavior-1.1.8",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800111)
112
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800113new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800114 name = "iron_ajax",
115 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800116 url = "https://github.com/polymerelements/iron-ajax/archive/v1.2.0.tar.gz",
117 strip_prefix = "iron-ajax-1.2.0",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800118)
119
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800120new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800121 name = "iron_autogrow_textarea",
122 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800123 url = "https://github.com/polymerelements/iron-autogrow-textarea/archive/v1.0.12.tar.gz",
124 strip_prefix = "iron-autogrow-textarea-1.0.12",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800125)
126
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800127new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800128 name = "iron_behaviors",
129 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800130 url = "https://github.com/polymerelements/iron-behaviors/archive/v1.0.17.tar.gz",
131 strip_prefix = "iron-behaviors-1.0.17",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800132)
133
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800134new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800135 name = "iron_checked_element_behavior",
136 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800137 url = "https://github.com/polymerelements/iron-checked-element-behavior/archive/v1.0.4.tar.gz",
138 strip_prefix = "iron-checked-element-behavior-1.0.4",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800139)
140
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800141new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800142 name = "iron_collapse",
143 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800144 url = "https://github.com/polymerelements/iron-collapse/archive/v1.0.8.tar.gz",
145 strip_prefix = "iron-collapse-1.0.8",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800146)
147
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800148new_http_archive(
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -0800149 name = "iron_dropdown",
150 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800151 url = "https://github.com/polymerelements/iron-dropdown/archive/v1.4.0.tar.gz",
152 strip_prefix = "iron-dropdown-1.4.0",
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -0800153)
154
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800155new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800156 name = "iron_fit_behavior",
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -0800157 build_file = "bower.BUILD",
Dan Smilkov38a4afc2016-08-31 11:56:58 -0800158 url = "https://github.com/polymerelements/iron-fit-behavior/archive/v1.2.5.tar.gz",
159 strip_prefix = "iron-fit-behavior-1.2.5",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800160)
161
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800162new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800163 name = "iron_flex_layout",
164 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800165 url = "https://github.com/polymerelements/iron-flex-layout/archive/v1.3.0.tar.gz",
166 strip_prefix = "iron-flex-layout-1.3.0",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800167)
168
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800169new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800170 name = "iron_form_element_behavior",
171 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800172 url = "https://github.com/polymerelements/iron-form-element-behavior/archive/v1.0.6.tar.gz",
173 strip_prefix = "iron-form-element-behavior-1.0.6",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800174)
175
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800176new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800177 name = "iron_icon",
178 build_file = "bower.BUILD",
Dan Smilkov3037d182016-10-10 05:08:49 -0800179 url = "https://github.com/polymerelements/iron-icon/archive/v1.0.11.tar.gz",
180 strip_prefix = "iron-icon-1.0.11",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800181)
182
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800183new_http_archive(
Dan Manéec1077a2016-08-26 11:37:27 -0800184 name = "iron_icons",
185 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800186 url = "https://github.com/polymerelements/iron-icons/archive/v1.1.3.tar.gz",
187 strip_prefix = "iron-icons-1.1.3",
Dan Manéec1077a2016-08-26 11:37:27 -0800188)
189
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800190new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800191 name = "iron_iconset_svg",
192 build_file = "bower.BUILD",
Dan Smilkovc3bed282016-11-01 14:15:58 -0800193 url = "https://github.com/polymerelements/iron-iconset-svg/archive/v1.1.0.tar.gz",
194 strip_prefix = "iron-iconset-svg-1.1.0",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800195)
196
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800197new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800198 name = "iron_input",
199 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800200 url = "https://github.com/polymerelements/iron-input/archive/1.0.10.tar.gz",
201 strip_prefix = "iron-input-1.0.10",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800202)
203
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800204new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800205 name = "iron_list",
206 build_file = "bower.BUILD",
Dan Smilkov3037d182016-10-10 05:08:49 -0800207 url = "https://github.com/polymerelements/iron-list/archive/v1.3.9.tar.gz",
208 strip_prefix = "iron-list-1.3.9",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800209)
210
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800211new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800212 name = "iron_menu_behavior",
213 build_file = "bower.BUILD",
Dan Smilkov3037d182016-10-10 05:08:49 -0800214 url = "https://github.com/polymerelements/iron-menu-behavior/archive/v1.1.10.tar.gz",
215 strip_prefix = "iron-menu-behavior-1.1.10",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800216)
217
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800218new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800219 name = "iron_meta",
220 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800221 url = "https://github.com/polymerelements/iron-meta/archive/v1.1.1.tar.gz",
222 strip_prefix = "iron-meta-1.1.1",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800223)
224
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800225new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800226 name = "iron_overlay_behavior",
227 build_file = "bower.BUILD",
Dan Smilkovc3bed282016-11-01 14:15:58 -0800228 url = "https://github.com/polymerelements/iron-overlay-behavior/archive/v1.10.1.tar.gz",
229 strip_prefix = "iron-overlay-behavior-1.10.1",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800230)
231
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800232new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800233 name = "iron_range_behavior",
234 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800235 url = "https://github.com/polymerelements/iron-range-behavior/archive/v1.0.4.tar.gz",
236 strip_prefix = "iron-range-behavior-1.0.4",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800237)
238
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800239new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800240 name = "iron_resizable_behavior",
241 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800242 url = "https://github.com/polymerelements/iron-resizable-behavior/archive/v1.0.3.tar.gz",
243 strip_prefix = "iron-resizable-behavior-1.0.3",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800244)
245
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800246new_http_archive(
Dan Smilkovc3bed282016-11-01 14:15:58 -0800247 name = "iron_scroll_target_behavior",
248 build_file = "bower.BUILD",
249 url = "https://github.com/polymerelements/iron-scroll-target-behavior/archive/v1.0.3.tar.gz",
250 strip_prefix = "iron-scroll-target-behavior-1.0.3",
251)
252
253new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800254 name = "iron_selector",
255 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800256 url = "https://github.com/polymerelements/iron-selector/archive/v1.5.2.tar.gz",
257 strip_prefix = "iron-selector-1.5.2",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800258)
259
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800260new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800261 name = "iron_validatable_behavior",
262 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800263 url = "https://github.com/polymerelements/iron-validatable-behavior/archive/v1.1.1.tar.gz",
264 strip_prefix = "iron-validatable-behavior-1.1.1",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800265)
266
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800267new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800268 name = "lodash",
269 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800270 url = "https://github.com/lodash/lodash/archive/3.8.0.tar.gz",
271 strip_prefix = "lodash-3.8.0",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800272)
273
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800274new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800275 name = "neon_animation",
276 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800277 url = "https://github.com/polymerelements/neon-animation/archive/v1.2.2.tar.gz",
278 strip_prefix = "neon-animation-1.2.2",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800279)
280
Dan Smilkov33c9c022016-09-06 17:58:53 -0800281http_file(
Dan Smilkov3037d182016-10-10 05:08:49 -0800282 name = "numericjs_numeric_min_js",
Dan Smilkova9d25b02016-09-26 13:09:48 -0800283 url = "https://cdnjs.cloudflare.com/ajax/libs/numeric/1.2.6/numeric.min.js",
Dan Smilkov38a4afc2016-08-31 11:56:58 -0800284)
285
286new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800287 name = "paper_behaviors",
288 build_file = "bower.BUILD",
Dan Smilkov3037d182016-10-10 05:08:49 -0800289 url = "https://github.com/polymerelements/paper-behaviors/archive/v1.0.12.tar.gz",
290 strip_prefix = "paper-behaviors-1.0.12",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800291)
292
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800293new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800294 name = "paper_button",
295 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800296 url = "https://github.com/polymerelements/paper-button/archive/v1.0.11.tar.gz",
297 strip_prefix = "paper-button-1.0.11",
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -0800298)
299
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800300new_http_archive(
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -0800301 name = "paper_checkbox",
302 build_file = "bower.BUILD",
Dan Smilkovbc516c82016-11-11 14:30:57 -0800303 url = "https://github.com/polymerelements/paper-checkbox/archive/v1.4.0.tar.gz",
304 strip_prefix = "paper-checkbox-1.4.0",
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -0800305)
306
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800307new_http_archive(
Dan Manéce6a9952016-04-15 13:01:57 -0800308 name = "paper_dialog",
309 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800310 url = "https://github.com/polymerelements/paper-dialog/archive/v1.0.4.tar.gz",
311 strip_prefix = "paper-dialog-1.0.4",
Dan Manéce6a9952016-04-15 13:01:57 -0800312)
313
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800314new_http_archive(
Dan Manéce6a9952016-04-15 13:01:57 -0800315 name = "paper_dialog_behavior",
316 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800317 url = "https://github.com/polymerelements/paper-dialog-behavior/archive/v1.2.5.tar.gz",
318 strip_prefix = "paper-dialog-behavior-1.2.5",
Dan Manéce6a9952016-04-15 13:01:57 -0800319)
320
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800321new_http_archive(
Dan Smilkovbc516c82016-11-11 14:30:57 -0800322 name = "paper_dialog_scrollable",
323 build_file = "bower.BUILD",
324 url = "https://github.com/polymerelements/paper-dialog-scrollable/archive/1.1.5.tar.gz",
325 strip_prefix = "paper-dialog-scrollable-1.1.5",
326)
327
328new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800329 name = "paper_dropdown_menu",
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -0800330 build_file = "bower.BUILD",
Dan Smilkov3037d182016-10-10 05:08:49 -0800331 url = "https://github.com/polymerelements/paper-dropdown-menu/archive/v1.4.0.tar.gz",
332 strip_prefix = "paper-dropdown-menu-1.4.0",
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -0800333)
334
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800335new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800336 name = "paper_header_panel",
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -0800337 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800338 url = "https://github.com/polymerelements/paper-header-panel/archive/v1.1.4.tar.gz",
339 strip_prefix = "paper-header-panel-1.1.4",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800340)
341
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800342new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800343 name = "paper_icon_button",
344 build_file = "bower.BUILD",
Dan Smilkovc3bed282016-11-01 14:15:58 -0800345 url = "https://github.com/polymerelements/paper-icon-button/archive/v1.1.3.tar.gz",
346 strip_prefix = "paper-icon-button-1.1.3",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800347)
348
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800349new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800350 name = "paper_input",
351 build_file = "bower.BUILD",
Dan Smilkov33c9c022016-09-06 17:58:53 -0800352 url = "https://github.com/polymerelements/paper-input/archive/v1.1.18.tar.gz",
353 strip_prefix = "paper-input-1.1.18",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800354)
355
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800356new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800357 name = "paper_item",
358 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800359 url = "https://github.com/polymerelements/paper-item/archive/v1.1.4.tar.gz",
360 strip_prefix = "paper-item-1.1.4",
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -0800361)
362
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800363new_http_archive(
Dan Smilkov38a4afc2016-08-31 11:56:58 -0800364 name = "paper_listbox",
365 build_file = "bower.BUILD",
366 url = "https://github.com/polymerelements/paper-listbox/archive/v1.1.2.tar.gz",
367 strip_prefix = "paper-listbox-1.1.2",
368)
369
370new_http_archive(
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -0800371 name = "paper_material",
372 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800373 url = "https://github.com/polymerelements/paper-material/archive/v1.0.6.tar.gz",
374 strip_prefix = "paper-material-1.0.6",
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -0800375)
376
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800377new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800378 name = "paper_menu",
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -0800379 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800380 url = "https://github.com/polymerelements/paper-menu/archive/v1.2.2.tar.gz",
381 strip_prefix = "paper-menu-1.2.2",
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -0800382)
383
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800384new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800385 name = "paper_menu_button",
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -0800386 build_file = "bower.BUILD",
Dan Smilkov3037d182016-10-10 05:08:49 -0800387 url = "https://github.com/polymerelements/paper-menu-button/archive/v1.5.1.tar.gz",
388 strip_prefix = "paper-menu-button-1.5.1",
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -0800389)
390
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800391new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800392 name = "paper_progress",
393 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800394 url = "https://github.com/polymerelements/paper-progress/archive/v1.0.9.tar.gz",
395 strip_prefix = "paper-progress-1.0.9",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800396)
397
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800398new_http_archive(
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -0800399 name = "paper_radio_button",
400 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800401 url = "https://github.com/polymerelements/paper-radio-button/archive/v1.1.2.tar.gz",
402 strip_prefix = "paper-radio-button-1.1.2",
Dan Smilkov0907b352016-02-16 11:30:12 -0800403)
404
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800405new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800406 name = "paper_radio_group",
Dan Smilkov0907b352016-02-16 11:30:12 -0800407 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800408 url = "https://github.com/polymerelements/paper-radio-group/archive/v1.0.9.tar.gz",
409 strip_prefix = "paper-radio-group-1.0.9",
Dan Smilkov0907b352016-02-16 11:30:12 -0800410)
411
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800412new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800413 name = "paper_ripple",
Dan Smilkov0907b352016-02-16 11:30:12 -0800414 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800415 url = "https://github.com/polymerelements/paper-ripple/archive/v1.0.5.tar.gz",
416 strip_prefix = "paper-ripple-1.0.5",
Dan Smilkov0907b352016-02-16 11:30:12 -0800417)
418
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800419new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800420 name = "paper_slider",
Dan Smilkov0907b352016-02-16 11:30:12 -0800421 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800422 url = "https://github.com/polymerelements/paper-slider/archive/v1.0.10.tar.gz",
423 strip_prefix = "paper-slider-1.0.10",
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -0800424)
425
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800426new_http_archive(
Dan Smilkov5329ac72016-11-17 13:45:27 -0800427 name = "paper_spinner",
428 build_file = "bower.BUILD",
429 url = "https://github.com/polymerelements/paper-spinner/archive/v1.1.1.tar.gz",
430 strip_prefix = "paper-spinner-1.1.1",
431)
432
433new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800434 name = "paper_styles",
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -0800435 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800436 url = "https://github.com/polymerelements/paper-styles/archive/v1.1.4.tar.gz",
437 strip_prefix = "paper-styles-1.1.4",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800438)
439
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800440new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800441 name = "paper_tabs",
442 build_file = "bower.BUILD",
Dan Smilkovf0e9bd32016-11-09 12:53:00 -0800443 url = "https://github.com/polymerelements/paper-tabs/archive/v1.7.0.tar.gz",
444 strip_prefix = "paper-tabs-1.7.0",
445)
446
447new_http_archive(
448 name = "paper_toast",
449 build_file = "bower.BUILD",
450 url = "https://github.com/polymerelements/paper-toast/archive/v1.3.0.tar.gz",
451 strip_prefix = "paper-toast-1.3.0",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800452)
453
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800454new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800455 name = "paper_toggle_button",
456 build_file = "bower.BUILD",
Dan Smilkov3037d182016-10-10 05:08:49 -0800457 url = "https://github.com/polymerelements/paper-toggle-button/archive/v1.2.0.tar.gz",
458 strip_prefix = "paper-toggle-button-1.2.0",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800459)
460
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800461new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800462 name = "paper_toolbar",
463 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800464 url = "https://github.com/polymerelements/paper-toolbar/archive/v1.1.4.tar.gz",
465 strip_prefix = "paper-toolbar-1.1.4",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800466)
467
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800468new_http_archive(
Dan Smilkovf76c72a2016-06-28 09:29:32 -0800469 name = "paper_tooltip",
470 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800471 url = "https://github.com/polymerelements/paper-tooltip/archive/v1.1.2.tar.gz",
472 strip_prefix = "paper-tooltip-1.1.2",
Dan Smilkovf76c72a2016-06-28 09:29:32 -0800473)
474
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800475new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800476 name = "plottable",
477 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800478 url = "https://github.com/palantir/plottable/archive/v1.16.1.tar.gz",
479 strip_prefix = "plottable-1.16.1",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800480)
481
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800482new_http_archive(
Justine Tunney02f276c2017-02-03 17:13:49 -0800483 name = "polymer_archive",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800484 build_file = "bower.BUILD",
Dan Smilkov3037d182016-10-10 05:08:49 -0800485 url = "https://github.com/polymer/polymer/archive/v1.7.0.tar.gz",
486 strip_prefix = "polymer-1.7.0",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800487)
488
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800489new_http_archive(
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -0800490 name = "promise_polyfill",
491 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800492 url = "https://github.com/polymerlabs/promise-polyfill/archive/v1.0.0.tar.gz",
493 strip_prefix = "promise-polyfill-1.0.0",
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -0800494)
495
Dan Smilkov33c9c022016-09-06 17:58:53 -0800496http_file(
497 name = "three_js_three_min_js",
498 url = "https://raw.githubusercontent.com/mrdoob/three.js/r77/build/three.min.js",
499)
500
501http_file(
502 name = "three_js_orbitcontrols_js",
503 url = "https://raw.githubusercontent.com/mrdoob/three.js/r77/examples/js/controls/OrbitControls.js",
Dan Smilkov38a4afc2016-08-31 11:56:58 -0800504)
505
506new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800507 name = "web_animations_js",
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -0800508 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800509 url = "https://github.com/web-animations/web-animations-js/archive/2.2.1.tar.gz",
510 strip_prefix = "web-animations-js-2.2.1",
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -0800511)
512
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800513new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800514 name = "webcomponentsjs",
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -0800515 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800516 url = "https://github.com/webcomponents/webcomponentsjs/archive/v0.7.22.tar.gz",
517 strip_prefix = "webcomponentsjs-0.7.22",
Manjunath Kudlurf41959c2015-11-06 16:27:58 -0800518)
Dan Smilkov38a4afc2016-08-31 11:56:58 -0800519
Dan Smilkov33c9c022016-09-06 17:58:53 -0800520http_file(
521 name = "weblas_weblas_js",
522 url = "https://raw.githubusercontent.com/waylonflinn/weblas/v0.9.0/dist/weblas.js",
Dan Smilkov38a4afc2016-08-31 11:56:58 -0800523)