summaryrefslogtreecommitdiffstats
path: root/build/all_android.gyp
diff options
context:
space:
mode:
authormichaelbai@google.com <michaelbai@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-09-26 21:40:38 +0000
committermichaelbai@google.com <michaelbai@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-09-26 21:40:38 +0000
commitec5dcded1318a4893c622015cb77d23ee52d793a (patch)
treee2f30c406c5f9ee15c9861086d417d41d7806cf9 /build/all_android.gyp
parentf36e802a8a1546a6254d1439e404e5743bd5db77 (diff)
downloadchromium_src-ec5dcded1318a4893c622015cb77d23ee52d793a.zip
chromium_src-ec5dcded1318a4893c622015cb77d23ee52d793a.tar.gz
chromium_src-ec5dcded1318a4893c622015cb77d23ee52d793a.tar.bz2
Upstream: Set build target and evnvironment for Android
BUG= TEST= Review URL: http://codereview.chromium.org/8008026 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@102807 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build/all_android.gyp')
-rw-r--r--build/all_android.gyp30
1 files changed, 30 insertions, 0 deletions
diff --git a/build/all_android.gyp b/build/all_android.gyp
new file mode 100644
index 0000000..3aa4ddd
--- /dev/null
+++ b/build/all_android.gyp
@@ -0,0 +1,30 @@
+# Copyright (c) 2011 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.
+
+# This is all.gyp file for Android to prevent breakage in Android and other
+# platform; It will be churning a lot in the short term and eventually be merged
+# into all.gyp.
+#
+# Currently only base_unittests is supported.
+
+{
+ 'targets': [
+ {
+ 'target_name': 'All',
+ 'type': 'none',
+ 'dependencies': [
+ 'util/build_util.gyp:*',
+ ],
+ }, # target_name: All
+ {
+ # The current list of tests for android.
+ # This is temporary until the full set supported.
+ 'target_name': 'android_builder_tests',
+ 'type': 'none',
+ 'dependencies': [
+ '../base/base.gyp:base_unittests',
+ ],
+ },
+ ], # targets
+}