Manjunath Kudlur | f41959c | 2015-11-06 16:27:58 -0800 | [diff] [blame] | 1 | # 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 | |
| 15 | new_http_archive( |
| 16 | name = "gmock_archive", |
| 17 | url = "https://googlemock.googlecode.com/files/gmock-1.7.0.zip", |
| 18 | sha256 = "26fcbb5925b74ad5fc8c26b0495dfc96353f4d553492eb97e85a8a6d2f43095b", |
Manjunath Kudlur | 3dfd144 | 2015-12-04 09:54:09 -0800 | [diff] [blame] | 19 | build_file = "google/protobuf/gmock.BUILD", |
Manjunath Kudlur | f41959c | 2015-11-06 16:27:58 -0800 | [diff] [blame] | 20 | ) |
| 21 | |
A. Unique TensorFlower | 12a82de | 2015-12-16 17:56:17 -0800 | [diff] [blame] | 22 | new_http_archive( |
| 23 | name = "eigen_archive", |
Vijay Vasudevan | abf4b57 | 2016-02-12 17:32:33 -0800 | [diff] [blame] | 24 | url = "https://bitbucket.org/eigen/eigen/get/70505a059011.tar.gz", |
| 25 | sha256 = "9751bd3485a9b373bc1b40626feac37484099e54b2b47a93d3da8bf1312a7beb", |
A. Unique TensorFlower | 12a82de | 2015-12-16 17:56:17 -0800 | [diff] [blame] | 26 | build_file = "eigen.BUILD", |
| 27 | ) |
| 28 | |
Manjunath Kudlur | f41959c | 2015-11-06 16:27:58 -0800 | [diff] [blame] | 29 | bind( |
| 30 | name = "gtest", |
| 31 | actual = "@gmock_archive//:gtest", |
| 32 | ) |
| 33 | |
| 34 | bind( |
| 35 | name = "gtest_main", |
| 36 | actual = "@gmock_archive//:gtest_main", |
| 37 | ) |
| 38 | |
| 39 | git_repository( |
| 40 | name = "re2", |
| 41 | remote = "https://github.com/google/re2.git", |
Manjunath Kudlur | fa095c5 | 2015-12-02 09:12:45 -0800 | [diff] [blame] | 42 | commit = "791beff", |
Manjunath Kudlur | f41959c | 2015-11-06 16:27:58 -0800 | [diff] [blame] | 43 | ) |
| 44 | |
| 45 | new_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 | |
Manjunath Kudlur | f41959c | 2015-11-06 16:27:58 -0800 | [diff] [blame] | 52 | new_http_archive( |
| 53 | name = "png_archive", |
| 54 | url = "https://storage.googleapis.com/libpng-public-archive/libpng-1.2.53.tar.gz", |
| 55 | sha256 = "e05c9056d7f323088fd7824d8c6acc03a4a758c4b4916715924edc5dd3223a72", |
| 56 | build_file = "png.BUILD", |
| 57 | ) |
| 58 | |
| 59 | new_http_archive( |
| 60 | name = "six_archive", |
| 61 | url = "https://pypi.python.org/packages/source/s/six/six-1.10.0.tar.gz#md5=34eed507548117b2ab523ab14b2f8b55", |
| 62 | sha256 = "105f8d68616f8248e24bf0e9372ef04d3cc10104f1980f54d57b2ce73a5ad56a", |
| 63 | build_file = "six.BUILD", |
| 64 | ) |
| 65 | |
| 66 | bind( |
| 67 | name = "six", |
| 68 | actual = "@six_archive//:six", |
| 69 | ) |
| 70 | |
A. Unique TensorFlower | 231c853 | 2016-01-06 12:52:05 -0800 | [diff] [blame] | 71 | # TENSORBOARD_BOWER_AUTOGENERATED_BELOW_THIS_LINE_DO_NOT_EDIT |
| 72 | |
Manjunath Kudlur | f41959c | 2015-11-06 16:27:58 -0800 | [diff] [blame] | 73 | new_git_repository( |
A. Unique TensorFlower | 6b97b90 | 2016-02-16 14:53:43 -0800 | [diff] [blame] | 74 | name = "accessibility_developer_tools", |
| 75 | build_file = "bower.BUILD", |
| 76 | remote = "https://github.com/GoogleChrome/accessibility-developer-tools.git", |
| 77 | tag = "v2.10.0", |
| 78 | ) |
| 79 | |
| 80 | new_git_repository( |
A. Unique TensorFlower | 6b97b90 | 2016-02-16 14:53:43 -0800 | [diff] [blame] | 81 | name = "async", |
| 82 | build_file = "bower.BUILD", |
| 83 | remote = "https://github.com/caolan/async.git", |
| 84 | tag = "v1.5.2", |
| 85 | ) |
| 86 | |
| 87 | new_git_repository( |
A. Unique TensorFlower | e006f93 | 2016-02-16 16:23:04 -0800 | [diff] [blame^] | 88 | name = "chai", |
A. Unique TensorFlower | 6b97b90 | 2016-02-16 14:53:43 -0800 | [diff] [blame] | 89 | build_file = "bower.BUILD", |
A. Unique TensorFlower | e006f93 | 2016-02-16 16:23:04 -0800 | [diff] [blame^] | 90 | remote = "https://github.com/chaijs/chai.git", |
| 91 | tag = "2.3.0", |
A. Unique TensorFlower | 6b97b90 | 2016-02-16 14:53:43 -0800 | [diff] [blame] | 92 | ) |
| 93 | |
| 94 | new_git_repository( |
A. Unique TensorFlower | e006f93 | 2016-02-16 16:23:04 -0800 | [diff] [blame^] | 95 | name = "d3", |
A. Unique TensorFlower | 6b97b90 | 2016-02-16 14:53:43 -0800 | [diff] [blame] | 96 | build_file = "bower.BUILD", |
A. Unique TensorFlower | e006f93 | 2016-02-16 16:23:04 -0800 | [diff] [blame^] | 97 | remote = "https://github.com/mbostock/d3.git", |
| 98 | tag = "v3.5.6", |
| 99 | ) |
| 100 | |
| 101 | new_git_repository( |
| 102 | name = "dagre", |
| 103 | build_file = "bower.BUILD", |
| 104 | remote = "https://github.com/cpettitt/dagre.git", |
| 105 | tag = "v0.7.4", |
| 106 | ) |
| 107 | |
| 108 | new_git_repository( |
| 109 | name = "es6_promise", |
| 110 | build_file = "bower.BUILD", |
| 111 | remote = "https://github.com/components/es6-promise.git", |
| 112 | tag = "v3.0.2", |
| 113 | ) |
| 114 | |
| 115 | new_git_repository( |
| 116 | name = "font_roboto", |
| 117 | build_file = "bower.BUILD", |
| 118 | remote = "https://github.com/PolymerElements/font-roboto.git", |
| 119 | tag = "v1.0.1", |
| 120 | ) |
| 121 | |
| 122 | new_git_repository( |
| 123 | name = "graphlib", |
| 124 | build_file = "bower.BUILD", |
| 125 | remote = "https://github.com/cpettitt/graphlib.git", |
| 126 | tag = "v1.0.7", |
| 127 | ) |
| 128 | |
| 129 | new_git_repository( |
| 130 | name = "hydrolysis", |
| 131 | build_file = "bower.BUILD", |
| 132 | remote = "https://github.com/Polymer/hydrolysis.git", |
| 133 | tag = "v1.22.0", |
| 134 | ) |
| 135 | |
| 136 | new_git_repository( |
| 137 | name = "iron_a11y_keys_behavior", |
| 138 | build_file = "bower.BUILD", |
| 139 | remote = "https://github.com/PolymerElements/iron-a11y-keys-behavior.git", |
| 140 | tag = "v1.1.1", |
| 141 | ) |
| 142 | |
| 143 | new_git_repository( |
| 144 | name = "iron_ajax", |
| 145 | build_file = "bower.BUILD", |
| 146 | remote = "https://github.com/PolymerElements/iron-ajax.git", |
| 147 | tag = "v1.1.1", |
| 148 | ) |
| 149 | |
| 150 | new_git_repository( |
| 151 | name = "iron_autogrow_textarea", |
| 152 | build_file = "bower.BUILD", |
| 153 | remote = "https://github.com/PolymerElements/iron-autogrow-textarea.git", |
| 154 | tag = "v1.0.10", |
| 155 | ) |
| 156 | |
| 157 | new_git_repository( |
| 158 | name = "iron_behaviors", |
| 159 | build_file = "bower.BUILD", |
| 160 | remote = "https://github.com/PolymerElements/iron-behaviors.git", |
| 161 | tag = "v1.0.10", |
| 162 | ) |
| 163 | |
| 164 | new_git_repository( |
| 165 | name = "iron_checked_element_behavior", |
| 166 | build_file = "bower.BUILD", |
| 167 | remote = "https://github.com/PolymerElements/iron-checked-element-behavior.git", |
| 168 | tag = "v1.0.4", |
| 169 | ) |
| 170 | |
| 171 | new_git_repository( |
| 172 | name = "iron_collapse", |
| 173 | build_file = "bower.BUILD", |
| 174 | remote = "https://github.com/PolymerElements/iron-collapse.git", |
| 175 | tag = "v1.0.5", |
| 176 | ) |
| 177 | |
| 178 | new_git_repository( |
| 179 | name = "iron_component_page", |
| 180 | build_file = "bower.BUILD", |
| 181 | remote = "https://github.com/PolymerElements/iron-component-page.git", |
| 182 | tag = "v1.1.4", |
| 183 | ) |
| 184 | |
| 185 | new_git_repository( |
| 186 | name = "iron_doc_viewer", |
| 187 | build_file = "bower.BUILD", |
| 188 | remote = "https://github.com/PolymerElements/iron-doc-viewer.git", |
| 189 | tag = "v1.0.12", |
A. Unique TensorFlower | 6b97b90 | 2016-02-16 14:53:43 -0800 | [diff] [blame] | 190 | ) |
| 191 | |
| 192 | new_git_repository( |
| 193 | name = "iron_dropdown", |
| 194 | build_file = "bower.BUILD", |
| 195 | remote = "https://github.com/polymerelements/iron-dropdown.git", |
| 196 | tag = "v1.1.0", |
| 197 | ) |
| 198 | |
| 199 | new_git_repository( |
A. Unique TensorFlower | e006f93 | 2016-02-16 16:23:04 -0800 | [diff] [blame^] | 200 | name = "iron_fit_behavior", |
A. Unique TensorFlower | 6b97b90 | 2016-02-16 14:53:43 -0800 | [diff] [blame] | 201 | build_file = "bower.BUILD", |
A. Unique TensorFlower | e006f93 | 2016-02-16 16:23:04 -0800 | [diff] [blame^] | 202 | remote = "https://github.com/PolymerElements/iron-fit-behavior.git", |
| 203 | tag = "v1.0.5", |
| 204 | ) |
| 205 | |
| 206 | new_git_repository( |
| 207 | name = "iron_flex_layout", |
| 208 | build_file = "bower.BUILD", |
| 209 | remote = "https://github.com/polymerelements/iron-flex-layout.git", |
| 210 | tag = "v1.2.2", |
| 211 | ) |
| 212 | |
| 213 | new_git_repository( |
| 214 | name = "iron_form_element_behavior", |
| 215 | build_file = "bower.BUILD", |
| 216 | remote = "https://github.com/PolymerElements/iron-form-element-behavior.git", |
| 217 | tag = "v1.0.6", |
| 218 | ) |
| 219 | |
| 220 | new_git_repository( |
| 221 | name = "iron_icon", |
| 222 | build_file = "bower.BUILD", |
| 223 | remote = "https://github.com/PolymerElements/iron-icon.git", |
| 224 | tag = "v1.0.7", |
| 225 | ) |
| 226 | |
| 227 | new_git_repository( |
| 228 | name = "iron_icons", |
| 229 | build_file = "bower.BUILD", |
| 230 | remote = "https://github.com/PolymerElements/iron-icons.git", |
| 231 | tag = "v1.1.3", |
| 232 | ) |
| 233 | |
| 234 | new_git_repository( |
| 235 | name = "iron_iconset_svg", |
| 236 | build_file = "bower.BUILD", |
| 237 | remote = "https://github.com/polymerelements/iron-iconset-svg.git", |
| 238 | tag = "v1.0.9", |
| 239 | ) |
| 240 | |
| 241 | new_git_repository( |
| 242 | name = "iron_input", |
| 243 | build_file = "bower.BUILD", |
| 244 | remote = "https://github.com/PolymerElements/iron-input.git", |
| 245 | tag = "1.0.8", |
| 246 | ) |
| 247 | |
| 248 | new_git_repository( |
| 249 | name = "iron_list", |
| 250 | build_file = "bower.BUILD", |
| 251 | remote = "https://github.com/PolymerElements/iron-list.git", |
| 252 | tag = "v1.1.7", |
| 253 | ) |
| 254 | |
| 255 | new_git_repository( |
| 256 | name = "iron_menu_behavior", |
| 257 | build_file = "bower.BUILD", |
| 258 | remote = "https://github.com/PolymerElements/iron-menu-behavior.git", |
| 259 | tag = "v1.1.0", |
| 260 | ) |
| 261 | |
| 262 | new_git_repository( |
| 263 | name = "iron_meta", |
| 264 | build_file = "bower.BUILD", |
| 265 | remote = "https://github.com/polymerelements/iron-meta.git", |
| 266 | tag = "v1.1.1", |
| 267 | ) |
| 268 | |
| 269 | new_git_repository( |
| 270 | name = "iron_overlay_behavior", |
| 271 | build_file = "bower.BUILD", |
| 272 | remote = "https://github.com/polymerelements/iron-overlay-behavior.git", |
| 273 | tag = "v1.2.0", |
| 274 | ) |
| 275 | |
| 276 | new_git_repository( |
| 277 | name = "iron_range_behavior", |
| 278 | build_file = "bower.BUILD", |
| 279 | remote = "https://github.com/PolymerElements/iron-range-behavior.git", |
| 280 | tag = "v1.0.4", |
| 281 | ) |
| 282 | |
| 283 | new_git_repository( |
| 284 | name = "iron_resizable_behavior", |
| 285 | build_file = "bower.BUILD", |
| 286 | remote = "https://github.com/polymerelements/iron-resizable-behavior.git", |
| 287 | tag = "v1.0.2", |
| 288 | ) |
| 289 | |
| 290 | new_git_repository( |
| 291 | name = "iron_selector", |
| 292 | build_file = "bower.BUILD", |
| 293 | remote = "https://github.com/PolymerElements/iron-selector.git", |
| 294 | tag = "v1.0.7", |
| 295 | ) |
| 296 | |
| 297 | new_git_repository( |
| 298 | name = "iron_validatable_behavior", |
| 299 | build_file = "bower.BUILD", |
| 300 | remote = "https://github.com/PolymerElements/iron-validatable-behavior.git", |
| 301 | tag = "v1.0.5", |
| 302 | ) |
| 303 | |
| 304 | new_git_repository( |
| 305 | name = "lodash", |
| 306 | build_file = "bower.BUILD", |
| 307 | remote = "https://github.com/lodash/lodash.git", |
| 308 | tag = "3.10.1", |
| 309 | ) |
| 310 | |
| 311 | new_git_repository( |
| 312 | name = "marked", |
| 313 | build_file = "bower.BUILD", |
| 314 | remote = "https://github.com/chjj/marked.git", |
| 315 | tag = "v0.3.5", |
| 316 | ) |
| 317 | |
| 318 | new_git_repository( |
| 319 | name = "marked_element", |
| 320 | build_file = "bower.BUILD", |
| 321 | remote = "https://github.com/PolymerElements/marked-element.git", |
| 322 | tag = "v1.1.3", |
| 323 | ) |
| 324 | |
| 325 | new_git_repository( |
| 326 | name = "mocha", |
| 327 | build_file = "bower.BUILD", |
| 328 | remote = "https://github.com/mochajs/mocha.git", |
| 329 | tag = "v2.4.5", |
| 330 | ) |
| 331 | |
| 332 | new_git_repository( |
| 333 | name = "neon_animation", |
| 334 | build_file = "bower.BUILD", |
| 335 | remote = "https://github.com/polymerelements/neon-animation.git", |
| 336 | tag = "v1.1.0", |
| 337 | ) |
| 338 | |
| 339 | new_git_repository( |
| 340 | name = "paper_behaviors", |
| 341 | build_file = "bower.BUILD", |
| 342 | remote = "https://github.com/PolymerElements/paper-behaviors.git", |
| 343 | tag = "v1.0.9", |
| 344 | ) |
| 345 | |
| 346 | new_git_repository( |
| 347 | name = "paper_button", |
| 348 | build_file = "bower.BUILD", |
| 349 | remote = "https://github.com/PolymerElements/paper-button.git", |
| 350 | tag = "v1.0.11", |
A. Unique TensorFlower | 6b97b90 | 2016-02-16 14:53:43 -0800 | [diff] [blame] | 351 | ) |
| 352 | |
| 353 | new_git_repository( |
| 354 | name = "paper_checkbox", |
| 355 | build_file = "bower.BUILD", |
| 356 | remote = "https://github.com/PolymerElements/paper-checkbox.git", |
| 357 | tag = "v1.0.13", |
| 358 | ) |
| 359 | |
| 360 | new_git_repository( |
A. Unique TensorFlower | e006f93 | 2016-02-16 16:23:04 -0800 | [diff] [blame^] | 361 | name = "paper_dropdown_menu", |
A. Unique TensorFlower | 6b97b90 | 2016-02-16 14:53:43 -0800 | [diff] [blame] | 362 | build_file = "bower.BUILD", |
A. Unique TensorFlower | e006f93 | 2016-02-16 16:23:04 -0800 | [diff] [blame^] | 363 | remote = "https://github.com/PolymerElements/paper-dropdown-menu.git", |
A. Unique TensorFlower | 6b97b90 | 2016-02-16 14:53:43 -0800 | [diff] [blame] | 364 | tag = "v1.0.5", |
| 365 | ) |
| 366 | |
| 367 | new_git_repository( |
A. Unique TensorFlower | e006f93 | 2016-02-16 16:23:04 -0800 | [diff] [blame^] | 368 | name = "paper_header_panel", |
A. Unique TensorFlower | 6b97b90 | 2016-02-16 14:53:43 -0800 | [diff] [blame] | 369 | build_file = "bower.BUILD", |
A. Unique TensorFlower | e006f93 | 2016-02-16 16:23:04 -0800 | [diff] [blame^] | 370 | remote = "https://github.com/PolymerElements/paper-header-panel.git", |
| 371 | tag = "v1.1.2", |
| 372 | ) |
| 373 | |
| 374 | new_git_repository( |
| 375 | name = "paper_icon_button", |
| 376 | build_file = "bower.BUILD", |
| 377 | remote = "https://github.com/PolymerElements/paper-icon-button.git", |
| 378 | tag = "v1.0.5", |
| 379 | ) |
| 380 | |
| 381 | new_git_repository( |
| 382 | name = "paper_input", |
| 383 | build_file = "bower.BUILD", |
| 384 | remote = "https://github.com/PolymerElements/paper-input.git", |
| 385 | tag = "v1.0.16", |
| 386 | ) |
| 387 | |
| 388 | new_git_repository( |
| 389 | name = "paper_item", |
| 390 | build_file = "bower.BUILD", |
| 391 | remote = "https://github.com/PolymerElements/paper-item.git", |
A. Unique TensorFlower | 6b97b90 | 2016-02-16 14:53:43 -0800 | [diff] [blame] | 392 | tag = "v1.0.5", |
| 393 | ) |
| 394 | |
| 395 | new_git_repository( |
| 396 | name = "paper_material", |
| 397 | build_file = "bower.BUILD", |
| 398 | remote = "https://github.com/polymerelements/paper-material.git", |
| 399 | tag = "v1.0.6", |
| 400 | ) |
| 401 | |
| 402 | new_git_repository( |
A. Unique TensorFlower | e006f93 | 2016-02-16 16:23:04 -0800 | [diff] [blame^] | 403 | name = "paper_menu", |
A. Unique TensorFlower | 6b97b90 | 2016-02-16 14:53:43 -0800 | [diff] [blame] | 404 | build_file = "bower.BUILD", |
A. Unique TensorFlower | e006f93 | 2016-02-16 16:23:04 -0800 | [diff] [blame^] | 405 | remote = "https://github.com/PolymerElements/paper-menu.git", |
A. Unique TensorFlower | 6b97b90 | 2016-02-16 14:53:43 -0800 | [diff] [blame] | 406 | tag = "v1.1.1", |
| 407 | ) |
| 408 | |
| 409 | new_git_repository( |
A. Unique TensorFlower | e006f93 | 2016-02-16 16:23:04 -0800 | [diff] [blame^] | 410 | name = "paper_menu_button", |
A. Unique TensorFlower | 6b97b90 | 2016-02-16 14:53:43 -0800 | [diff] [blame] | 411 | build_file = "bower.BUILD", |
A. Unique TensorFlower | e006f93 | 2016-02-16 16:23:04 -0800 | [diff] [blame^] | 412 | remote = "https://github.com/polymerelements/paper-menu-button.git", |
A. Unique TensorFlower | 6b97b90 | 2016-02-16 14:53:43 -0800 | [diff] [blame] | 413 | tag = "v1.0.4", |
| 414 | ) |
| 415 | |
| 416 | new_git_repository( |
A. Unique TensorFlower | e006f93 | 2016-02-16 16:23:04 -0800 | [diff] [blame^] | 417 | name = "paper_progress", |
| 418 | build_file = "bower.BUILD", |
| 419 | remote = "https://github.com/PolymerElements/paper-progress.git", |
| 420 | tag = "v1.0.7", |
| 421 | ) |
| 422 | |
| 423 | new_git_repository( |
A. Unique TensorFlower | 6b97b90 | 2016-02-16 14:53:43 -0800 | [diff] [blame] | 424 | name = "paper_radio_button", |
| 425 | build_file = "bower.BUILD", |
| 426 | remote = "https://github.com/PolymerElements/paper-radio-button.git", |
| 427 | tag = "v1.0.10", |
Dan Smilkov | 0907b35 | 2016-02-16 11:30:12 -0800 | [diff] [blame] | 428 | ) |
| 429 | |
| 430 | new_git_repository( |
A. Unique TensorFlower | e006f93 | 2016-02-16 16:23:04 -0800 | [diff] [blame^] | 431 | name = "paper_radio_group", |
Dan Smilkov | 0907b35 | 2016-02-16 11:30:12 -0800 | [diff] [blame] | 432 | build_file = "bower.BUILD", |
A. Unique TensorFlower | e006f93 | 2016-02-16 16:23:04 -0800 | [diff] [blame^] | 433 | remote = "https://github.com/PolymerElements/paper-radio-group.git", |
| 434 | tag = "v1.0.6", |
Dan Smilkov | 0907b35 | 2016-02-16 11:30:12 -0800 | [diff] [blame] | 435 | ) |
| 436 | |
| 437 | new_git_repository( |
A. Unique TensorFlower | e006f93 | 2016-02-16 16:23:04 -0800 | [diff] [blame^] | 438 | name = "paper_ripple", |
Dan Smilkov | 0907b35 | 2016-02-16 11:30:12 -0800 | [diff] [blame] | 439 | build_file = "bower.BUILD", |
A. Unique TensorFlower | e006f93 | 2016-02-16 16:23:04 -0800 | [diff] [blame^] | 440 | remote = "https://github.com/polymerelements/paper-ripple.git", |
| 441 | tag = "v1.0.5", |
Dan Smilkov | 0907b35 | 2016-02-16 11:30:12 -0800 | [diff] [blame] | 442 | ) |
| 443 | |
| 444 | new_git_repository( |
A. Unique TensorFlower | e006f93 | 2016-02-16 16:23:04 -0800 | [diff] [blame^] | 445 | name = "paper_slider", |
Dan Smilkov | 0907b35 | 2016-02-16 11:30:12 -0800 | [diff] [blame] | 446 | build_file = "bower.BUILD", |
A. Unique TensorFlower | e006f93 | 2016-02-16 16:23:04 -0800 | [diff] [blame^] | 447 | remote = "https://github.com/PolymerElements/paper-slider.git", |
| 448 | tag = "v1.0.7", |
A. Unique TensorFlower | 6b97b90 | 2016-02-16 14:53:43 -0800 | [diff] [blame] | 449 | ) |
| 450 | |
| 451 | new_git_repository( |
A. Unique TensorFlower | e006f93 | 2016-02-16 16:23:04 -0800 | [diff] [blame^] | 452 | name = "paper_styles", |
A. Unique TensorFlower | 6b97b90 | 2016-02-16 14:53:43 -0800 | [diff] [blame] | 453 | build_file = "bower.BUILD", |
A. Unique TensorFlower | e006f93 | 2016-02-16 16:23:04 -0800 | [diff] [blame^] | 454 | remote = "https://github.com/PolymerElements/paper-styles.git", |
| 455 | tag = "v1.0.12", |
| 456 | ) |
| 457 | |
| 458 | new_git_repository( |
| 459 | name = "paper_tabs", |
| 460 | build_file = "bower.BUILD", |
| 461 | remote = "https://github.com/PolymerElements/paper-tabs.git", |
| 462 | tag = "v1.0.4", |
| 463 | ) |
| 464 | |
| 465 | new_git_repository( |
| 466 | name = "paper_toggle_button", |
| 467 | build_file = "bower.BUILD", |
| 468 | remote = "https://github.com/PolymerElements/paper-toggle-button.git", |
| 469 | tag = "v1.0.11", |
| 470 | ) |
| 471 | |
| 472 | new_git_repository( |
| 473 | name = "paper_toolbar", |
| 474 | build_file = "bower.BUILD", |
| 475 | remote = "https://github.com/PolymerElements/paper-toolbar.git", |
| 476 | tag = "v1.0.4", |
| 477 | ) |
| 478 | |
| 479 | new_git_repository( |
| 480 | name = "plottable", |
| 481 | build_file = "bower.BUILD", |
| 482 | remote = "https://github.com/palantir/plottable.git", |
| 483 | tag = "v1.16.2", |
| 484 | ) |
| 485 | |
| 486 | new_git_repository( |
| 487 | name = "polymer", |
| 488 | build_file = "bower.BUILD", |
| 489 | remote = "https://github.com/Polymer/polymer.git", |
| 490 | tag = "v1.2.4", |
| 491 | ) |
| 492 | |
| 493 | new_git_repository( |
| 494 | name = "prism", |
| 495 | build_file = "bower.BUILD", |
| 496 | remote = "https://github.com/LeaVerou/prism.git", |
| 497 | tag = "v1.4.1", |
| 498 | ) |
| 499 | |
| 500 | new_git_repository( |
| 501 | name = "prism_element", |
| 502 | build_file = "bower.BUILD", |
| 503 | remote = "https://github.com/PolymerElements/prism-element.git", |
| 504 | tag = "v1.0.3", |
A. Unique TensorFlower | 6b97b90 | 2016-02-16 14:53:43 -0800 | [diff] [blame] | 505 | ) |
| 506 | |
| 507 | new_git_repository( |
| 508 | name = "promise_polyfill", |
| 509 | build_file = "bower.BUILD", |
| 510 | remote = "https://github.com/polymerlabs/promise-polyfill.git", |
| 511 | tag = "v1.0.0", |
| 512 | ) |
| 513 | |
| 514 | new_git_repository( |
A. Unique TensorFlower | e006f93 | 2016-02-16 16:23:04 -0800 | [diff] [blame^] | 515 | name = "sinon_chai", |
| 516 | build_file = "bower.BUILD", |
| 517 | remote = "https://github.com/domenic/sinon-chai.git", |
| 518 | tag = "2.8.0", |
| 519 | ) |
| 520 | |
| 521 | new_git_repository( |
| 522 | name = "sinonjs", |
| 523 | build_file = "bower.BUILD", |
| 524 | remote = "https://github.com/blittle/sinon.js.git", |
| 525 | tag = "v1.17.1", |
| 526 | ) |
| 527 | |
| 528 | new_git_repository( |
A. Unique TensorFlower | 6b97b90 | 2016-02-16 14:53:43 -0800 | [diff] [blame] | 529 | name = "stacky", |
| 530 | build_file = "bower.BUILD", |
| 531 | remote = "https://github.com/PolymerLabs/stacky.git", |
| 532 | tag = "v1.3.2", |
| 533 | ) |
| 534 | |
| 535 | new_git_repository( |
A. Unique TensorFlower | e006f93 | 2016-02-16 16:23:04 -0800 | [diff] [blame^] | 536 | name = "svg_typewriter", |
A. Unique TensorFlower | 6b97b90 | 2016-02-16 14:53:43 -0800 | [diff] [blame] | 537 | build_file = "bower.BUILD", |
A. Unique TensorFlower | e006f93 | 2016-02-16 16:23:04 -0800 | [diff] [blame^] | 538 | remote = "https://github.com/palantir/svg-typewriter.git", |
| 539 | tag = "v0.3.0", |
A. Unique TensorFlower | 6b97b90 | 2016-02-16 14:53:43 -0800 | [diff] [blame] | 540 | ) |
| 541 | |
| 542 | new_git_repository( |
A. Unique TensorFlower | e006f93 | 2016-02-16 16:23:04 -0800 | [diff] [blame^] | 543 | name = "test_fixture", |
A. Unique TensorFlower | 6b97b90 | 2016-02-16 14:53:43 -0800 | [diff] [blame] | 544 | build_file = "bower.BUILD", |
A. Unique TensorFlower | e006f93 | 2016-02-16 16:23:04 -0800 | [diff] [blame^] | 545 | remote = "https://github.com/polymerelements/test-fixture.git", |
| 546 | tag = "v1.1.0", |
A. Unique TensorFlower | 6b97b90 | 2016-02-16 14:53:43 -0800 | [diff] [blame] | 547 | ) |
| 548 | |
| 549 | new_git_repository( |
A. Unique TensorFlower | e006f93 | 2016-02-16 16:23:04 -0800 | [diff] [blame^] | 550 | name = "web_animations_js", |
A. Unique TensorFlower | 6b97b90 | 2016-02-16 14:53:43 -0800 | [diff] [blame] | 551 | build_file = "bower.BUILD", |
A. Unique TensorFlower | e006f93 | 2016-02-16 16:23:04 -0800 | [diff] [blame^] | 552 | remote = "https://github.com/web-animations/web-animations-js.git", |
| 553 | tag = "2.1.3", |
A. Unique TensorFlower | 6b97b90 | 2016-02-16 14:53:43 -0800 | [diff] [blame] | 554 | ) |
| 555 | |
| 556 | new_git_repository( |
A. Unique TensorFlower | e006f93 | 2016-02-16 16:23:04 -0800 | [diff] [blame^] | 557 | name = "web_component_tester", |
A. Unique TensorFlower | 6b97b90 | 2016-02-16 14:53:43 -0800 | [diff] [blame] | 558 | build_file = "bower.BUILD", |
A. Unique TensorFlower | e006f93 | 2016-02-16 16:23:04 -0800 | [diff] [blame^] | 559 | remote = "https://github.com/Polymer/web-component-tester.git", |
| 560 | tag = "v4.2.0", |
A. Unique TensorFlower | 6b97b90 | 2016-02-16 14:53:43 -0800 | [diff] [blame] | 561 | ) |
| 562 | |
| 563 | new_git_repository( |
A. Unique TensorFlower | e006f93 | 2016-02-16 16:23:04 -0800 | [diff] [blame^] | 564 | name = "webcomponentsjs", |
A. Unique TensorFlower | 6b97b90 | 2016-02-16 14:53:43 -0800 | [diff] [blame] | 565 | build_file = "bower.BUILD", |
A. Unique TensorFlower | e006f93 | 2016-02-16 16:23:04 -0800 | [diff] [blame^] | 566 | remote = "https://github.com/Polymer/webcomponentsjs.git", |
| 567 | tag = "v0.7.20", |
Manjunath Kudlur | f41959c | 2015-11-06 16:27:58 -0800 | [diff] [blame] | 568 | ) |