We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0aa1003 commit 79253e7Copy full SHA for 79253e7
tools/gn
@@ -228,7 +228,11 @@ def to_gn_args(args):
228
('cygwin', 'win')):
229
goma_home_dir = os.path.join('c:\\', 'src', 'goma', 'goma-win64')
230
231
- if args.goma and goma_dir:
+ if args.target_os == 'wasm' or args.web:
232
+ gn_args['use_goma'] = False
233
+ gn_args['goma_dir'] = None
234
+ print('Disabling GOMA for wasm builds, it is not supported yet.')
235
+ elif args.goma and goma_dir:
236
gn_args['use_goma'] = True
237
gn_args['goma_dir'] = goma_dir
238
elif args.goma and os.path.exists(goma_home_dir):
0 commit comments