aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
* --Gravatar Michajlo Matijkiw2015-07-21
| | | | MOS_MIGRATED_REVID=98737473
* Fixed bug where blaze run with the --color=no flag was still printing out in ↵Gravatar Googler2015-07-21
| | | | | | | color when the build fails. -- MOS_MIGRATED_REVID=98736813
* Fix dashboard buildGravatar Kristina Chodorow2015-07-21
| | | | | -- MOS_MIGRATED_REVID=98733621
* Fix symlink test flagGravatar Kristina Chodorow2015-07-21
| | | | | | | -l isn't actually an option test takes. -- MOS_MIGRATED_REVID=98731906
* Use Apache Commons for reading tar filesGravatar Kristina Chodorow2015-07-21
| | | | | | | Fixes #305. -- MOS_MIGRATED_REVID=98730375
* Remove some dead code that made Bazel croak on nontrivial Android builds.Gravatar Lukacs Berki2015-07-21
| | | | | -- MOS_MIGRATED_REVID=98730087
* Improved format of Skylark documentation:Gravatar Florian Weikert2015-07-21
| | | | | | | | - Default values of optional method parameters are displayed - Removed leading * in argument list -- MOS_MIGRATED_REVID=98730004
* Set PATH and TMPDIR in genrule / Skylark's actionGravatar Damien Martin-Guillerez2015-07-21
| | | | | | | | PATH and TMPDIR were unset inside genrule / Skylark's action even if use_default_shell_env is set. -- MOS_MIGRATED_REVID=98729334
* Fix link syntax in contributing.htmlGravatar Damien Martin-Guillerez2015-07-21
| | | | | -- MOS_MIGRATED_REVID=98726499
* Get android example to build on OS XGravatar Steven Dee2015-07-21
| | | | | | -- Reviewed-on: https://github.com/google/bazel/pull/314 MOS_MIGRATED_REVID=98719433
* Rollback of commit b8d1e700841d8aa7186ccbdfb0eba53e12a672d0.Gravatar Lukacs Berki2015-07-21
| | | | | | | | | | | | | | | *** Reason for rollback *** Breaks most of the iOS targets on our continuous build. *** Original change description *** Move actoolzip, momczip and swiftstdlibtoolzip to tools/xcode and convert them to scripts instead of java apps. RELNOTES: actoolzip, momczip and swiftstdlibtoolzip have all been made into bash scripts and have been renamed to actoolwrapper, momcwrapper and swiftstdlibtoolwrapper respectively. The old versions will be deleted in a later change. -- MOS_MIGRATED_REVID=98716081
* Improvements to skylark testsGravatar Francois-Rene Rideau2015-07-21
| | | | | | | | | | Debug the rule_test generates feature. Implement the rule_test provides feature, using regexp on the provider repr. Also, add docstrings and reformat to comply with Google python style guide. -- MOS_MIGRATED_REVID=98687673
* Simplify Target Names in generated Xcode projects.Gravatar Googler2015-07-21
| | | | | | | | | | Compare: https://screenshot.googleplex.com/hzmgwbpUeuf RELNOTES:Target names in Xcode projects have been simplified. This may require recreating any schemes that you have defined. -- MOS_MIGRATED_REVID=98664733
* Delete unnecessary example PrenotCalculatorInstruments.Gravatar Michael Thvedt2015-07-21
| | | | | -- MOS_MIGRATED_REVID=98640520
* Fix up registerEnvironmentPlistAction for bazel on Mac.Gravatar Googler2015-07-21
| | | | | | | | | When run under bazel on my local mac, the environment variables are cleared. This causes TMPDIR to be "" which causes this script to fail. Create a tempdir and use it instead of depending on TMPDIR. Remove tempdir at end to clean up. Quote all paths just to be extra safe that somebody hasn't named their Xcode something wonky. RELNOTES:NONE -- MOS_MIGRATED_REVID=98640412
* Add --output_filter optionGravatar Kristina Chodorow2015-07-21
| | | | | | | Fixes #309. -- MOS_MIGRATED_REVID=98639996
* Removed ValidationTests#testLoadWithTooManySlashes() since it was an ↵Gravatar Florian Weikert2015-07-21
| | | | | | | inferior copy of ParserTest#testLoadDoubleSlashBuild() and ParserTest#testLoadDoubleSlashSkylark() -- MOS_MIGRATED_REVID=98636093
* Add com.android.tools.layoutlib:layoutlib-api to android_common.Gravatar Lukacs T. Berki2015-07-21
| | | | Turns out, this is required by AndroidResourceProcessingAction.
* Added an additional test for empty actions in Skylark.Gravatar Florian Weikert2015-07-20
| | | | | | | Currently, the best (and only?) way to access an empty action inside a test is via an extra action and an action listener. -- MOS_MIGRATED_REVID=98628097
* Make --android_crosstool_top default to the android_ndk_repository specified ↵Gravatar Lukacs Berki2015-07-20
| | | | | | | | | | | | | in the WORKSPACE file. The error reporting if an android_ndk_repository rule is present is not very user-friendly (it just uses the non-Android toolchain, resulting in compile errors) but given that --android_crosstool_top is an interim solution until we get reasonable multi-platform support, I suppose it's fine. As a side effect, instead of prefixing fat APK output directories with "fat-apk-", we prefix Android output directories with "android-". This makes it possible to build Android apps with zero command line options. Rejoice! -- MOS_MIGRATED_REVID=98624120
* Add an example Android app and a README.md file that details how to compile it.Gravatar Lukacs Berki2015-07-20
| | | | | -- MOS_MIGRATED_REVID=98621744
* Fix up some faulty documentation.Gravatar Googler2015-07-20
| | | | | -- MOS_MIGRATED_REVID=98507575
* Remove two methods from FoundationTestCase.Gravatar Ulf Adams2015-07-17
| | | | | | | | One of them moves up to BuildViewTestCase, the other is done as a static import where needed. -- MOS_MIGRATED_REVID=98484132
* Rewrite test to JUnit 4.Gravatar Ulf Adams2015-07-17
| | | | | -- MOS_MIGRATED_REVID=98483469
* Skylark: Implemented ctx.empty_action() to create actions that neither ↵Gravatar Florian Weikert2015-07-17
| | | | | | | execute a command nor produce any output, but that are useful for inserting "extra actions". -- MOS_MIGRATED_REVID=98481888
* Move another test into open source blaze.Gravatar Ulf Adams2015-07-17
| | | | | -- MOS_MIGRATED_REVID=98478887
* Make android_ndk_repository work on case-insensitive OS X file systems by ↵Gravatar Lukacs Berki2015-07-17
| | | | | | | | | | | | | not creating a BUILD file next to the build/ directory of the NDK. Fixes #297. Note that a directory called build/ or BUILD/ is not taken as the root of a package (it must be a file). Also drive-by fix the fallout from the recent changes to how Jack/Jill is handled. -- MOS_MIGRATED_REVID=98476274
* Add a couple of flags to the CROSSTOOL file, especially for -c opt.Gravatar Ulf Adams2015-07-17
| | | | | | | | | Fixes #99. -- Change-Id: I9b81be7f8efc7f7e57b458fe91cfbabcaaee419d Reviewed-on: https://bazel-review.googlesource.com/#/c/1632 MOS_MIGRATED_REVID=98472498
* Sets the correct properties in the Info.plist, based on the environment that theGravatar Googler2015-07-17
| | | | | | | rule was executed. -- MOS_MIGRATED_REVID=98417915
* Invalidate external repository files when the WORKSPACE changesGravatar Kristina Chodorow2015-07-17
| | | | | | | Fixes #236. -- MOS_MIGRATED_REVID=98402890
* Fix missing tool target in tools/objcGravatar Damien Martin-Guillerez2015-07-17
| | | | | | | Tested by patched in my local Bazel. -- MOS_MIGRATED_REVID=98401341
* Add Makani to the list of Bazel usersGravatar Damien Martin-Guillerez2015-07-17
| | | | | | | Also creates a "corporate users" list. -- MOS_MIGRATED_REVID=98399779
* Add tests for dashGravatar Kristina Chodorow2015-07-17
| | | | | | | Time-traveling test-driven-development. -- MOS_MIGRATED_REVID=98399070
* Add git_repository and new_git_repository workspace rules.Gravatar David Chen2015-07-17
| | | | | | | TESTED=Added integration tests. -- MOS_MIGRATED_REVID=98396197
* Say explicitly that --config=X ignores non-existent .rc file config sections.Gravatar Laszlo Csomor2015-07-17
| | | | | -- MOS_MIGRATED_REVID=98394325
* Document that the "run" command closes stdin.Gravatar Philipp Wollermann2015-07-17
| | | | | -- MOS_MIGRATED_REVID=98393704
* Add a type attribute to {new_,}http_archiveGravatar Damien Martin-Guillerez2015-07-17
| | | | | | | | | | | Some HTTP archive do not ends with the good type. This change add a type attribute that defines an extension to be added to the filename when downloading. -- Change-Id: I7bb29da8c2f418fc5586b081abc519cb08221a0d Reviewed-on: https://bazel-review.googlesource.com/#/c/1631/ MOS_MIGRATED_REVID=98391062
* Improve debugging message in case of unexpected getBatch <-> directDeps ↵Gravatar Janak Ramakrishnan2015-07-17
| | | | | | | mismatch. -- MOS_MIGRATED_REVID=98388239
* Add repository fallback on Maven CentralGravatar Kristina Chodorow2015-07-17
| | | | | -- MOS_MIGRATED_REVID=98387436
* Decompose BuildView.getDirectPrerequisites to allow access to Dependencies.Gravatar Michael Staib2015-07-17
| | | | | | | | This change should essentially be a no-op for callers of getDirectPrerequisites, but opens the opportunity to use the Dependency iterable directly. -- MOS_MIGRATED_REVID=98383758
* Replaced other occurrences of Objects#toStringHelper with ↵Gravatar Googler2015-07-17
| | | | | | | MoreObjects#toStringHelper -- MOS_MIGRATED_REVID=98383075
* Log information about the baseline and new View passed to DiffAwarness#getDiff.Gravatar Nathan Harmata2015-07-17
| | | | | -- MOS_MIGRATED_REVID=98382658
* Rollback of commit 69d20b26b50360221849a4860265150f9c66ef25.Gravatar Lukacs Berki2015-07-17
| | | | | | | | | | | | | *** Reason for rollback *** Breaks LIPO, [] *** Original change description *** Blaze changes to support LLVM profile feedback. -- MOS_MIGRATED_REVID=98382087
* Add jgit and slf4j to third_partyGravatar Philipp Wollermann2015-07-17
|
* Give Dependency a valid equals/hashCode/toString set.Gravatar Michael Staib2015-07-16
| | | | | -- MOS_MIGRATED_REVID=98381886
* Description redacted.Gravatar Googler2015-07-16
| | | | | -- MOS_MIGRATED_REVID=98347349
* Remove low-value warning about alwayslink requiring srcs.Gravatar Han-Wen Nienhuys2015-07-16
| | | | | -- MOS_MIGRATED_REVID=98314264
* Add a simple resolver for Maven repositoriesGravatar Kristina Chodorow2015-07-16
| | | | | | | Also adds support for submodules and removes a spammy warning. -- MOS_MIGRATED_REVID=98306456
* Move Jack's tools into AndroidSdkProvider.Gravatar Michael Staib2015-07-16
| | | | | | | | | | | | | | | | | This also eliminates the JackRule, which is no longer necessary, as its sole purpose was to allow Jack's tools to be found. This is now part of AndroidSdkProvider, like all other Android tools. For now, the new attributes on android_sdk are optional and default to their old values. In the future, the new attributes will become mandatory with no defaults, like the other attributes on that rule. Also fixes a bug where errors found during AndroidCommon.initJava would not result in a null return from init, previously obscured by the early return from initJack. -- MOS_MIGRATED_REVID=98305022
* Pass filter for what events should be stored in the Skyframe graph into the ↵Gravatar Janak Ramakrishnan2015-07-16
| | | | | | | ParallelEvaluator, to allow users to customize which events they want to store. -- MOS_MIGRATED_REVID=98299604