BUILD.gn 183 B

12345678
  1. # For MAS build, we force defining "MAS_BUILD".
  2. config("mas_build") {
  3. if (is_mas_build) {
  4. defines = [ "IS_MAS_BUILD()=1" ]
  5. } else {
  6. defines = [ "IS_MAS_BUILD()=0" ]
  7. }
  8. }