blob: f04b14c001a6e9a901a50a3ee6429ae72a1115d3 [file] [log] [blame]
Manjunath Kudlurf41959c2015-11-06 16:27:58 -08001# Uncomment and update the paths in these entries to build the Android demo.
2#android_sdk_repository(
3# name = "androidsdk",
4# api_level = 23,
5# build_tools_version = "23.0.1",
6# # Replace with path to Android SDK on your system
7# path = "<PATH_TO_SDK>",
8#)
9#
10#android_ndk_repository(
11# name="androidndk",
12# path="<PATH_TO_NDK>",
13# api_level=21)
14
15new_http_archive(
16 name = "gmock_archive",
17 url = "https://googlemock.googlecode.com/files/gmock-1.7.0.zip",
18 sha256 = "26fcbb5925b74ad5fc8c26b0495dfc96353f4d553492eb97e85a8a6d2f43095b",
Manjunath Kudlur3dfd1442015-12-04 09:54:09 -080019 build_file = "google/protobuf/gmock.BUILD",
Manjunath Kudlurf41959c2015-11-06 16:27:58 -080020)
21
A. Unique TensorFlower12a82de2015-12-16 17:56:17 -080022new_http_archive(
23 name = "eigen_archive",
A. Unique TensorFlower1c579362016-01-05 14:05:27 -080024 url = "https://bitbucket.org/eigen/eigen/get/a0661a2.tar.gz",
25 sha256 = "d4d13995a0b3a2d80189f83d28647eb35819a478522149c15a761d91f53579b1",
A. Unique TensorFlower12a82de2015-12-16 17:56:17 -080026 build_file = "eigen.BUILD",
27)
28
Manjunath Kudlurf41959c2015-11-06 16:27:58 -080029bind(
30 name = "gtest",
31 actual = "@gmock_archive//:gtest",
32)
33
34bind(
35 name = "gtest_main",
36 actual = "@gmock_archive//:gtest_main",
37)
38
39git_repository(
40 name = "re2",
41 remote = "https://github.com/google/re2.git",
Manjunath Kudlurfa095c52015-12-02 09:12:45 -080042 commit = "791beff",
Manjunath Kudlurf41959c2015-11-06 16:27:58 -080043)
44
45new_http_archive(
46 name = "jpeg_archive",
47 url = "http://www.ijg.org/files/jpegsrc.v9a.tar.gz",
48 sha256 = "3a753ea48d917945dd54a2d97de388aa06ca2eb1066cbfdc6652036349fe05a7",
49 build_file = "jpeg.BUILD",
50)
51
52git_repository(
53 name = "gemmlowp",
54 remote = "https://github.com/google/gemmlowp.git",
55 commit = "cc5d3a0",
56)
57
58new_http_archive(
59 name = "png_archive",
60 url = "https://storage.googleapis.com/libpng-public-archive/libpng-1.2.53.tar.gz",
61 sha256 = "e05c9056d7f323088fd7824d8c6acc03a4a758c4b4916715924edc5dd3223a72",
62 build_file = "png.BUILD",
63)
64
65new_http_archive(
66 name = "six_archive",
67 url = "https://pypi.python.org/packages/source/s/six/six-1.10.0.tar.gz#md5=34eed507548117b2ab523ab14b2f8b55",
68 sha256 = "105f8d68616f8248e24bf0e9372ef04d3cc10104f1980f54d57b2ce73a5ad56a",
69 build_file = "six.BUILD",
70)
71
72bind(
73 name = "six",
74 actual = "@six_archive//:six",
75)
76
A. Unique TensorFlower231c8532016-01-06 12:52:05 -080077# TENSORBOARD_BOWER_AUTOGENERATED_BELOW_THIS_LINE_DO_NOT_EDIT
78
Manjunath Kudlurf41959c2015-11-06 16:27:58 -080079new_git_repository(
80 name = "iron-ajax",
81 build_file = "bower.BUILD",
82 remote = "https://github.com/PolymerElements/iron-ajax.git",
A. Unique TensorFlower231c8532016-01-06 12:52:05 -080083 tag = "v1.0.7",
Manjunath Kudlurf41959c2015-11-06 16:27:58 -080084)
85
86new_git_repository(
87 name = "iron-dropdown",
88 build_file = "bower.BUILD",
A. Unique TensorFlower231c8532016-01-06 12:52:05 -080089 remote = "https://github.com/polymerelements/iron-dropdown.git",
A. Unique TensorFlowere7ca22d2016-01-08 16:00:07 -080090 tag = "v1.1.0",
Manjunath Kudlurf41959c2015-11-06 16:27:58 -080091)
92
93new_git_repository(
94 name = "accessibility-developer-tools",
95 build_file = "bower.BUILD",
96 remote = "https://github.com/GoogleChrome/accessibility-developer-tools.git",
97 tag = "v2.10.0",
98)
99
100new_git_repository(
101 name = "iron-doc-viewer",
102 build_file = "bower.BUILD",
103 remote = "https://github.com/PolymerElements/iron-doc-viewer.git",
A. Unique TensorFlowere7ca22d2016-01-08 16:00:07 -0800104 tag = "v1.0.12",
Manjunath Kudlurf41959c2015-11-06 16:27:58 -0800105)
106
107new_git_repository(
108 name = "iron-icons",
109 build_file = "bower.BUILD",
110 remote = "https://github.com/polymerelements/iron-icons.git",
A. Unique TensorFlowere7ca22d2016-01-08 16:00:07 -0800111 tag = "v1.0.6",
Manjunath Kudlurf41959c2015-11-06 16:27:58 -0800112)
113
114new_git_repository(
115 name = "paper-icon-button",
116 build_file = "bower.BUILD",
117 remote = "https://github.com/PolymerElements/paper-icon-button.git",
118 tag = "v1.0.5",
119)
120
121new_git_repository(
A. Unique TensorFlower231c8532016-01-06 12:52:05 -0800122 name = "test-fixture",
123 build_file = "bower.BUILD",
124 remote = "https://github.com/polymerelements/test-fixture.git",
A. Unique TensorFlowere7ca22d2016-01-08 16:00:07 -0800125 tag = "v1.1.0",
A. Unique TensorFlower231c8532016-01-06 12:52:05 -0800126)
127
128new_git_repository(
Manjunath Kudlurf41959c2015-11-06 16:27:58 -0800129 name = "sinonjs",
130 build_file = "bower.BUILD",
131 remote = "https://github.com/blittle/sinon.js.git",
132 tag = "v1.17.1",
133)
134
135new_git_repository(
136 name = "paper-dropdown-menu",
137 build_file = "bower.BUILD",
138 remote = "https://github.com/PolymerElements/paper-dropdown-menu.git",
139 tag = "v1.0.5",
140)
141
142new_git_repository(
143 name = "iron-flex-layout",
144 build_file = "bower.BUILD",
A. Unique TensorFlowere7ca22d2016-01-08 16:00:07 -0800145 remote = "https://github.com/PolymerElements/iron-flex-layout.git",
146 tag = "v1.2.2",
Manjunath Kudlurf41959c2015-11-06 16:27:58 -0800147)
148
149new_git_repository(
150 name = "iron-autogrow-textarea",
151 build_file = "bower.BUILD",
152 remote = "https://github.com/PolymerElements/iron-autogrow-textarea.git",
A. Unique TensorFlower231c8532016-01-06 12:52:05 -0800153 tag = "v1.0.10",
Manjunath Kudlurf41959c2015-11-06 16:27:58 -0800154)
155
156new_git_repository(
157 name = "d3",
158 build_file = "bower.BUILD",
159 remote = "https://github.com/mbostock/d3.git",
160 tag = "v3.5.6",
161)
162
163new_git_repository(
164 name = "iron-component-page",
165 build_file = "bower.BUILD",
166 remote = "https://github.com/PolymerElements/iron-component-page.git",
A. Unique TensorFlowere7ca22d2016-01-08 16:00:07 -0800167 tag = "v1.1.3",
Manjunath Kudlurf41959c2015-11-06 16:27:58 -0800168)
169
170new_git_repository(
171 name = "stacky",
172 build_file = "bower.BUILD",
173 remote = "https://github.com/PolymerLabs/stacky.git",
A. Unique TensorFlowere7ca22d2016-01-08 16:00:07 -0800174 tag = "v1.3.1",
Manjunath Kudlurf41959c2015-11-06 16:27:58 -0800175)
176
177new_git_repository(
178 name = "paper-styles",
179 build_file = "bower.BUILD",
180 remote = "https://github.com/PolymerElements/paper-styles.git",
181 tag = "v1.0.12",
182)
183
184new_git_repository(
185 name = "paper-input",
186 build_file = "bower.BUILD",
187 remote = "https://github.com/PolymerElements/paper-input.git",
188 tag = "v1.0.16",
189)
190
191new_git_repository(
192 name = "paper-item",
193 build_file = "bower.BUILD",
194 remote = "https://github.com/PolymerElements/paper-item.git",
195 tag = "v1.0.5",
196)
197
198new_git_repository(
199 name = "marked-element",
200 build_file = "bower.BUILD",
201 remote = "https://github.com/PolymerElements/marked-element.git",
202 tag = "v1.1.1",
203)
204
205new_git_repository(
206 name = "prism",
207 build_file = "bower.BUILD",
208 remote = "https://github.com/LeaVerou/prism.git",
209 tag = "v1.3.0",
210)
211
212new_git_repository(
213 name = "paper-progress",
214 build_file = "bower.BUILD",
215 remote = "https://github.com/PolymerElements/paper-progress.git",
216 tag = "v1.0.7",
217)
218
219new_git_repository(
220 name = "iron-checked-element-behavior",
221 build_file = "bower.BUILD",
222 remote = "https://github.com/PolymerElements/iron-checked-element-behavior.git",
A. Unique TensorFlowere7ca22d2016-01-08 16:00:07 -0800223 tag = "v1.0.4",
Manjunath Kudlurf41959c2015-11-06 16:27:58 -0800224)
225
226new_git_repository(
227 name = "paper-toolbar",
228 build_file = "bower.BUILD",
229 remote = "https://github.com/PolymerElements/paper-toolbar.git",
230 tag = "v1.0.4",
231)
232
233new_git_repository(
234 name = "async",
235 build_file = "bower.BUILD",
236 remote = "https://github.com/caolan/async.git",
A. Unique TensorFlowere7ca22d2016-01-08 16:00:07 -0800237 tag = "v1.5.1",
Manjunath Kudlurf41959c2015-11-06 16:27:58 -0800238)
239
240new_git_repository(
241 name = "es6-promise",
242 build_file = "bower.BUILD",
243 remote = "https://github.com/components/es6-promise.git",
244 tag = "v3.0.2",
245)
246
247new_git_repository(
248 name = "promise-polyfill",
249 build_file = "bower.BUILD",
250 remote = "https://github.com/polymerlabs/promise-polyfill.git",
251 tag = "v1.0.0",
252)
253
254new_git_repository(
255 name = "font-roboto",
256 build_file = "bower.BUILD",
257 remote = "https://github.com/PolymerElements/font-roboto.git",
258 tag = "v1.0.1",
259)
260
261new_git_repository(
262 name = "paper-menu",
263 build_file = "bower.BUILD",
264 remote = "https://github.com/PolymerElements/paper-menu.git",
265 tag = "v1.1.1",
266)
267
268new_git_repository(
269 name = "iron-icon",
270 build_file = "bower.BUILD",
271 remote = "https://github.com/polymerelements/iron-icon.git",
272 tag = "v1.0.7",
273)
274
275new_git_repository(
276 name = "iron-meta",
277 build_file = "bower.BUILD",
A. Unique TensorFlower231c8532016-01-06 12:52:05 -0800278 remote = "https://github.com/polymerelements/iron-meta.git",
279 tag = "v1.1.1",
Manjunath Kudlurf41959c2015-11-06 16:27:58 -0800280)
281
282new_git_repository(
283 name = "lodash",
284 build_file = "bower.BUILD",
285 remote = "https://github.com/lodash/lodash.git",
286 tag = "3.10.1",
287)
288
289new_git_repository(
290 name = "iron-resizable-behavior",
291 build_file = "bower.BUILD",
A. Unique TensorFlower231c8532016-01-06 12:52:05 -0800292 remote = "https://github.com/polymerelements/iron-resizable-behavior.git",
Manjunath Kudlurf41959c2015-11-06 16:27:58 -0800293 tag = "v1.0.2",
294)
295
296new_git_repository(
297 name = "iron-fit-behavior",
298 build_file = "bower.BUILD",
299 remote = "https://github.com/PolymerElements/iron-fit-behavior.git",
A. Unique TensorFlower231c8532016-01-06 12:52:05 -0800300 tag = "v1.0.5",
Manjunath Kudlurf41959c2015-11-06 16:27:58 -0800301)
302
303new_git_repository(
304 name = "iron-overlay-behavior",
305 build_file = "bower.BUILD",
A. Unique TensorFlower231c8532016-01-06 12:52:05 -0800306 remote = "https://github.com/polymerelements/iron-overlay-behavior.git",
A. Unique TensorFlowere7ca22d2016-01-08 16:00:07 -0800307 tag = "v1.1.2",
Manjunath Kudlurf41959c2015-11-06 16:27:58 -0800308)
309
310new_git_repository(
311 name = "neon-animation",
312 build_file = "bower.BUILD",
313 remote = "https://github.com/polymerelements/neon-animation.git",
A. Unique TensorFlower231c8532016-01-06 12:52:05 -0800314 tag = "v1.0.8",
Manjunath Kudlurf41959c2015-11-06 16:27:58 -0800315)
316
317new_git_repository(
318 name = "iron-a11y-keys-behavior",
319 build_file = "bower.BUILD",
320 remote = "https://github.com/polymerelements/iron-a11y-keys-behavior.git",
A. Unique TensorFlower231c8532016-01-06 12:52:05 -0800321 tag = "v1.1.0",
Manjunath Kudlurf41959c2015-11-06 16:27:58 -0800322)
323
324new_git_repository(
325 name = "plottable",
326 build_file = "bower.BUILD",
327 remote = "https://github.com/palantir/plottable.git",
A. Unique TensorFlower231c8532016-01-06 12:52:05 -0800328 tag = "v1.16.2",
Manjunath Kudlurf41959c2015-11-06 16:27:58 -0800329)
330
331new_git_repository(
332 name = "webcomponentsjs",
333 build_file = "bower.BUILD",
334 remote = "https://github.com/Polymer/webcomponentsjs.git",
A. Unique TensorFlowere7ca22d2016-01-08 16:00:07 -0800335 tag = "v0.7.20",
Manjunath Kudlurf41959c2015-11-06 16:27:58 -0800336)
337
338new_git_repository(
339 name = "iron-validatable-behavior",
340 build_file = "bower.BUILD",
341 remote = "https://github.com/PolymerElements/iron-validatable-behavior.git",
342 tag = "v1.0.5",
343)
344
345new_git_repository(
346 name = "sinon-chai",
347 build_file = "bower.BUILD",
348 remote = "https://github.com/domenic/sinon-chai.git",
349 tag = "2.8.0",
350)
351
352new_git_repository(
353 name = "paper-button",
354 build_file = "bower.BUILD",
355 remote = "https://github.com/PolymerElements/paper-button.git",
356 tag = "v1.0.8",
357)
358
359new_git_repository(
360 name = "iron-input",
361 build_file = "bower.BUILD",
362 remote = "https://github.com/PolymerElements/iron-input.git",
A. Unique TensorFlower231c8532016-01-06 12:52:05 -0800363 tag = "v1.0.7",
Manjunath Kudlurf41959c2015-11-06 16:27:58 -0800364)
365
366new_git_repository(
367 name = "iron-menu-behavior",
368 build_file = "bower.BUILD",
369 remote = "https://github.com/PolymerElements/iron-menu-behavior.git",
A. Unique TensorFlowere7ca22d2016-01-08 16:00:07 -0800370 tag = "v1.0.7",
Manjunath Kudlurf41959c2015-11-06 16:27:58 -0800371)
372
373new_git_repository(
374 name = "paper-slider",
375 build_file = "bower.BUILD",
376 remote = "https://github.com/PolymerElements/paper-slider.git",
377 tag = "v1.0.7",
378)
379
380new_git_repository(
381 name = "iron-list",
382 build_file = "bower.BUILD",
383 remote = "https://github.com/PolymerElements/iron-list.git",
384 tag = "v1.1.5",
385)
386
387new_git_repository(
388 name = "marked",
389 build_file = "bower.BUILD",
390 remote = "https://github.com/chjj/marked.git",
391 tag = "v0.3.5",
392)
393
394new_git_repository(
395 name = "paper-material",
396 build_file = "bower.BUILD",
397 remote = "https://github.com/polymerelements/paper-material.git",
A. Unique TensorFlowere7ca22d2016-01-08 16:00:07 -0800398 tag = "v1.0.5",
Manjunath Kudlurf41959c2015-11-06 16:27:58 -0800399)
400
401new_git_repository(
402 name = "iron-range-behavior",
403 build_file = "bower.BUILD",
404 remote = "https://github.com/PolymerElements/iron-range-behavior.git",
405 tag = "v1.0.4",
406)
407
408new_git_repository(
409 name = "svg-typewriter",
410 build_file = "bower.BUILD",
411 remote = "https://github.com/palantir/svg-typewriter.git",
412 tag = "v0.3.0",
413)
414
415new_git_repository(
416 name = "web-animations-js",
417 build_file = "bower.BUILD",
418 remote = "https://github.com/web-animations/web-animations-js.git",
419 tag = "2.1.2",
420)
421
422new_git_repository(
423 name = "hydrolysis",
424 build_file = "bower.BUILD",
425 remote = "https://github.com/Polymer/hydrolysis.git",
A. Unique TensorFlower231c8532016-01-06 12:52:05 -0800426 tag = "v1.21.4",
Manjunath Kudlurf41959c2015-11-06 16:27:58 -0800427)
428
429new_git_repository(
430 name = "web-component-tester",
431 build_file = "bower.BUILD",
432 remote = "https://github.com/Polymer/web-component-tester.git",
A. Unique TensorFlowere7ca22d2016-01-08 16:00:07 -0800433 tag = "v4.0.3",
Manjunath Kudlurf41959c2015-11-06 16:27:58 -0800434)
435
436new_git_repository(
437 name = "paper-toggle-button",
438 build_file = "bower.BUILD",
439 remote = "https://github.com/PolymerElements/paper-toggle-button.git",
440 tag = "v1.0.11",
441)
442
443new_git_repository(
444 name = "paper-behaviors",
445 build_file = "bower.BUILD",
A. Unique TensorFlower231c8532016-01-06 12:52:05 -0800446 remote = "https://github.com/PolymerElements/paper-behaviors.git",
447 tag = "v1.0.9",
Manjunath Kudlurf41959c2015-11-06 16:27:58 -0800448)
449
450new_git_repository(
451 name = "paper-radio-group",
452 build_file = "bower.BUILD",
453 remote = "https://github.com/PolymerElements/paper-radio-group.git",
454 tag = "v1.0.6",
455)
456
457new_git_repository(
458 name = "iron-selector",
459 build_file = "bower.BUILD",
460 remote = "https://github.com/PolymerElements/iron-selector.git",
461 tag = "v1.0.7",
462)
463
464new_git_repository(
465 name = "iron-form-element-behavior",
466 build_file = "bower.BUILD",
467 remote = "https://github.com/PolymerElements/iron-form-element-behavior.git",
A. Unique TensorFlowere7ca22d2016-01-08 16:00:07 -0800468 tag = "v1.0.6",
Manjunath Kudlurf41959c2015-11-06 16:27:58 -0800469)
470
471new_git_repository(
472 name = "mocha",
473 build_file = "bower.BUILD",
474 remote = "https://github.com/mochajs/mocha.git",
A. Unique TensorFlower231c8532016-01-06 12:52:05 -0800475 tag = "2.3.4",
Manjunath Kudlurf41959c2015-11-06 16:27:58 -0800476)
477
478new_git_repository(
479 name = "dagre",
480 build_file = "bower.BUILD",
481 remote = "https://github.com/cpettitt/dagre.git",
482 tag = "v0.7.4",
483)
484
485new_git_repository(
486 name = "iron-behaviors",
487 build_file = "bower.BUILD",
488 remote = "https://github.com/PolymerElements/iron-behaviors.git",
A. Unique TensorFlower231c8532016-01-06 12:52:05 -0800489 tag = "v1.0.10",
Manjunath Kudlurf41959c2015-11-06 16:27:58 -0800490)
491
492new_git_repository(
493 name = "graphlib",
494 build_file = "bower.BUILD",
495 remote = "https://github.com/cpettitt/graphlib.git",
496 tag = "v1.0.7",
497)
498
499new_git_repository(
500 name = "iron-collapse",
501 build_file = "bower.BUILD",
502 remote = "https://github.com/PolymerElements/iron-collapse.git",
503 tag = "v1.0.4",
504)
505
506new_git_repository(
507 name = "paper-checkbox",
508 build_file = "bower.BUILD",
509 remote = "https://github.com/PolymerElements/paper-checkbox.git",
510 tag = "v1.0.13",
511)
512
513new_git_repository(
514 name = "paper-radio-button",
515 build_file = "bower.BUILD",
516 remote = "https://github.com/PolymerElements/paper-radio-button.git",
517 tag = "v1.0.10",
518)
519
520new_git_repository(
521 name = "paper-header-panel",
522 build_file = "bower.BUILD",
523 remote = "https://github.com/PolymerElements/paper-header-panel.git",
524 tag = "v1.0.5",
525)
526
527new_git_repository(
528 name = "prism-element",
529 build_file = "bower.BUILD",
530 remote = "https://github.com/PolymerElements/prism-element.git",
A. Unique TensorFlower231c8532016-01-06 12:52:05 -0800531 tag = "v1.0.3",
Manjunath Kudlurf41959c2015-11-06 16:27:58 -0800532)
533
534new_git_repository(
535 name = "chai",
536 build_file = "bower.BUILD",
537 remote = "https://github.com/chaijs/chai.git",
538 tag = "2.3.0",
539)
540
541new_git_repository(
A. Unique TensorFlowere7ca22d2016-01-08 16:00:07 -0800542 name = "paper-tabs",
543 build_file = "bower.BUILD",
544 remote = "https://github.com/PolymerElements/paper-tabs.git",
545 tag = "v1.0.10",
546)
547
548new_git_repository(
Manjunath Kudlurf41959c2015-11-06 16:27:58 -0800549 name = "paper-menu-button",
550 build_file = "bower.BUILD",
551 remote = "https://github.com/polymerelements/paper-menu-button.git",
A. Unique TensorFlowere7ca22d2016-01-08 16:00:07 -0800552 tag = "v1.0.4",
Manjunath Kudlurf41959c2015-11-06 16:27:58 -0800553)
554
555new_git_repository(
556 name = "polymer",
557 build_file = "bower.BUILD",
558 remote = "https://github.com/Polymer/polymer.git",
A. Unique TensorFlower231c8532016-01-06 12:52:05 -0800559 tag = "v1.1.5",
Manjunath Kudlurf41959c2015-11-06 16:27:58 -0800560)
561
562new_git_repository(
563 name = "paper-ripple",
564 build_file = "bower.BUILD",
565 remote = "https://github.com/polymerelements/paper-ripple.git",
A. Unique TensorFlower231c8532016-01-06 12:52:05 -0800566 tag = "v1.0.5",
Manjunath Kudlurf41959c2015-11-06 16:27:58 -0800567)
568
569new_git_repository(
570 name = "iron-iconset-svg",
571 build_file = "bower.BUILD",
A. Unique TensorFlower231c8532016-01-06 12:52:05 -0800572 remote = "https://github.com/polymerelements/iron-iconset-svg.git",
573 tag = "v1.0.9",
Manjunath Kudlurf41959c2015-11-06 16:27:58 -0800574)