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

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
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
« base/BUILD.gn ('K') | « base/BUILD.gn ('k') | third_party/protobuf/proto_library.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698