2012-01-21 04:45:40 +04:00
|
|
|
# Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
2011-09-27 01:40:38 +04:00
|
|
|
# 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.
|
|
|
|
|
|
|
|
{
|
|
|
|
'targets': [
|
|
|
|
{
|
|
|
|
'target_name': 'All',
|
|
|
|
'type': 'none',
|
|
|
|
'dependencies': [
|
|
|
|
'util/build_util.gyp:*',
|
2011-11-30 05:05:07 +04:00
|
|
|
'android_builder_tests',
|
2011-09-27 01:40:38 +04:00
|
|
|
],
|
|
|
|
}, # target_name: All
|
|
|
|
{
|
2011-11-28 23:19:20 +04:00
|
|
|
# The current list of tests for android. This is temporary
|
|
|
|
# until the full set supported. If adding a new test here,
|
2012-01-27 05:57:10 +04:00
|
|
|
# please also add it to build/android/run_tests.py, else the
|
|
|
|
# test is not run.
|
2012-02-11 03:09:49 +04:00
|
|
|
#
|
|
|
|
# WARNING:
|
|
|
|
# Do not add targets here without communicating the implications
|
|
|
|
# on tryserver triggers and load. Discuss with jrg please.
|
2011-09-27 01:40:38 +04:00
|
|
|
'target_name': 'android_builder_tests',
|
|
|
|
'type': 'none',
|
|
|
|
'dependencies': [
|
|
|
|
'../base/base.gyp:base_unittests',
|
2012-03-13 23:40:23 +04:00
|
|
|
'../chrome/chrome.gyp:sync_unit_tests',
|
2012-03-16 03:09:34 +04:00
|
|
|
'../content/content.gyp:content_unittests',
|
2011-11-04 04:14:16 +04:00
|
|
|
'../sql/sql.gyp:sql_unittests',
|
2011-11-30 15:40:28 +04:00
|
|
|
'../ipc/ipc.gyp:ipc_tests',
|
|
|
|
'../net/net.gyp:net_unittests',
|
2012-03-19 17:53:28 +04:00
|
|
|
'../third_party/WebKit/Source/WebKit/chromium/All.gyp:*',
|
2012-02-22 00:53:08 +04:00
|
|
|
'../tools/android/fake_dns/fake_dns.gyp:fake_dns',
|
|
|
|
'../tools/android/forwarder/forwarder.gyp:forwarder',
|
2012-03-24 07:57:36 +04:00
|
|
|
# From here down: not added to run_tests.py yet.
|
|
|
|
'../jingle/jingle.gyp:jingle_unittests',
|
2012-03-01 04:25:18 +04:00
|
|
|
'../media/media.gyp:media_unittests',
|
2011-09-27 01:40:38 +04:00
|
|
|
],
|
2012-03-24 07:57:36 +04:00
|
|
|
# The Native Test Runner is not on by default.
|
|
|
|
'conditions': [
|
|
|
|
['gtest_target_type=="shared_library"', {
|
|
|
|
'dependencies': [
|
|
|
|
'../base/base.gyp:native_test_apk',
|
|
|
|
]
|
|
|
|
}]],
|
2011-09-27 01:40:38 +04:00
|
|
|
},
|
2011-12-01 01:46:12 +04:00
|
|
|
{
|
2012-01-27 05:57:10 +04:00
|
|
|
# Experimental / in-progress targets that are expected to fail
|
|
|
|
# but we still try to compile them on bots (turning the stage
|
|
|
|
# orange, not red).
|
2011-12-01 01:46:12 +04:00
|
|
|
'target_name': 'android_experimental',
|
|
|
|
'type': 'none',
|
|
|
|
'dependencies': [
|
2012-01-27 05:57:10 +04:00
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
# In-progress targets that are expected to fail and are NOT run
|
|
|
|
# on any bot.
|
|
|
|
'target_name': 'android_in_progress',
|
|
|
|
'type': 'none',
|
|
|
|
'dependencies': [
|
|
|
|
'../content/content.gyp:content_browsertests',
|
2012-02-22 03:30:13 +04:00
|
|
|
'../chrome/chrome.gyp:unit_tests',
|
2012-01-27 05:57:10 +04:00
|
|
|
'../ui/ui.gyp:gfx_unittests',
|
2011-12-01 01:46:12 +04:00
|
|
|
],
|
|
|
|
},
|
2011-09-27 01:40:38 +04:00
|
|
|
], # targets
|
|
|
|
}
|