diff options
Diffstat (limited to 'sdch/BUILD.gn')
-rw-r--r-- | sdch/BUILD.gn | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/sdch/BUILD.gn b/sdch/BUILD.gn index 727fb49..fb23be7 100644 --- a/sdch/BUILD.gn +++ b/sdch/BUILD.gn @@ -82,10 +82,14 @@ static_library("sdch") { # logging.h from being used). if (is_win) { cflags = [ - "/FI", "sdch/logging_forward.h", + "/FI", + "sdch/logging_forward.h", ] } else { logging_file = rebase_path("logging_forward.h", root_build_dir) - cflags = [ "-include", logging_file ] + cflags = [ + "-include", + logging_file, + ] } } |