Disable goma/ccache with USE_XXX=false

Bug: 26009364
Change-Id: Ic0001e6fdc62ca2373309bfe3127c5fec64d2d85
This commit is contained in:
Shinichiro Hamaji 2015-12-18 15:26:17 +09:00
parent e63d3328df
commit d78cba12fe
2 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@
# limitations under the License.
#
ifneq ($(USE_CCACHE),)
ifneq ($(filter-out false,$(USE_CCACHE)),)
# The default check uses size and modification time, causing false misses
# since the mtime depends when the repo was checked out
export CCACHE_COMPILERCHECK := content

View File

@ -15,7 +15,7 @@
#
# Notice: this works only with Google's Goma build infrastructure.
ifneq ($(USE_GOMA),)
ifneq ($(filter-out false,$(USE_GOMA)),)
# Check if USE_NINJA is not false because GNU make won't work well
# with goma. Note this file is evaluated twice, once by GNU make and
# once by kati with USE_NINJA=false. We do this check in the former