aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/analysis/TopLevelArtifactHelper.java
Commit message (Collapse)AuthorAge
* A prototype implementation of top-level aspects.Gravatar Dmitry Lomov2015-08-20
| | | | | -- MOS_MIGRATED_REVID=101033236
* Minor cleanups in TopLevelArtifactHelper.Gravatar Eric Fellheimer2015-04-10
| | | | | -- MOS_MIGRATED_REVID=90737433
* Actually add OutputGroupProvider.DEFAULT to the set of files to be built ↵Gravatar Lukacs Berki2015-03-24
| | | | | | | | | when the default is specified (and not just filesToBuild). This is necessary so that rules that explicitly add artifacts to OutputGrovider.DEFAULT have those artifacts built when they are mentioned on the command line. -- MOS_MIGRATED_REVID=89387243
* Rename TopLevelArtifactProvider to OutputGroupProvider.Gravatar Lukacs Berki2015-03-05
| | | | | -- MOS_MIGRATED_REVID=87596401
* Move all logic to determine which output groups are to be built to ↵Gravatar Lukacs Berki2015-02-25
| | | | | | | | | BuildRequest.determineOutputGroups(). This paves the way for making --compile_only, --compilation_prerequsites_only and --save_temps into aliases for --output_groups=<something> -- MOS_MIGRATED_REVID=87138659
* Remove TempsProvider in favor of an output group.Gravatar Lukacs Berki2015-02-25
| | | | | -- MOS_MIGRATED_REVID=87136119
* Simplify the algorithm to compute top-level artifacts to build even more by ↵Gravatar Lukacs Berki2015-02-24
| | | | | | | creating a HIDDEN_TOP_LEVEL output group and putting the artifacts required for building runfiles there. -- MOS_MIGRATED_REVID=87039530
* Remove FilesToCompileProvider and CompilationPrerequisitesProvider and ↵Gravatar Lukacs Berki2015-02-24
| | | | | | | replace them with output groups. -- MOS_MIGRATED_REVID=87038548
* Clarify comment added in [].Gravatar Lukacs Berki2015-02-19
| | | | | -- MOS_MIGRATED_REVID=86689743
* Remove BaselineCoverageArtifactsProvider in favor of an output group.Gravatar Lukacs Berki2015-02-19
| | | | | | | The only slightly different thing here is that now, instead of using target.getConfiguration().isCodeCoverageEnabled() we use BuildRequest.Options.collectCodeCoverage, but the only place where this is not the same I can think of is InputFileCT, which does not have baseline coverage files anyway. -- MOS_MIGRATED_REVID=86682774
* Fix fallout from [] by introducing a distinction between "important" and ↵Gravatar Lukacs Berki2015-02-18
| | | | | | | | | | | "not important" artifacts to build. I erroneously believed that only filesToBuild is built, whereas it's actually filesToBuild + the default runfiles + some coverage artifacts. I have no idea why we need to build the default runfiles. Maybe a better plan is to ditch this distinction and instead just not build those and display the baseline coverage artifacts, but I have no idea what would break then. -- MOS_MIGRATED_REVID=86583095
* Make it possible for a Blaze command not to build the filesToRun of a ↵Gravatar Lukacs Berki2015-02-17
| | | | | | | | | configured target mentioned on the command line. Note that this exacerbates the mess in TopLevelArtifactHelper even more. Next step will be to eliminate --compile_only / --compilation_prerequisites_only / --build_default_artifacts in favor of --output_groups. However, that's quite an intrusive change and I'd rather submit that as a separate CL. -- MOS_MIGRATED_REVID=86487224
* Add a new Blaze command.Gravatar Lukacs Berki2015-02-17
| | | | | -- MOS_MIGRATED_REVID=86483943
* Remove "command artifacts" from TopLevelContextProvider.Gravatar Lukacs Berki2015-02-12
| | | | | -- MOS_MIGRATED_REVID=86177564
* Print the actual set of artifacts built for each target on the command line ↵Gravatar Lukacs Berki2015-02-12
| | | | | | | | | on stderr (or is it stdout?). This results in the removal of ~40 lines of code, yay. -- MOS_MIGRATED_REVID=86176505
* Update from Google.Gravatar Han-Wen Nienhuys2015-02-25
-- MOE_MIGRATED_REVID=85702957