diff options
author | Colin Cross <ccross@android.com> | 2016-10-11 10:01:29 -0700 |
---|---|---|
committer | Colin Cross <ccross@android.com> | 2016-10-11 10:03:14 -0700 |
commit | 2458712c0b668322b005595470bc864dae9b47eb (patch) | |
tree | d65b4c5bda349ca06da9e783ee450b03fc273b41 /context.go | |
parent | 888b21f87bd38233c868eb07d7d74b474e73e3f0 (diff) | |
download | android_build_blueprint-2458712c0b668322b005595470bc864dae9b47eb.tar.gz android_build_blueprint-2458712c0b668322b005595470bc864dae9b47eb.tar.bz2 android_build_blueprint-2458712c0b668322b005595470bc864dae9b47eb.zip |
Add dependency on build= blueprint files
Blueprint files included with build= statements were not adding a
dependency to cause regenerating when they were changed.
Bug: 32085516
Test: touch external/boringssl/sources.bp && mmma -j external/boringssl
Change-Id: Id4fdf3b6788ae5c1e94547dc63ec6b55424a66a0
Diffstat (limited to 'context.go')
-rw-r--r-- | context.go | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -821,6 +821,7 @@ func (c *Context) findBuildBlueprints(dir string, build []string, } blueprints = append(blueprints, foundBlueprints) + deps = append(deps, foundBlueprints) } } |