Chromium Code Reviews| Index: tools/gn/bootstrap/build_aix.ninja.template |
| diff --git a/tools/gn/bootstrap/build_aix.ninja.template b/tools/gn/bootstrap/build_aix.ninja.template |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..5cd36d62c0502c403791975c5a10e69f82529668 |
| --- /dev/null |
| +++ b/tools/gn/bootstrap/build_aix.ninja.template |
| @@ -0,0 +1,19 @@ |
| +rule cc |
| + command = $cc -MMD -MF $out.d $defines $includes $cflags $cflags_c -c $in -o $out |
| + description = CC $out |
| + depfile = $out.d |
| + deps = gcc |
| + |
| +rule cxx |
| + command = $cxx -MMD -MF $out.d $defines $includes $cflags $cflags_cc -c $in -o $out |
| + description = CXX $out |
| + depfile = $out.d |
| + deps = gcc |
| + |
| +rule alink_thin |
| + command = rm -f $out && $ar rcsT $out $in |
| + description = AR $out |
| + |
| +rule link |
| + command = $ld $ldflags -o $out $in $libs $solibs |
| + description = LINK $out |