diff options
author | dpranke <dpranke@chromium.org> | 2014-11-10 15:51:22 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-11-10 23:51:42 +0000 |
commit | cf8465db79634a28bdf66c8c518fccddf3af1ee9 (patch) | |
tree | ab9600dec63e7b05105e9f32a5c81972ef9943ab /net/BUILD.gn | |
parent | 7f47fa46bcc8c3a3d14cd70c9451a1b5869248f4 (diff) | |
download | chromium_src-cf8465db79634a28bdf66c8c518fccddf3af1ee9.zip chromium_src-cf8465db79634a28bdf66c8c518fccddf3af1ee9.tar.gz chromium_src-cf8465db79634a28bdf66c8c518fccddf3af1ee9.tar.bz2 |
This gets at least a chunk of the Mac GN build working.
With a few additional fixes in other repos, we will have substantially more working, but this'll do to at least make the bots functional.
R=brettw@chromium.org
BUG=431117
Review URL: https://codereview.chromium.org/702003002
Cr-Commit-Position: refs/heads/master@{#303540}
Diffstat (limited to 'net/BUILD.gn')
-rw-r--r-- | net/BUILD.gn | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/net/BUILD.gn b/net/BUILD.gn index 76e24a5..1815ea5 100644 --- a/net/BUILD.gn +++ b/net/BUILD.gn @@ -1065,7 +1065,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 = [ @@ -1367,4 +1368,4 @@ executable("quic_server") { ] } -} # !is_android +} # !is_android && !is_win && !is_mac |