aboutsummaryrefslogtreecommitdiffhomepage
path: root/zlib.BUILD
Commit message (Collapse)AuthorAge
* Merge changes from github.Gravatar Andrew Harp2016-12-08
| | | | | | | | Additionally: - change single quotes to double quotes to make path rewriting easier - guard windows lib reference with PLATFORM_WINDOWS - fixed failing kmeans test Change: 141515942
* Suppress many compiler warningsGravatar Justine Tunney2016-10-18
| | | | | | | | | This includes ~200 -Wsign-compare warnings in TensorFlow, 15 -Wimplicit-function-declaration warnings in zlib, and more. I'm also working on getting rid of 400 protobuf warnings here: google/protobuf#2261 Change: 136555503
* Optimize Bazel external dependenciesGravatar Justine Tunney2016-09-21
| | | | | | | | | | | | | | | | | | | | | | This change does the following: - Always use {,new_}http_archive rather than git_repository - Make liberal use of strip_prefix - Clarify licenses() in BUILD files - On POSIX include headers like a normal C/C++ program This change accomplishes the following: - Reduce download size >100MB: The biggest culprit is grpc which has tens of thousands of commits in its GitHub repository. - Reduce disk size >200MB: On disk, grpc takes up 250MB when cloned even though the tarball of the git repo is 3.2MB. By never using git externals, we save on network. - Consume less cpu: Cloning git repositories is much slower than downloading and extracting a tarball. Change: 133895791
* Add a new contrib/avro directory and the initial schema that resemblesGravatar A. Unique TensorFlower2016-05-27
tf.train.Example. Change: 123445810