Index: third_party/libxml/BUILD.gn |
diff --git a/third_party/libxml/BUILD.gn b/third_party/libxml/BUILD.gn |
index 73bb3dcfb5db24fb3730ce48968e265c6f3607f7..17ea09aa66864721f39639cb374c3561899bf2ea 100644 |
--- a/third_party/libxml/BUILD.gn |
+++ b/third_party/libxml/BUILD.gn |
@@ -110,6 +110,7 @@ static_library("libxml") { |
"src/schematron.c", |
"src/threads.c", |
"src/tree.c", |
+ |
#"src/trio.c", |
#"src/trio.h", |
#"src/triodef.h", |
@@ -151,9 +152,7 @@ static_library("libxml") { |
] |
if (is_win) { |
- cflags_c = [ |
- "/wd4101", # Unreferenced local variable. |
- ] |
+ cflags_c = [ "/wd4101" ] # Unreferenced local variable. |
} else if (is_mac || is_android) { |
# http://www.xmlsoft.org/threads.html says that this is required when using |
# libxml from several threads, which can possibly happen in chrome. On |
@@ -181,7 +180,5 @@ static_library("libxml") { |
] |
} |
- include_dirs = [ |
- "$os_include", |
- ] |
+ include_dirs = [ "$os_include" ] |
} |