blob: 6ec1a7df3ec5a5eb3d06c19f63cf834717344355 [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
Martin Wickebc456e32017-03-23 12:31:16 -080017load("//tensorflow:workspace.bzl", "tf_workspace")
Shanqing Caiefd40e52017-01-08 20:31:30 -080018
Manjunath Kudlurf41959c2015-11-06 16:27:58 -080019# Uncomment and update the paths in these entries to build the Android demo.
20#android_sdk_repository(
21# name = "androidsdk",
22# api_level = 23,
A. Unique TensorFlowereb727962017-02-28 15:27:20 -080023# build_tools_version = "25.0.1",
Manjunath Kudlurf41959c2015-11-06 16:27:58 -080024# # Replace with path to Android SDK on your system
25# path = "<PATH_TO_SDK>",
26#)
27#
Andrew Harp21aafcd2017-03-23 11:11:54 -080028# Android NDK r12b is recommended (higher may cause issues with Bazel)
Manjunath Kudlurf41959c2015-11-06 16:27:58 -080029#android_ndk_repository(
30# name="androidndk",
31# path="<PATH_TO_NDK>",
Andrew Harp21aafcd2017-03-23 11:11:54 -080032# api_level=14) # This needs to be 14 or higher to compile TensorFlow.
Manjunath Kudlurf41959c2015-11-06 16:27:58 -080033
Kiril Gorovoy5b5976a2016-03-10 14:06:08 -080034# Please add all new TensorFlow dependencies in workspace.bzl.
Kiril Gorovoy77da1682016-02-24 18:02:16 -080035tf_workspace()
Manjunath Kudlurf41959c2015-11-06 16:27:58 -080036
Dan Smilkovf0e9bd32016-11-09 12:53:00 -080037new_http_archive(
38 name = "inception5h",
39 build_file = "models.BUILD",
40 url = "https://storage.googleapis.com/download.tensorflow.org/models/inception5h.zip",
41 sha256 = "d13569f6a98159de37e92e9c8ec4dae8f674fbf475f69fe6199b514f756d4364"
42)
43
Andrew Harpa30b9922016-11-28 15:41:52 -080044new_http_archive(
45 name = "mobile_multibox",
46 build_file = "models.BUILD",
Andrew Harpff151c92017-01-18 13:11:45 -080047 url = "https://storage.googleapis.com/download.tensorflow.org/models/mobile_multibox_v1a.zip",
48 sha256 = "859edcddf84dddb974c36c36cfc1f74555148e9c9213dedacf1d6b613ad52b96"
Andrew Harpa30b9922016-11-28 15:41:52 -080049)
50
Andrew Harp6426c4e2017-01-11 14:05:52 -080051new_http_archive(
52 name = "stylize",
53 build_file = "models.BUILD",
54 url = "https://storage.googleapis.com/download.tensorflow.org/models/stylize_v1.zip",
55 sha256 = "3d374a730aef330424a356a8d4f04d8a54277c425e274ecb7d9c83aa912c6bfa"
56)
57
A. Unique TensorFlower231c8532016-01-06 12:52:05 -080058# TENSORBOARD_BOWER_AUTOGENERATED_BELOW_THIS_LINE_DO_NOT_EDIT
59
Dan Smilkov80acdaf2016-08-31 09:24:10 -080060new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -080061 name = "d3",
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -080062 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -080063 url = "https://github.com/mbostock-bower/d3-bower/archive/v3.5.15.tar.gz",
64 strip_prefix = "d3-bower-3.5.15",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -080065)
66
Dan Smilkov80acdaf2016-08-31 09:24:10 -080067new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -080068 name = "dagre",
69 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -080070 url = "https://github.com/cpettitt/dagre/archive/v0.7.4.tar.gz",
71 strip_prefix = "dagre-0.7.4",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -080072)
73
Dan Smilkov80acdaf2016-08-31 09:24:10 -080074new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -080075 name = "es6_promise",
76 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -080077 url = "https://github.com/components/es6-promise/archive/v2.1.0.tar.gz",
78 strip_prefix = "es6-promise-2.1.0",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -080079)
80
Dan Smilkov80acdaf2016-08-31 09:24:10 -080081new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -080082 name = "font_roboto",
83 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -080084 url = "https://github.com/polymerelements/font-roboto/archive/v1.0.1.tar.gz",
85 strip_prefix = "font-roboto-1.0.1",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -080086)
87
Dan Smilkov80acdaf2016-08-31 09:24:10 -080088new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -080089 name = "graphlib",
90 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -080091 url = "https://github.com/cpettitt/graphlib/archive/v1.0.7.tar.gz",
92 strip_prefix = "graphlib-1.0.7",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -080093)
94
Dan Smilkov80acdaf2016-08-31 09:24:10 -080095new_http_archive(
Dan Mané3b2309b2016-04-01 17:55:43 -080096 name = "iron_a11y_announcer",
97 build_file = "bower.BUILD",
Dan Smilkovf0e9bd32016-11-09 12:53:00 -080098 url = "https://github.com/polymerelements/iron-a11y-announcer/archive/v1.0.5.tar.gz",
99 strip_prefix = "iron-a11y-announcer-1.0.5",
Dan Mané3b2309b2016-04-01 17:55:43 -0800100)
101
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800102new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800103 name = "iron_a11y_keys_behavior",
104 build_file = "bower.BUILD",
Dan Smilkov3037d182016-10-10 05:08:49 -0800105 url = "https://github.com/polymerelements/iron-a11y-keys-behavior/archive/v1.1.8.tar.gz",
106 strip_prefix = "iron-a11y-keys-behavior-1.1.8",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800107)
108
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800109new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800110 name = "iron_ajax",
111 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800112 url = "https://github.com/polymerelements/iron-ajax/archive/v1.2.0.tar.gz",
113 strip_prefix = "iron-ajax-1.2.0",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800114)
115
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800116new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800117 name = "iron_autogrow_textarea",
118 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800119 url = "https://github.com/polymerelements/iron-autogrow-textarea/archive/v1.0.12.tar.gz",
120 strip_prefix = "iron-autogrow-textarea-1.0.12",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800121)
122
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800123new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800124 name = "iron_behaviors",
125 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800126 url = "https://github.com/polymerelements/iron-behaviors/archive/v1.0.17.tar.gz",
127 strip_prefix = "iron-behaviors-1.0.17",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800128)
129
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800130new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800131 name = "iron_checked_element_behavior",
132 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800133 url = "https://github.com/polymerelements/iron-checked-element-behavior/archive/v1.0.4.tar.gz",
134 strip_prefix = "iron-checked-element-behavior-1.0.4",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800135)
136
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800137new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800138 name = "iron_collapse",
139 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800140 url = "https://github.com/polymerelements/iron-collapse/archive/v1.0.8.tar.gz",
141 strip_prefix = "iron-collapse-1.0.8",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800142)
143
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800144new_http_archive(
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -0800145 name = "iron_dropdown",
146 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800147 url = "https://github.com/polymerelements/iron-dropdown/archive/v1.4.0.tar.gz",
148 strip_prefix = "iron-dropdown-1.4.0",
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -0800149)
150
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800151new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800152 name = "iron_fit_behavior",
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -0800153 build_file = "bower.BUILD",
Dan Smilkov38a4afc2016-08-31 11:56:58 -0800154 url = "https://github.com/polymerelements/iron-fit-behavior/archive/v1.2.5.tar.gz",
155 strip_prefix = "iron-fit-behavior-1.2.5",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800156)
157
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800158new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800159 name = "iron_flex_layout",
160 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800161 url = "https://github.com/polymerelements/iron-flex-layout/archive/v1.3.0.tar.gz",
162 strip_prefix = "iron-flex-layout-1.3.0",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800163)
164
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800165new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800166 name = "iron_form_element_behavior",
167 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800168 url = "https://github.com/polymerelements/iron-form-element-behavior/archive/v1.0.6.tar.gz",
169 strip_prefix = "iron-form-element-behavior-1.0.6",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800170)
171
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800172new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800173 name = "iron_icon",
174 build_file = "bower.BUILD",
Dan Smilkov3037d182016-10-10 05:08:49 -0800175 url = "https://github.com/polymerelements/iron-icon/archive/v1.0.11.tar.gz",
176 strip_prefix = "iron-icon-1.0.11",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800177)
178
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800179new_http_archive(
Dan Manéec1077a2016-08-26 11:37:27 -0800180 name = "iron_icons",
181 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800182 url = "https://github.com/polymerelements/iron-icons/archive/v1.1.3.tar.gz",
183 strip_prefix = "iron-icons-1.1.3",
Dan Manéec1077a2016-08-26 11:37:27 -0800184)
185
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800186new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800187 name = "iron_iconset_svg",
188 build_file = "bower.BUILD",
Dan Smilkovc3bed282016-11-01 14:15:58 -0800189 url = "https://github.com/polymerelements/iron-iconset-svg/archive/v1.1.0.tar.gz",
190 strip_prefix = "iron-iconset-svg-1.1.0",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800191)
192
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800193new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800194 name = "iron_input",
195 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800196 url = "https://github.com/polymerelements/iron-input/archive/1.0.10.tar.gz",
197 strip_prefix = "iron-input-1.0.10",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800198)
199
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800200new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800201 name = "iron_list",
202 build_file = "bower.BUILD",
Dan Smilkov3037d182016-10-10 05:08:49 -0800203 url = "https://github.com/polymerelements/iron-list/archive/v1.3.9.tar.gz",
204 strip_prefix = "iron-list-1.3.9",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800205)
206
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800207new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800208 name = "iron_menu_behavior",
209 build_file = "bower.BUILD",
Dan Smilkov3037d182016-10-10 05:08:49 -0800210 url = "https://github.com/polymerelements/iron-menu-behavior/archive/v1.1.10.tar.gz",
211 strip_prefix = "iron-menu-behavior-1.1.10",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800212)
213
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800214new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800215 name = "iron_meta",
216 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800217 url = "https://github.com/polymerelements/iron-meta/archive/v1.1.1.tar.gz",
218 strip_prefix = "iron-meta-1.1.1",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800219)
220
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800221new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800222 name = "iron_overlay_behavior",
223 build_file = "bower.BUILD",
Dan Smilkovc3bed282016-11-01 14:15:58 -0800224 url = "https://github.com/polymerelements/iron-overlay-behavior/archive/v1.10.1.tar.gz",
225 strip_prefix = "iron-overlay-behavior-1.10.1",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800226)
227
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800228new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800229 name = "iron_range_behavior",
230 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800231 url = "https://github.com/polymerelements/iron-range-behavior/archive/v1.0.4.tar.gz",
232 strip_prefix = "iron-range-behavior-1.0.4",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800233)
234
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800235new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800236 name = "iron_resizable_behavior",
237 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800238 url = "https://github.com/polymerelements/iron-resizable-behavior/archive/v1.0.3.tar.gz",
239 strip_prefix = "iron-resizable-behavior-1.0.3",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800240)
241
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800242new_http_archive(
Dan Smilkovc3bed282016-11-01 14:15:58 -0800243 name = "iron_scroll_target_behavior",
244 build_file = "bower.BUILD",
245 url = "https://github.com/polymerelements/iron-scroll-target-behavior/archive/v1.0.3.tar.gz",
246 strip_prefix = "iron-scroll-target-behavior-1.0.3",
247)
248
249new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800250 name = "iron_selector",
251 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800252 url = "https://github.com/polymerelements/iron-selector/archive/v1.5.2.tar.gz",
253 strip_prefix = "iron-selector-1.5.2",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800254)
255
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800256new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800257 name = "iron_validatable_behavior",
258 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800259 url = "https://github.com/polymerelements/iron-validatable-behavior/archive/v1.1.1.tar.gz",
260 strip_prefix = "iron-validatable-behavior-1.1.1",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800261)
262
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800263new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800264 name = "lodash",
265 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800266 url = "https://github.com/lodash/lodash/archive/3.8.0.tar.gz",
267 strip_prefix = "lodash-3.8.0",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800268)
269
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800270new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800271 name = "neon_animation",
272 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800273 url = "https://github.com/polymerelements/neon-animation/archive/v1.2.2.tar.gz",
274 strip_prefix = "neon-animation-1.2.2",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800275)
276
Dan Smilkov33c9c022016-09-06 17:58:53 -0800277http_file(
Dan Smilkov3037d182016-10-10 05:08:49 -0800278 name = "numericjs_numeric_min_js",
Dan Smilkova9d25b02016-09-26 13:09:48 -0800279 url = "https://cdnjs.cloudflare.com/ajax/libs/numeric/1.2.6/numeric.min.js",
Dan Smilkov38a4afc2016-08-31 11:56:58 -0800280)
281
282new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800283 name = "paper_behaviors",
284 build_file = "bower.BUILD",
Dan Smilkov3037d182016-10-10 05:08:49 -0800285 url = "https://github.com/polymerelements/paper-behaviors/archive/v1.0.12.tar.gz",
286 strip_prefix = "paper-behaviors-1.0.12",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800287)
288
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800289new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800290 name = "paper_button",
291 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800292 url = "https://github.com/polymerelements/paper-button/archive/v1.0.11.tar.gz",
293 strip_prefix = "paper-button-1.0.11",
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -0800294)
295
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800296new_http_archive(
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -0800297 name = "paper_checkbox",
298 build_file = "bower.BUILD",
Dan Smilkovbc516c82016-11-11 14:30:57 -0800299 url = "https://github.com/polymerelements/paper-checkbox/archive/v1.4.0.tar.gz",
300 strip_prefix = "paper-checkbox-1.4.0",
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -0800301)
302
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800303new_http_archive(
Dan Manéce6a9952016-04-15 13:01:57 -0800304 name = "paper_dialog",
305 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800306 url = "https://github.com/polymerelements/paper-dialog/archive/v1.0.4.tar.gz",
307 strip_prefix = "paper-dialog-1.0.4",
Dan Manéce6a9952016-04-15 13:01:57 -0800308)
309
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800310new_http_archive(
Dan Manéce6a9952016-04-15 13:01:57 -0800311 name = "paper_dialog_behavior",
312 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800313 url = "https://github.com/polymerelements/paper-dialog-behavior/archive/v1.2.5.tar.gz",
314 strip_prefix = "paper-dialog-behavior-1.2.5",
Dan Manéce6a9952016-04-15 13:01:57 -0800315)
316
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800317new_http_archive(
Dan Smilkovbc516c82016-11-11 14:30:57 -0800318 name = "paper_dialog_scrollable",
319 build_file = "bower.BUILD",
320 url = "https://github.com/polymerelements/paper-dialog-scrollable/archive/1.1.5.tar.gz",
321 strip_prefix = "paper-dialog-scrollable-1.1.5",
322)
323
324new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800325 name = "paper_dropdown_menu",
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -0800326 build_file = "bower.BUILD",
Dan Smilkov3037d182016-10-10 05:08:49 -0800327 url = "https://github.com/polymerelements/paper-dropdown-menu/archive/v1.4.0.tar.gz",
328 strip_prefix = "paper-dropdown-menu-1.4.0",
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -0800329)
330
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800331new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800332 name = "paper_header_panel",
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -0800333 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800334 url = "https://github.com/polymerelements/paper-header-panel/archive/v1.1.4.tar.gz",
335 strip_prefix = "paper-header-panel-1.1.4",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800336)
337
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800338new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800339 name = "paper_icon_button",
340 build_file = "bower.BUILD",
Dan Smilkovc3bed282016-11-01 14:15:58 -0800341 url = "https://github.com/polymerelements/paper-icon-button/archive/v1.1.3.tar.gz",
342 strip_prefix = "paper-icon-button-1.1.3",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800343)
344
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800345new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800346 name = "paper_input",
347 build_file = "bower.BUILD",
Dan Smilkov33c9c022016-09-06 17:58:53 -0800348 url = "https://github.com/polymerelements/paper-input/archive/v1.1.18.tar.gz",
349 strip_prefix = "paper-input-1.1.18",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800350)
351
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800352new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800353 name = "paper_item",
354 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800355 url = "https://github.com/polymerelements/paper-item/archive/v1.1.4.tar.gz",
356 strip_prefix = "paper-item-1.1.4",
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -0800357)
358
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800359new_http_archive(
Dan Smilkov38a4afc2016-08-31 11:56:58 -0800360 name = "paper_listbox",
361 build_file = "bower.BUILD",
362 url = "https://github.com/polymerelements/paper-listbox/archive/v1.1.2.tar.gz",
363 strip_prefix = "paper-listbox-1.1.2",
364)
365
366new_http_archive(
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -0800367 name = "paper_material",
368 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800369 url = "https://github.com/polymerelements/paper-material/archive/v1.0.6.tar.gz",
370 strip_prefix = "paper-material-1.0.6",
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -0800371)
372
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800373new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800374 name = "paper_menu",
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -0800375 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800376 url = "https://github.com/polymerelements/paper-menu/archive/v1.2.2.tar.gz",
377 strip_prefix = "paper-menu-1.2.2",
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -0800378)
379
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800380new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800381 name = "paper_menu_button",
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -0800382 build_file = "bower.BUILD",
Dan Smilkov3037d182016-10-10 05:08:49 -0800383 url = "https://github.com/polymerelements/paper-menu-button/archive/v1.5.1.tar.gz",
384 strip_prefix = "paper-menu-button-1.5.1",
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -0800385)
386
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800387new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800388 name = "paper_progress",
389 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800390 url = "https://github.com/polymerelements/paper-progress/archive/v1.0.9.tar.gz",
391 strip_prefix = "paper-progress-1.0.9",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800392)
393
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800394new_http_archive(
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -0800395 name = "paper_radio_button",
396 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800397 url = "https://github.com/polymerelements/paper-radio-button/archive/v1.1.2.tar.gz",
398 strip_prefix = "paper-radio-button-1.1.2",
Dan Smilkov0907b352016-02-16 11:30:12 -0800399)
400
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800401new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800402 name = "paper_radio_group",
Dan Smilkov0907b352016-02-16 11:30:12 -0800403 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800404 url = "https://github.com/polymerelements/paper-radio-group/archive/v1.0.9.tar.gz",
405 strip_prefix = "paper-radio-group-1.0.9",
Dan Smilkov0907b352016-02-16 11:30:12 -0800406)
407
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800408new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800409 name = "paper_ripple",
Dan Smilkov0907b352016-02-16 11:30:12 -0800410 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800411 url = "https://github.com/polymerelements/paper-ripple/archive/v1.0.5.tar.gz",
412 strip_prefix = "paper-ripple-1.0.5",
Dan Smilkov0907b352016-02-16 11:30:12 -0800413)
414
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800415new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800416 name = "paper_slider",
Dan Smilkov0907b352016-02-16 11:30:12 -0800417 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800418 url = "https://github.com/polymerelements/paper-slider/archive/v1.0.10.tar.gz",
419 strip_prefix = "paper-slider-1.0.10",
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -0800420)
421
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800422new_http_archive(
Dan Smilkov5329ac72016-11-17 13:45:27 -0800423 name = "paper_spinner",
424 build_file = "bower.BUILD",
425 url = "https://github.com/polymerelements/paper-spinner/archive/v1.1.1.tar.gz",
426 strip_prefix = "paper-spinner-1.1.1",
427)
428
429new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800430 name = "paper_styles",
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -0800431 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800432 url = "https://github.com/polymerelements/paper-styles/archive/v1.1.4.tar.gz",
433 strip_prefix = "paper-styles-1.1.4",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800434)
435
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800436new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800437 name = "paper_tabs",
438 build_file = "bower.BUILD",
Dan Smilkovf0e9bd32016-11-09 12:53:00 -0800439 url = "https://github.com/polymerelements/paper-tabs/archive/v1.7.0.tar.gz",
440 strip_prefix = "paper-tabs-1.7.0",
441)
442
443new_http_archive(
444 name = "paper_toast",
445 build_file = "bower.BUILD",
446 url = "https://github.com/polymerelements/paper-toast/archive/v1.3.0.tar.gz",
447 strip_prefix = "paper-toast-1.3.0",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800448)
449
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800450new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800451 name = "paper_toggle_button",
452 build_file = "bower.BUILD",
Dan Smilkov3037d182016-10-10 05:08:49 -0800453 url = "https://github.com/polymerelements/paper-toggle-button/archive/v1.2.0.tar.gz",
454 strip_prefix = "paper-toggle-button-1.2.0",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800455)
456
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800457new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800458 name = "paper_toolbar",
459 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800460 url = "https://github.com/polymerelements/paper-toolbar/archive/v1.1.4.tar.gz",
461 strip_prefix = "paper-toolbar-1.1.4",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800462)
463
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800464new_http_archive(
Dan Smilkovf76c72a2016-06-28 09:29:32 -0800465 name = "paper_tooltip",
466 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800467 url = "https://github.com/polymerelements/paper-tooltip/archive/v1.1.2.tar.gz",
468 strip_prefix = "paper-tooltip-1.1.2",
Dan Smilkovf76c72a2016-06-28 09:29:32 -0800469)
470
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800471new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800472 name = "plottable",
473 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800474 url = "https://github.com/palantir/plottable/archive/v1.16.1.tar.gz",
475 strip_prefix = "plottable-1.16.1",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800476)
477
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800478new_http_archive(
Vijay Vasudevan93a975e2017-02-17 17:05:49 -0800479 name = "polymer",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800480 build_file = "bower.BUILD",
Dan Smilkov3037d182016-10-10 05:08:49 -0800481 url = "https://github.com/polymer/polymer/archive/v1.7.0.tar.gz",
482 strip_prefix = "polymer-1.7.0",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800483)
484
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800485new_http_archive(
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -0800486 name = "promise_polyfill",
487 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800488 url = "https://github.com/polymerlabs/promise-polyfill/archive/v1.0.0.tar.gz",
489 strip_prefix = "promise-polyfill-1.0.0",
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -0800490)
491
Dan Smilkov33c9c022016-09-06 17:58:53 -0800492http_file(
493 name = "three_js_three_min_js",
494 url = "https://raw.githubusercontent.com/mrdoob/three.js/r77/build/three.min.js",
495)
496
497http_file(
498 name = "three_js_orbitcontrols_js",
499 url = "https://raw.githubusercontent.com/mrdoob/three.js/r77/examples/js/controls/OrbitControls.js",
Dan Smilkov38a4afc2016-08-31 11:56:58 -0800500)
501
502new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800503 name = "web_animations_js",
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -0800504 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800505 url = "https://github.com/web-animations/web-animations-js/archive/2.2.1.tar.gz",
506 strip_prefix = "web-animations-js-2.2.1",
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -0800507)
508
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800509new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800510 name = "webcomponentsjs",
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -0800511 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800512 url = "https://github.com/webcomponents/webcomponentsjs/archive/v0.7.22.tar.gz",
513 strip_prefix = "webcomponentsjs-0.7.22",
Manjunath Kudlurf41959c2015-11-06 16:27:58 -0800514)
Dan Smilkov38a4afc2016-08-31 11:56:58 -0800515
Dan Smilkov33c9c022016-09-06 17:58:53 -0800516http_file(
517 name = "weblas_weblas_js",
518 url = "https://raw.githubusercontent.com/waylonflinn/weblas/v0.9.0/dist/weblas.js",
Dan Smilkov38a4afc2016-08-31 11:56:58 -0800519)