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

Unified Diff: tools/perf/BUILD.gn

Issue 1663103004: Create wrapper scripts that set --output-directory (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@adb_gdb-explicit
Patch Set: todo + adb_gdb Created 4 years, 10 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/android/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/BUILD.gn
diff --git a/tools/perf/BUILD.gn b/tools/perf/BUILD.gn
index 056d8ea6b84a8e98feb6238b3ab946edcbb9c0b9..61c6e20f9d1950e1c68ac3ada092b20e8597b190 100644
--- a/tools/perf/BUILD.gn
+++ b/tools/perf/BUILD.gn
@@ -2,16 +2,27 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-group("perf") {
- deps = [
- "//tools/perf/chrome_telemetry_build:telemetry_chrome_test",
- ]
+if (!is_android) {
+ group("perf") {
+ deps = [
+ "//tools/perf/chrome_telemetry_build:telemetry_chrome_test",
+ ]
- data = [
- "//tools/perf/",
+ data = [
+ "//tools/perf/",
- # Field trial config
- "//tools/variations/",
- "//testing/variations/",
- ]
+ # Field trial config
+ "//tools/variations/",
+ "//testing/variations/",
+ ]
+ }
+}
+
+if (is_android) {
+ import("//build/config/android/rules.gni")
+
+ wrapper_script("run_benchmark_wrapper") {
+ target = "run_benchmark"
+ flag_name = "--chromium-output-directory"
+ }
}
« no previous file with comments | « tools/android/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698