blob: 72fa0d8949423674276109a58159f5dd6c5ba32e [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,
A. Unique TensorFlowereb727962017-02-28 15:27:20 -080028# build_tools_version = "25.0.1",
Manjunath Kudlurf41959c2015-11-06 16:27:58 -080029# # Replace with path to Android SDK on your system
30# path = "<PATH_TO_SDK>",
31#)
32#
Andrew Harp21aafcd2017-03-23 11:11:54 -080033# Android NDK r12b is recommended (higher may cause issues with Bazel)
Manjunath Kudlurf41959c2015-11-06 16:27:58 -080034#android_ndk_repository(
35# name="androidndk",
36# path="<PATH_TO_NDK>",
Andrew Harp21aafcd2017-03-23 11:11:54 -080037# api_level=14) # This needs to be 14 or higher to compile TensorFlow.
Manjunath Kudlurf41959c2015-11-06 16:27:58 -080038
Kiril Gorovoy5b5976a2016-03-10 14:06:08 -080039# Please add all new TensorFlow dependencies in workspace.bzl.
Kiril Gorovoy77da1682016-02-24 18:02:16 -080040tf_workspace()
Manjunath Kudlurf41959c2015-11-06 16:27:58 -080041
Dan Smilkovf0e9bd32016-11-09 12:53:00 -080042new_http_archive(
43 name = "inception5h",
44 build_file = "models.BUILD",
45 url = "https://storage.googleapis.com/download.tensorflow.org/models/inception5h.zip",
46 sha256 = "d13569f6a98159de37e92e9c8ec4dae8f674fbf475f69fe6199b514f756d4364"
47)
48
Andrew Harpa30b9922016-11-28 15:41:52 -080049new_http_archive(
50 name = "mobile_multibox",
51 build_file = "models.BUILD",
Andrew Harpff151c92017-01-18 13:11:45 -080052 url = "https://storage.googleapis.com/download.tensorflow.org/models/mobile_multibox_v1a.zip",
53 sha256 = "859edcddf84dddb974c36c36cfc1f74555148e9c9213dedacf1d6b613ad52b96"
Andrew Harpa30b9922016-11-28 15:41:52 -080054)
55
Andrew Harp6426c4e2017-01-11 14:05:52 -080056new_http_archive(
57 name = "stylize",
58 build_file = "models.BUILD",
59 url = "https://storage.googleapis.com/download.tensorflow.org/models/stylize_v1.zip",
60 sha256 = "3d374a730aef330424a356a8d4f04d8a54277c425e274ecb7d9c83aa912c6bfa"
61)
62
A. Unique TensorFlower231c8532016-01-06 12:52:05 -080063# TENSORBOARD_BOWER_AUTOGENERATED_BELOW_THIS_LINE_DO_NOT_EDIT
64
Dan Smilkov80acdaf2016-08-31 09:24:10 -080065new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -080066 name = "d3",
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -080067 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -080068 url = "https://github.com/mbostock-bower/d3-bower/archive/v3.5.15.tar.gz",
69 strip_prefix = "d3-bower-3.5.15",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -080070)
71
Dan Smilkov80acdaf2016-08-31 09:24:10 -080072new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -080073 name = "dagre",
74 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -080075 url = "https://github.com/cpettitt/dagre/archive/v0.7.4.tar.gz",
76 strip_prefix = "dagre-0.7.4",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -080077)
78
Dan Smilkov80acdaf2016-08-31 09:24:10 -080079new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -080080 name = "es6_promise",
81 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -080082 url = "https://github.com/components/es6-promise/archive/v2.1.0.tar.gz",
83 strip_prefix = "es6-promise-2.1.0",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -080084)
85
Dan Smilkov80acdaf2016-08-31 09:24:10 -080086new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -080087 name = "font_roboto",
88 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -080089 url = "https://github.com/polymerelements/font-roboto/archive/v1.0.1.tar.gz",
90 strip_prefix = "font-roboto-1.0.1",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -080091)
92
Dan Smilkov80acdaf2016-08-31 09:24:10 -080093new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -080094 name = "graphlib",
95 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -080096 url = "https://github.com/cpettitt/graphlib/archive/v1.0.7.tar.gz",
97 strip_prefix = "graphlib-1.0.7",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -080098)
99
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800100new_http_archive(
Dan Mané3b2309b2016-04-01 17:55:43 -0800101 name = "iron_a11y_announcer",
102 build_file = "bower.BUILD",
Dan Smilkovf0e9bd32016-11-09 12:53:00 -0800103 url = "https://github.com/polymerelements/iron-a11y-announcer/archive/v1.0.5.tar.gz",
104 strip_prefix = "iron-a11y-announcer-1.0.5",
Dan Mané3b2309b2016-04-01 17:55:43 -0800105)
106
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800107new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800108 name = "iron_a11y_keys_behavior",
109 build_file = "bower.BUILD",
Dan Smilkov3037d182016-10-10 05:08:49 -0800110 url = "https://github.com/polymerelements/iron-a11y-keys-behavior/archive/v1.1.8.tar.gz",
111 strip_prefix = "iron-a11y-keys-behavior-1.1.8",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800112)
113
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800114new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800115 name = "iron_ajax",
116 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800117 url = "https://github.com/polymerelements/iron-ajax/archive/v1.2.0.tar.gz",
118 strip_prefix = "iron-ajax-1.2.0",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800119)
120
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800121new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800122 name = "iron_autogrow_textarea",
123 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800124 url = "https://github.com/polymerelements/iron-autogrow-textarea/archive/v1.0.12.tar.gz",
125 strip_prefix = "iron-autogrow-textarea-1.0.12",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800126)
127
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800128new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800129 name = "iron_behaviors",
130 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800131 url = "https://github.com/polymerelements/iron-behaviors/archive/v1.0.17.tar.gz",
132 strip_prefix = "iron-behaviors-1.0.17",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800133)
134
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800135new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800136 name = "iron_checked_element_behavior",
137 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800138 url = "https://github.com/polymerelements/iron-checked-element-behavior/archive/v1.0.4.tar.gz",
139 strip_prefix = "iron-checked-element-behavior-1.0.4",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800140)
141
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800142new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800143 name = "iron_collapse",
144 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800145 url = "https://github.com/polymerelements/iron-collapse/archive/v1.0.8.tar.gz",
146 strip_prefix = "iron-collapse-1.0.8",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800147)
148
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800149new_http_archive(
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -0800150 name = "iron_dropdown",
151 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800152 url = "https://github.com/polymerelements/iron-dropdown/archive/v1.4.0.tar.gz",
153 strip_prefix = "iron-dropdown-1.4.0",
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -0800154)
155
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800156new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800157 name = "iron_fit_behavior",
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -0800158 build_file = "bower.BUILD",
Dan Smilkov38a4afc2016-08-31 11:56:58 -0800159 url = "https://github.com/polymerelements/iron-fit-behavior/archive/v1.2.5.tar.gz",
160 strip_prefix = "iron-fit-behavior-1.2.5",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800161)
162
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800163new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800164 name = "iron_flex_layout",
165 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800166 url = "https://github.com/polymerelements/iron-flex-layout/archive/v1.3.0.tar.gz",
167 strip_prefix = "iron-flex-layout-1.3.0",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800168)
169
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800170new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800171 name = "iron_form_element_behavior",
172 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800173 url = "https://github.com/polymerelements/iron-form-element-behavior/archive/v1.0.6.tar.gz",
174 strip_prefix = "iron-form-element-behavior-1.0.6",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800175)
176
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800177new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800178 name = "iron_icon",
179 build_file = "bower.BUILD",
Dan Smilkov3037d182016-10-10 05:08:49 -0800180 url = "https://github.com/polymerelements/iron-icon/archive/v1.0.11.tar.gz",
181 strip_prefix = "iron-icon-1.0.11",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800182)
183
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800184new_http_archive(
Dan Manéec1077a2016-08-26 11:37:27 -0800185 name = "iron_icons",
186 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800187 url = "https://github.com/polymerelements/iron-icons/archive/v1.1.3.tar.gz",
188 strip_prefix = "iron-icons-1.1.3",
Dan Manéec1077a2016-08-26 11:37:27 -0800189)
190
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800191new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800192 name = "iron_iconset_svg",
193 build_file = "bower.BUILD",
Dan Smilkovc3bed282016-11-01 14:15:58 -0800194 url = "https://github.com/polymerelements/iron-iconset-svg/archive/v1.1.0.tar.gz",
195 strip_prefix = "iron-iconset-svg-1.1.0",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800196)
197
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800198new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800199 name = "iron_input",
200 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800201 url = "https://github.com/polymerelements/iron-input/archive/1.0.10.tar.gz",
202 strip_prefix = "iron-input-1.0.10",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800203)
204
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800205new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800206 name = "iron_list",
207 build_file = "bower.BUILD",
Dan Smilkov3037d182016-10-10 05:08:49 -0800208 url = "https://github.com/polymerelements/iron-list/archive/v1.3.9.tar.gz",
209 strip_prefix = "iron-list-1.3.9",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800210)
211
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800212new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800213 name = "iron_menu_behavior",
214 build_file = "bower.BUILD",
Dan Smilkov3037d182016-10-10 05:08:49 -0800215 url = "https://github.com/polymerelements/iron-menu-behavior/archive/v1.1.10.tar.gz",
216 strip_prefix = "iron-menu-behavior-1.1.10",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800217)
218
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800219new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800220 name = "iron_meta",
221 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800222 url = "https://github.com/polymerelements/iron-meta/archive/v1.1.1.tar.gz",
223 strip_prefix = "iron-meta-1.1.1",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800224)
225
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800226new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800227 name = "iron_overlay_behavior",
228 build_file = "bower.BUILD",
Dan Smilkovc3bed282016-11-01 14:15:58 -0800229 url = "https://github.com/polymerelements/iron-overlay-behavior/archive/v1.10.1.tar.gz",
230 strip_prefix = "iron-overlay-behavior-1.10.1",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800231)
232
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800233new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800234 name = "iron_range_behavior",
235 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800236 url = "https://github.com/polymerelements/iron-range-behavior/archive/v1.0.4.tar.gz",
237 strip_prefix = "iron-range-behavior-1.0.4",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800238)
239
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800240new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800241 name = "iron_resizable_behavior",
242 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800243 url = "https://github.com/polymerelements/iron-resizable-behavior/archive/v1.0.3.tar.gz",
244 strip_prefix = "iron-resizable-behavior-1.0.3",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800245)
246
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800247new_http_archive(
Dan Smilkovc3bed282016-11-01 14:15:58 -0800248 name = "iron_scroll_target_behavior",
249 build_file = "bower.BUILD",
250 url = "https://github.com/polymerelements/iron-scroll-target-behavior/archive/v1.0.3.tar.gz",
251 strip_prefix = "iron-scroll-target-behavior-1.0.3",
252)
253
254new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800255 name = "iron_selector",
256 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800257 url = "https://github.com/polymerelements/iron-selector/archive/v1.5.2.tar.gz",
258 strip_prefix = "iron-selector-1.5.2",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800259)
260
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800261new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800262 name = "iron_validatable_behavior",
263 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800264 url = "https://github.com/polymerelements/iron-validatable-behavior/archive/v1.1.1.tar.gz",
265 strip_prefix = "iron-validatable-behavior-1.1.1",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800266)
267
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800268new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800269 name = "lodash",
270 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800271 url = "https://github.com/lodash/lodash/archive/3.8.0.tar.gz",
272 strip_prefix = "lodash-3.8.0",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800273)
274
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800275new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800276 name = "neon_animation",
277 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800278 url = "https://github.com/polymerelements/neon-animation/archive/v1.2.2.tar.gz",
279 strip_prefix = "neon-animation-1.2.2",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800280)
281
Dan Smilkov33c9c022016-09-06 17:58:53 -0800282http_file(
Dan Smilkov3037d182016-10-10 05:08:49 -0800283 name = "numericjs_numeric_min_js",
Dan Smilkova9d25b02016-09-26 13:09:48 -0800284 url = "https://cdnjs.cloudflare.com/ajax/libs/numeric/1.2.6/numeric.min.js",
Dan Smilkov38a4afc2016-08-31 11:56:58 -0800285)
286
287new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800288 name = "paper_behaviors",
289 build_file = "bower.BUILD",
Dan Smilkov3037d182016-10-10 05:08:49 -0800290 url = "https://github.com/polymerelements/paper-behaviors/archive/v1.0.12.tar.gz",
291 strip_prefix = "paper-behaviors-1.0.12",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800292)
293
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800294new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800295 name = "paper_button",
296 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800297 url = "https://github.com/polymerelements/paper-button/archive/v1.0.11.tar.gz",
298 strip_prefix = "paper-button-1.0.11",
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -0800299)
300
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800301new_http_archive(
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -0800302 name = "paper_checkbox",
303 build_file = "bower.BUILD",
Dan Smilkovbc516c82016-11-11 14:30:57 -0800304 url = "https://github.com/polymerelements/paper-checkbox/archive/v1.4.0.tar.gz",
305 strip_prefix = "paper-checkbox-1.4.0",
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -0800306)
307
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800308new_http_archive(
Dan Manéce6a9952016-04-15 13:01:57 -0800309 name = "paper_dialog",
310 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800311 url = "https://github.com/polymerelements/paper-dialog/archive/v1.0.4.tar.gz",
312 strip_prefix = "paper-dialog-1.0.4",
Dan Manéce6a9952016-04-15 13:01:57 -0800313)
314
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800315new_http_archive(
Dan Manéce6a9952016-04-15 13:01:57 -0800316 name = "paper_dialog_behavior",
317 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800318 url = "https://github.com/polymerelements/paper-dialog-behavior/archive/v1.2.5.tar.gz",
319 strip_prefix = "paper-dialog-behavior-1.2.5",
Dan Manéce6a9952016-04-15 13:01:57 -0800320)
321
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800322new_http_archive(
Dan Smilkovbc516c82016-11-11 14:30:57 -0800323 name = "paper_dialog_scrollable",
324 build_file = "bower.BUILD",
325 url = "https://github.com/polymerelements/paper-dialog-scrollable/archive/1.1.5.tar.gz",
326 strip_prefix = "paper-dialog-scrollable-1.1.5",
327)
328
329new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800330 name = "paper_dropdown_menu",
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -0800331 build_file = "bower.BUILD",
Dan Smilkov3037d182016-10-10 05:08:49 -0800332 url = "https://github.com/polymerelements/paper-dropdown-menu/archive/v1.4.0.tar.gz",
333 strip_prefix = "paper-dropdown-menu-1.4.0",
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -0800334)
335
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800336new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800337 name = "paper_header_panel",
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -0800338 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800339 url = "https://github.com/polymerelements/paper-header-panel/archive/v1.1.4.tar.gz",
340 strip_prefix = "paper-header-panel-1.1.4",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800341)
342
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800343new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800344 name = "paper_icon_button",
345 build_file = "bower.BUILD",
Dan Smilkovc3bed282016-11-01 14:15:58 -0800346 url = "https://github.com/polymerelements/paper-icon-button/archive/v1.1.3.tar.gz",
347 strip_prefix = "paper-icon-button-1.1.3",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800348)
349
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800350new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800351 name = "paper_input",
352 build_file = "bower.BUILD",
Dan Smilkov33c9c022016-09-06 17:58:53 -0800353 url = "https://github.com/polymerelements/paper-input/archive/v1.1.18.tar.gz",
354 strip_prefix = "paper-input-1.1.18",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800355)
356
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800357new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800358 name = "paper_item",
359 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800360 url = "https://github.com/polymerelements/paper-item/archive/v1.1.4.tar.gz",
361 strip_prefix = "paper-item-1.1.4",
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -0800362)
363
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800364new_http_archive(
Dan Smilkov38a4afc2016-08-31 11:56:58 -0800365 name = "paper_listbox",
366 build_file = "bower.BUILD",
367 url = "https://github.com/polymerelements/paper-listbox/archive/v1.1.2.tar.gz",
368 strip_prefix = "paper-listbox-1.1.2",
369)
370
371new_http_archive(
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -0800372 name = "paper_material",
373 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800374 url = "https://github.com/polymerelements/paper-material/archive/v1.0.6.tar.gz",
375 strip_prefix = "paper-material-1.0.6",
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -0800376)
377
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800378new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800379 name = "paper_menu",
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -0800380 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800381 url = "https://github.com/polymerelements/paper-menu/archive/v1.2.2.tar.gz",
382 strip_prefix = "paper-menu-1.2.2",
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -0800383)
384
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800385new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800386 name = "paper_menu_button",
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -0800387 build_file = "bower.BUILD",
Dan Smilkov3037d182016-10-10 05:08:49 -0800388 url = "https://github.com/polymerelements/paper-menu-button/archive/v1.5.1.tar.gz",
389 strip_prefix = "paper-menu-button-1.5.1",
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -0800390)
391
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800392new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800393 name = "paper_progress",
394 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800395 url = "https://github.com/polymerelements/paper-progress/archive/v1.0.9.tar.gz",
396 strip_prefix = "paper-progress-1.0.9",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800397)
398
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800399new_http_archive(
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -0800400 name = "paper_radio_button",
401 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800402 url = "https://github.com/polymerelements/paper-radio-button/archive/v1.1.2.tar.gz",
403 strip_prefix = "paper-radio-button-1.1.2",
Dan Smilkov0907b352016-02-16 11:30:12 -0800404)
405
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800406new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800407 name = "paper_radio_group",
Dan Smilkov0907b352016-02-16 11:30:12 -0800408 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800409 url = "https://github.com/polymerelements/paper-radio-group/archive/v1.0.9.tar.gz",
410 strip_prefix = "paper-radio-group-1.0.9",
Dan Smilkov0907b352016-02-16 11:30:12 -0800411)
412
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800413new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800414 name = "paper_ripple",
Dan Smilkov0907b352016-02-16 11:30:12 -0800415 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800416 url = "https://github.com/polymerelements/paper-ripple/archive/v1.0.5.tar.gz",
417 strip_prefix = "paper-ripple-1.0.5",
Dan Smilkov0907b352016-02-16 11:30:12 -0800418)
419
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800420new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800421 name = "paper_slider",
Dan Smilkov0907b352016-02-16 11:30:12 -0800422 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800423 url = "https://github.com/polymerelements/paper-slider/archive/v1.0.10.tar.gz",
424 strip_prefix = "paper-slider-1.0.10",
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -0800425)
426
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800427new_http_archive(
Dan Smilkov5329ac72016-11-17 13:45:27 -0800428 name = "paper_spinner",
429 build_file = "bower.BUILD",
430 url = "https://github.com/polymerelements/paper-spinner/archive/v1.1.1.tar.gz",
431 strip_prefix = "paper-spinner-1.1.1",
432)
433
434new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800435 name = "paper_styles",
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -0800436 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800437 url = "https://github.com/polymerelements/paper-styles/archive/v1.1.4.tar.gz",
438 strip_prefix = "paper-styles-1.1.4",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800439)
440
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800441new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800442 name = "paper_tabs",
443 build_file = "bower.BUILD",
Dan Smilkovf0e9bd32016-11-09 12:53:00 -0800444 url = "https://github.com/polymerelements/paper-tabs/archive/v1.7.0.tar.gz",
445 strip_prefix = "paper-tabs-1.7.0",
446)
447
448new_http_archive(
449 name = "paper_toast",
450 build_file = "bower.BUILD",
451 url = "https://github.com/polymerelements/paper-toast/archive/v1.3.0.tar.gz",
452 strip_prefix = "paper-toast-1.3.0",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800453)
454
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800455new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800456 name = "paper_toggle_button",
457 build_file = "bower.BUILD",
Dan Smilkov3037d182016-10-10 05:08:49 -0800458 url = "https://github.com/polymerelements/paper-toggle-button/archive/v1.2.0.tar.gz",
459 strip_prefix = "paper-toggle-button-1.2.0",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800460)
461
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800462new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800463 name = "paper_toolbar",
464 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800465 url = "https://github.com/polymerelements/paper-toolbar/archive/v1.1.4.tar.gz",
466 strip_prefix = "paper-toolbar-1.1.4",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800467)
468
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800469new_http_archive(
Dan Smilkovf76c72a2016-06-28 09:29:32 -0800470 name = "paper_tooltip",
471 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800472 url = "https://github.com/polymerelements/paper-tooltip/archive/v1.1.2.tar.gz",
473 strip_prefix = "paper-tooltip-1.1.2",
Dan Smilkovf76c72a2016-06-28 09:29:32 -0800474)
475
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800476new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800477 name = "plottable",
478 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800479 url = "https://github.com/palantir/plottable/archive/v1.16.1.tar.gz",
480 strip_prefix = "plottable-1.16.1",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800481)
482
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800483new_http_archive(
Vijay Vasudevan93a975e2017-02-17 17:05:49 -0800484 name = "polymer",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800485 build_file = "bower.BUILD",
Dan Smilkov3037d182016-10-10 05:08:49 -0800486 url = "https://github.com/polymer/polymer/archive/v1.7.0.tar.gz",
487 strip_prefix = "polymer-1.7.0",
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800488)
489
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800490new_http_archive(
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -0800491 name = "promise_polyfill",
492 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800493 url = "https://github.com/polymerlabs/promise-polyfill/archive/v1.0.0.tar.gz",
494 strip_prefix = "promise-polyfill-1.0.0",
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -0800495)
496
Dan Smilkov33c9c022016-09-06 17:58:53 -0800497http_file(
498 name = "three_js_three_min_js",
499 url = "https://raw.githubusercontent.com/mrdoob/three.js/r77/build/three.min.js",
500)
501
502http_file(
503 name = "three_js_orbitcontrols_js",
504 url = "https://raw.githubusercontent.com/mrdoob/three.js/r77/examples/js/controls/OrbitControls.js",
Dan Smilkov38a4afc2016-08-31 11:56:58 -0800505)
506
507new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800508 name = "web_animations_js",
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -0800509 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800510 url = "https://github.com/web-animations/web-animations-js/archive/2.2.1.tar.gz",
511 strip_prefix = "web-animations-js-2.2.1",
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -0800512)
513
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800514new_http_archive(
A. Unique TensorFlowere006f932016-02-16 16:23:04 -0800515 name = "webcomponentsjs",
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -0800516 build_file = "bower.BUILD",
Dan Smilkov80acdaf2016-08-31 09:24:10 -0800517 url = "https://github.com/webcomponents/webcomponentsjs/archive/v0.7.22.tar.gz",
518 strip_prefix = "webcomponentsjs-0.7.22",
Manjunath Kudlurf41959c2015-11-06 16:27:58 -0800519)
Dan Smilkov38a4afc2016-08-31 11:56:58 -0800520
Dan Smilkov33c9c022016-09-06 17:58:53 -0800521http_file(
522 name = "weblas_weblas_js",
523 url = "https://raw.githubusercontent.com/waylonflinn/weblas/v0.9.0/dist/weblas.js",
Dan Smilkov38a4afc2016-08-31 11:56:58 -0800524)