Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1808)

Unified Diff: net/BUILD.gn

Issue 1227393002: Add data files for base and net. Move GN Python proto outputs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « base/test/BUILD.gn ('k') | third_party/protobuf/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/BUILD.gn
diff --git a/net/BUILD.gn b/net/BUILD.gn
index b5b3fde3a95a1e17d9af3b88e7700683014067c4..769e2b77afa3dfdabf267bf70d27b4fc89ea0eb0 100644
--- a/net/BUILD.gn
+++ b/net/BUILD.gn
@@ -1385,6 +1385,18 @@ if (!is_android && !is_mac) {
"//url",
]
+ data = [
+ "data/",
+ ]
+ if (is_linux || is_mac || is_win) {
+ deps += [
+ "//third_party/pyftpdlib/",
+ "//third_party/pywebsocket/",
+ "//third_party/tlslite/",
+ ]
+ data += [ "tools/testserver/" ]
+ }
+
if (is_desktop_linux) {
deps += [ ":epoll_quic_tools" ]
}
@@ -1652,6 +1664,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
« no previous file with comments | « base/test/BUILD.gn ('k') | third_party/protobuf/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698