From c25ca2e17d84919c012a583fe775e033d97f6fc7 Mon Sep 17 00:00:00 2001 From: Chinmay Garde Date: Thu, 27 Oct 2016 16:58:04 -0700 Subject: [PATCH] Add ObjC, ObjCXX and ASM files to the compilation database. (flutter/engine#3182) --- engine/src/flutter/tools/gn | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/engine/src/flutter/tools/gn b/engine/src/flutter/tools/gn index 49e3396062..acb7d883dc 100755 --- a/engine/src/flutter/tools/gn +++ b/engine/src/flutter/tools/gn @@ -173,9 +173,11 @@ def main(argv): out_dir, '-t', 'compdb', - 'cxx', 'cc', - 'mm', + 'cxx', + 'objc', + 'objcxx', + 'asm', ] contents = subprocess.check_output(compile_cmd_gen_cmd, cwd=SRC_ROOT)