| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 # Intermediate target grouping the android tools needed to run native | 5 # Intermediate target grouping the android tools needed to run native |
| 6 # unittests and instrumentation test apks. | 6 # unittests and instrumentation test apks. |
| 7 # | 7 # |
| 8 # GYP: //tools/android/android_tools.gyp:android_tools | 8 # GYP: //tools/android/android_tools.gyp:android_tools |
| 9 group("android_tools") { | 9 group("android_tools") { |
| 10 deps = [ | 10 deps = [ |
| 11 "//build/android:wrapper_scripts", | 11 "//build/android:wrapper_scripts", |
| 12 "//third_party/android_platform:stack_wrapper", | 12 "//third_party/android_platform:stack_wrapper", |
| 13 "//third_party/catapult/telemetry:bitmaptools($host_toolchain)", | 13 "//third_party/catapult/telemetry:bitmaptools($host_toolchain)", |
| 14 "//tools/android/adb_reboot", | 14 "//tools/android/adb_reboot", |
| 15 "//tools/android/file_poller", | 15 "//tools/android/file_poller", |
| 16 "//tools/android/forwarder2", | 16 "//tools/android/forwarder2", |
| 17 "//tools/android/md5sum", | 17 "//tools/android/md5sum", |
| 18 "//tools/android/memtrack_helper:memtrack_helper", | 18 "//tools/android/memtrack_helper:memtrack_helper", |
| 19 "//tools/android/purge_ashmem", | 19 "//tools/android/purge_ashmem", |
| 20 "//tools/perf:run_benchmark_wrapper", | 20 "//tools/perf:run_benchmark_wrapper", |
| 21 ] | 21 ] |
| 22 } | 22 } |
| 23 | 23 |
| 24 # GYP: //tools/android/android_tools.gyp:heap_profiler | |
| 25 group("heap_profiler") { | |
| 26 deps = [ | |
| 27 "//tools/android/heap_profiler:heap_dump", | |
| 28 "//tools/android/heap_profiler:heap_profiler", | |
| 29 ] | |
| 30 } | |
| 31 | |
| 32 # GYP: //tools/android/android_tools.gyp:memdump | 24 # GYP: //tools/android/android_tools.gyp:memdump |
| 33 group("memdump") { | 25 group("memdump") { |
| 34 deps = [ | 26 deps = [ |
| 35 "//tools/android/memdump", | 27 "//tools/android/memdump", |
| 36 ] | 28 ] |
| 37 } | 29 } |
| 38 | 30 |
| 39 # GYP: //tools/android/android_tools.gyp:memconsumer | 31 # GYP: //tools/android/android_tools.gyp:memconsumer |
| 40 group("memconsumer") { | 32 group("memconsumer") { |
| 41 deps = [ | 33 deps = [ |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 ] | 72 ] |
| 81 } | 73 } |
| 82 | 74 |
| 83 # GYP: //tools/android/android_tools.gyp:push_apps_to_background | 75 # GYP: //tools/android/android_tools.gyp:push_apps_to_background |
| 84 group("push_apps_to_background") { | 76 group("push_apps_to_background") { |
| 85 testonly = true | 77 testonly = true |
| 86 deps = [ | 78 deps = [ |
| 87 "//tools/android/push_apps_to_background:push_apps_to_background_apk", | 79 "//tools/android/push_apps_to_background:push_apps_to_background_apk", |
| 88 ] | 80 ] |
| 89 } | 81 } |
| OLD | NEW |