Chromium Code Reviews| Index: net/BUILD.gn |
| diff --git a/net/BUILD.gn b/net/BUILD.gn |
| index 7a2b9721f33981ae0ae6c4881dcba1b113099c57..5f9f3c04efa2f9bb2cc32e666167b8181df7ab4b 100644 |
| --- a/net/BUILD.gn |
| +++ b/net/BUILD.gn |
| @@ -1340,6 +1340,20 @@ if (!is_android && !is_mac) { |
| "//url", |
| ] |
| + data = [ |
| + "data/", |
| + ] |
| + if (is_linux || is_mac || is_win) { |
| + data += [ |
| + "$root_out_dir/pyproto/google/", |
| + "tools/testserver/", |
| + "//third_party/tlslite/", |
| + "//testing/test_env.py", |
|
Dirk Pranke
2015/07/14 00:45:22
same comment re: test_env.py .
|
| + "//third_party/pyftpdlib/", |
| + "//third_party/pywebsocket/", |
| + ] |
| + } |
| + |
| if (is_desktop_linux) { |
| deps += [ ":epoll_quic_tools" ] |
| } |
| @@ -1605,6 +1619,15 @@ if (!is_android && !is_mac) { |
| ] |
| deps -= [ "//base:i18n" ] |
| } |
| + |
| + # Symbols for crashes when running tests on swarming. |
| + if (symbol_level > 0) { |
| + if (is_win) { |
| + data += [ "$root_out_dir/net_unittests.exe.pdb" ] |
| + } else if (is_mac) { |
| + data += [ "$root_out_dir/net_unittests.dSYM/" ] |
| + } |
| + } |
| } |
| } # !is_android && !is_win && !is_mac |