OLD | NEW |
| (Empty) |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
2 # Use of this source code is governed by a BSD-style license that can be | |
3 # found in the LICENSE file. | |
4 | |
5 { | |
6 'targets': [ | |
7 # Intermediate target grouping the android tools needed to run native | |
8 # unittests and instrumentation test apks. | |
9 { | |
10 # GN: //tools/android:android_tools | |
11 'target_name': 'android_tools', | |
12 'type': 'none', | |
13 'dependencies': [ | |
14 'adb_reboot/adb_reboot.gyp:adb_reboot', | |
15 'file_poller/file_poller.gyp:file_poller', | |
16 'forwarder2/forwarder.gyp:forwarder2', | |
17 'md5sum/md5sum.gyp:md5sum', | |
18 'memtrack_helper/memtrack_helper.gyp:memtrack_helper', | |
19 'purge_ashmem/purge_ashmem.gyp:purge_ashmem', | |
20 '../../third_party/catapult/telemetry/telemetry.gyp:*#host', | |
21 ], | |
22 }, | |
23 { | |
24 # GN: //tools/android:memdump | |
25 'target_name': 'memdump', | |
26 'type': 'none', | |
27 'dependencies': [ | |
28 'memdump/memdump.gyp:memdump', | |
29 ], | |
30 }, | |
31 { | |
32 # GN: //tools/android:memconsumer | |
33 'target_name': 'memconsumer', | |
34 'type': 'none', | |
35 'dependencies': [ | |
36 'memconsumer/memconsumer.gyp:memconsumer', | |
37 ], | |
38 }, | |
39 { | |
40 # GN: //tools/android:memtrack_helper | |
41 'target_name': 'memtrack_helper', | |
42 'type': 'none', | |
43 'dependencies': [ | |
44 'memtrack_helper/memtrack_helper.gyp:memtrack_helper', | |
45 ], | |
46 }, | |
47 { | |
48 # GN: //tools/android:ps_ext | |
49 'target_name': 'ps_ext', | |
50 'type': 'none', | |
51 'dependencies': [ | |
52 'ps_ext/ps_ext.gyp:ps_ext', | |
53 ], | |
54 }, | |
55 { | |
56 # GN: //tools/android:spnego_authenticator | |
57 'target_name': 'spnego_authenticator', | |
58 'type': 'none', | |
59 'dependencies': [ | |
60 'kerberos/kerberos.gyp:spnego_authenticator_apk', | |
61 ], | |
62 }, | |
63 { | |
64 # GN: //tools/android:customtabs_benchmark | |
65 'target_name': 'customtabs_benchmark', | |
66 'type': 'none', | |
67 'dependencies': [ | |
68 'customtabs_benchmark/customtabs_benchmark.gyp:customtabs_benchmark_apk'
, | |
69 ], | |
70 }, | |
71 { | |
72 # GN: //tools/android:audio_focus_grabber | |
73 'target_name': 'audio_focus_grabber', | |
74 'type': 'none', | |
75 'dependencies': [ | |
76 'audio_focus_grabber/audio_focus_grabber.gyp:audio_focus_grabber_apk', | |
77 ], | |
78 }, | |
79 { | |
80 # GN: //tools/android:push_apps_to_background | |
81 'target_name': 'push_apps_to_background', | |
82 'type': 'none', | |
83 'dependencies': [ | |
84 'push_apps_to_background/push_apps_to_background.gyp:push_apps_to_backgr
ound_apk', | |
85 ], | |
86 }, | |
87 ], | |
88 } | |
OLD | NEW |