diff options
author | Yoshisato Yanagisawa <yyanagisawa@google.com> | 2017-06-05 18:08:36 +0900 |
---|---|---|
committer | Yoshisato Yanagisawa <yyanagisawa@google.com> | 2017-06-14 07:57:54 +0000 |
commit | 4f3e5685fce44c359becde39141fdaf5f8d3db34 (patch) | |
tree | 7cb9ac0479963c1e0057d690dae353f20cadbb50 /core/goma.mk | |
parent | 9baf6752858db85c77ea55b4dea3e23205012219 (diff) | |
download | platform_build-4f3e5685fce44c359becde39141fdaf5f8d3db34.tar.gz platform_build-4f3e5685fce44c359becde39141fdaf5f8d3db34.tar.bz2 platform_build-4f3e5685fce44c359becde39141fdaf5f8d3db34.zip |
Set JAVAC_WRAPPER if USE_GOMA is set.
Now, people can also use goma for building javac. Let me make it by
default.
Test: USE_GOMA=true m -j4
Bug: 62334576
Change-Id: I941ce42dc0f9cbd0dcc00e6fd19368c3af11695f
Diffstat (limited to 'core/goma.mk')
-rw-r--r-- | core/goma.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/goma.mk b/core/goma.mk index 4e8318a7f4..2fb37a7525 100644 --- a/core/goma.mk +++ b/core/goma.mk @@ -45,6 +45,7 @@ ifneq ($(filter-out false,$(USE_GOMA)),) # use both ccache and gomacc. CC_WRAPPER := $(strip $(CC_WRAPPER) $(GOMA_CC)) CXX_WRAPPER := $(strip $(CXX_WRAPPER) $(GOMA_CC)) + JAVAC_WRAPPER := $(strip $(JAVAC_WRAPPER) $(GOMA_CC)) # gomacc can start goma client's daemon process automatically, but # it is safer and faster to start up it beforehand. We run this as a |