diff options
author | ppi@chromium.org <ppi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-12-18 14:15:28 +0000 |
---|---|---|
committer | ppi@chromium.org <ppi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-12-18 14:15:28 +0000 |
commit | 7a4bb19b1571c346b1d5e4cdf4343c837816209f (patch) | |
tree | 8597d8a8086bc53c36390210071e47763355a9da /tools/android | |
parent | 5905c719a6b2eb9b2d99297197659c2bdf439a13 (diff) | |
download | chromium_src-7a4bb19b1571c346b1d5e4cdf4343c837816209f.zip chromium_src-7a4bb19b1571c346b1d5e4cdf4343c837816209f.tar.gz chromium_src-7a4bb19b1571c346b1d5e4cdf4343c837816209f.tar.bz2 |
Add dependency on Android tools to native unittests APKs targets
This patch adds dependencies on Android tools (port forwarder and md5 util used
for conditional file pushes) required to run native unittests APKs to the APKs
targets.
BUG=161257
Review URL: https://chromiumcodereview.appspot.com/11597008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@173728 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/android')
-rw-r--r-- | tools/android/android_tools.gyp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/tools/android/android_tools.gyp b/tools/android/android_tools.gyp new file mode 100644 index 0000000..43151a5 --- /dev/null +++ b/tools/android/android_tools.gyp @@ -0,0 +1,19 @@ +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +{ + 'targets': [ + # Intermediate target grouping the android tools needed to run native + # unittests apks. + { + 'target_name': 'android_tools', + 'type': 'none', + 'dependencies': [ + 'fake_dns/fake_dns.gyp:fake_dns', + 'forwarder2/forwarder.gyp:forwarder2', + 'md5sum/md5sum.gyp:md5sum', + ], + }, + ], +} |