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

Unified Diff: tools/android/BUILD.gn

Issue 1369153002: Port most of the remainder of //tools/android from GYP to GN (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 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: tools/android/BUILD.gn
diff --git a/tools/android/BUILD.gn b/tools/android/BUILD.gn
index 5347bf43db7bab998920423d0d28c122addd8bff..0804c19de634709e9879dc657c38e49414c45d75 100644
--- a/tools/android/BUILD.gn
+++ b/tools/android/BUILD.gn
@@ -5,10 +5,36 @@
# Intermediate target grouping the android tools needed to run native
# unittests and instrumentation test apks.
#
-# GYP: //android/tools/android_tools.gyp:android_tools
+# GYP: //tools/android/android_tools.gyp:android_tools
group("android_tools") {
deps = [
+ "//tools/android/adb_reboot",
Yaron 2015/09/28 21:35:24 Could you replace most of this with: "//tools/andr
pkotwicz 2015/09/29 14:24:52 I am not sure if the intent of the android_tools t
Yaron 2015/09/29 16:52:22 I'm fairly certain it was when we first added it :
Dirk Pranke 2015/09/29 22:41:27 You can't replace it with //tools/android/* becaus
+ "//tools/android/file_poller",
"//tools/android/forwarder2",
"//tools/android/md5sum",
+ "//tools/android/purge_ashmem",
+ "//tools/telemetry:bitmaptools($host_toolchain)",
+ ]
+}
+
+# GYP: //tools/android/android_tools.gyp:heap_profiler
+group("heap_profiler") {
+ deps = [
+ "//tools/android/heap_profiler:heap_dump",
+ "//tools/android/heap_profiler:heap_profiler",
+ ]
+}
+
+# GYP: //tools/android/android_tools.gyp:memdump
+group("memdump") {
+ deps = [
+ "//tools/android/memdump",
+ ]
+}
+
+# GYP: //tools/android/android_tools.gyp:ps_ext
+group("ps_ext") {
+ deps = [
+ "//tools/android/ps_ext",
]
}

Powered by Google App Engine
This is Rietveld 408576698