Index: net/BUILD.gn |
diff --git a/net/BUILD.gn b/net/BUILD.gn |
index acaf231bd45ff81c36255826fb7892e5836a692b..8831ef2cb5ffc79f78ec1591403557fa53051183 100644 |
--- a/net/BUILD.gn |
+++ b/net/BUILD.gn |
@@ -1061,7 +1061,8 @@ if (is_android || is_linux) { |
# TODO(GYP) make this compile on Android, we need some native test deps done. |
# TODO(GYP) Also doesn't work on Windows; dependency on boringssl is wrong. |
-if (!is_android && !is_win) { |
+# TODO(GYP) Also doesn't work on Mac, need to figure out why not. |
+if (!is_android && !is_win && !is_mac) { |
source_set("quic_tools") { |
sources = [ |
@@ -1363,4 +1364,4 @@ executable("quic_server") { |
] |
} |
-} # !is_android |
+} # !is_android && !is_win && !is_mac |