Index: webrtc/webrtc.gni |
diff --git a/webrtc/webrtc.gni b/webrtc/webrtc.gni |
index af4d6f97dbbc12d25a24f18755298e270d2fe0f2..7ff22466dcccf78aa153669fd6ac8ee35191afef 100644 |
--- a/webrtc/webrtc.gni |
+++ b/webrtc/webrtc.gni |
@@ -265,6 +265,7 @@ template("rtc_test") { |
"*", |
[ |
"configs", |
+ "data", |
"public_configs", |
"suppressed_configs", |
]) |
@@ -275,9 +276,16 @@ template("rtc_test") { |
if (defined(invoker.public_configs)) { |
public_configs += invoker.public_configs |
} |
+ data = [] |
+ if (defined(invoker.data)) { |
+ data += invoker.data |
+ } |
if (!build_with_chromium && is_android) { |
android_manifest = webrtc_root + "test/android/AndroidManifest.xml" |
deps += [ webrtc_root + "test:native_test_java" ] |
+ |
+ # Needed for build/android/pylib/results/presentation/test_results_presentation.py |
+ data += [ "//build/android/pylib/results/" ] |
} |
} |
} |