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: //android/tools/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 "//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
| |
12 "//tools/android/file_poller", | |
11 "//tools/android/forwarder2", | 13 "//tools/android/forwarder2", |
12 "//tools/android/md5sum", | 14 "//tools/android/md5sum", |
15 "//tools/android/purge_ashmem", | |
16 "//tools/telemetry:bitmaptools($host_toolchain)", | |
13 ] | 17 ] |
14 } | 18 } |
19 | |
20 # GYP: //tools/android/android_tools.gyp:heap_profiler | |
21 group("heap_profiler") { | |
22 deps = [ | |
23 "//tools/android/heap_profiler:heap_dump", | |
24 "//tools/android/heap_profiler:heap_profiler", | |
25 ] | |
26 } | |
27 | |
28 # GYP: //tools/android/android_tools.gyp:memdump | |
29 group("memdump") { | |
30 deps = [ | |
31 "//tools/android/memdump", | |
32 ] | |
33 } | |
34 | |
35 # GYP: //tools/android/android_tools.gyp:ps_ext | |
36 group("ps_ext") { | |
37 deps = [ | |
38 "//tools/android/ps_ext", | |
39 ] | |
40 } | |
OLD | NEW |