Index: build/toolchain/mac/BUILD.gn |
diff --git a/build/toolchain/mac/BUILD.gn b/build/toolchain/mac/BUILD.gn |
index e95e540b384b49b3b66b9ed02d49fba8e96bed0d..940e238179169915e59d12f9d0c7a82a7fe60ab5 100644 |
--- a/build/toolchain/mac/BUILD.gn |
+++ b/build/toolchain/mac/BUILD.gn |
@@ -59,13 +59,13 @@ template("mac_clang_toolchain") { |
command = "$cc -MMD -MF \$out.d \$defines \$includes \$cflags \$cflags_c \$cflags_pch_c -c \$in -o \$out" |
description = "CC \$out" |
depfile = "\$out.d" |
- deps = "gcc" |
+ depsformat = "gcc" |
} |
tool("cxx") { |
command = "$cxx -MMD -MF \$out.d \$defines \$includes \$cflags \$cflags_cc \$cflags_pch_cc -c \$in -o \$out" |
description = "CXX \$out" |
depfile = "\$out.d" |
- deps = "gcc" |
+ depsformat = "gcc" |
} |
tool("objc") { |
command = "$cc -MMD -MF \$out.d \$defines \$includes \$cflags \$cflags_c \$cflags_objc \$cflags_pch_objc -c \$in -o \$out" |
@@ -77,7 +77,7 @@ template("mac_clang_toolchain") { |
command = "$cxx -MMD -MF \$out.d \$defines \$includes \$cflags \$cflags_cc \$cflags_objcc \$cflags_pch_objcc -c \$in -o \$out" |
description = "OBJCXX \$out" |
depfile = "\$out.d" |
- deps = "gcc" |
+ depsformat = "gcc" |
} |
tool("alink") { |
command = "rm -f \$out && ./gyp-mac-tool filter-libtool libtool \$libtool_flags -static -o \$out \$in \$postbuilds" |