| 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/",
|
|
|