@@ -248,8 +248,8 @@ For example, if you had:
248
248
}
249
249
'mixins': {
250
250
'bot': {
251
- 'gyp_defines': 'use_goma=1 dcheck_always_on =0',
252
- 'gn_args': 'use_goma=true dcheck_always_on =false',
251
+ 'gyp_defines': 'use_goma=1 rtc_dcheck_always_on =0',
252
+ 'gn_args': 'use_goma=true rtc_dcheck_always_on =false',
253
253
},
254
254
'debug': {
255
255
'gn_args': 'is_debug=true',
@@ -267,16 +267,16 @@ For example, if you had:
267
267
'gyp_defines': 'component=shared_library',
268
268
},
269
269
'trybot': {
270
- 'gyp_defines': 'dcheck_always_on =1',
271
- 'gn_args': 'dcheck_always_on =true',
270
+ 'gyp_defines': 'rtc_dcheck_always_on =1',
271
+ 'gn_args': 'rtc_dcheck_always_on =true',
272
272
}
273
273
}
274
274
}
275
275
```
276
276
277
277
and you ran ` mb gen -c linux_release_trybot //out/Release ` , it would
278
278
translate into a call to ` gyp_chromium -G Release ` with ` GYP_DEFINES ` set to
279
- ` "use_goma=true dcheck_always_on =false dcheck_always_on =true" ` .
279
+ ` "use_goma=true rtc_dcheck_always_on =false rtc_dcheck_always_on =true" ` .
280
280
281
281
(From that you can see that mb is intentionally dumb and does not
282
282
attempt to de-dup the flags, it lets gyp do that).
0 commit comments