blob: 3aa4ddd2e2853eacb294dc8161a0a9659365203b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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
}
|