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

Unified Diff: tools/perf/chrome_telemetry_build/BUILD.gn

Issue 1954593002: Ported telemetry_gpu_test target to Android. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Making telemetry_unittests test only. Created 4 years, 7 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 | « tools/perf/BUILD.gn ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/chrome_telemetry_build/BUILD.gn
diff --git a/tools/perf/chrome_telemetry_build/BUILD.gn b/tools/perf/chrome_telemetry_build/BUILD.gn
index 9bc27640947de175fcb17a7f2a2368bd60b3906b..5c7b2c5a8e669d333a5f5fef1617ac35d51c13cb 100644
--- a/tools/perf/chrome_telemetry_build/BUILD.gn
+++ b/tools/perf/chrome_telemetry_build/BUILD.gn
@@ -24,12 +24,20 @@ if (is_win) {
}
group("telemetry_chrome_test") {
- data_deps = [
- # TODO(kbr): this used to be "//chrome". Had to change this to
- # chrome_initial temporarily to work around crbug.com/536192.
- "//chrome:chrome_initial",
- "//third_party/catapult/telemetry:bitmaptools",
- ]
+ testonly = true
+
+ if (is_android) {
+ data_deps = [
+ "//content/shell:content_shell",
+ ]
+ } else {
+ data_deps = [
+ # TODO(kbr): this used to be "//chrome". Had to change this to
+ # chrome_initial temporarily to work around crbug.com/536192.
+ "//chrome:chrome_initial",
+ "//third_party/catapult/telemetry:bitmaptools",
+ ]
+ }
data = [
"//tools/perf/chrome_telemetry_build/",
« no previous file with comments | « tools/perf/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698