OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 # This is all.gyp file for Android to prevent breakage in Android and other | 5 # This is all.gyp file for Android to prevent breakage in Android and other |
6 # platform; It will be churning a lot in the short term and eventually be merged | 6 # platform; It will be churning a lot in the short term and eventually be merged |
7 # into all.gyp. | 7 # into all.gyp. |
8 # | |
9 # Currently only base_unittests is supported. | |
10 | 8 |
11 { | 9 { |
12 'targets': [ | 10 'targets': [ |
13 { | 11 { |
14 'target_name': 'All', | 12 'target_name': 'All', |
15 'type': 'none', | 13 'type': 'none', |
16 'dependencies': [ | 14 'dependencies': [ |
17 'util/build_util.gyp:*', | 15 'util/build_util.gyp:*', |
18 'android_builder_tests', | 16 'android_builder_tests', |
19 ], | 17 ], |
20 }, # target_name: All | 18 }, # target_name: All |
21 { | 19 { |
22 # The current list of tests for android. This is temporary | 20 # The current list of tests for android. This is temporary |
23 # until the full set supported. If adding a new test here, | 21 # until the full set supported. If adding a new test here, |
24 # please also add it to build/android/run_tests.py | 22 # please also add it to build/android/run_tests.py |
25 'target_name': 'android_builder_tests', | 23 'target_name': 'android_builder_tests', |
26 'type': 'none', | 24 'type': 'none', |
27 'dependencies': [ | 25 'dependencies': [ |
28 '../base/base.gyp:base_unittests', | 26 '../base/base.gyp:base_unittests', |
29 '../sql/sql.gyp:sql_unittests', | 27 '../sql/sql.gyp:sql_unittests', |
30 '../ipc/ipc.gyp:ipc_tests' | 28 '../ipc/ipc.gyp:ipc_tests', |
| 29 '../net/net.gyp:net_unittests', |
| 30 ], |
| 31 }, |
| 32 { |
| 33 # Experimental / in-progress targets that are expected to fail. |
| 34 'target_name': 'android_experimental', |
| 35 'type': 'none', |
| 36 'dependencies': [ |
| 37 '../webkit/webkit.gyp:pull_in_webkit_unit_tests', |
| 38 '../webkit/webkit.gyp:pull_in_DumpRenderTree', |
31 ], | 39 ], |
32 }, | 40 }, |
33 ], # targets | 41 ], # targets |
34 } | 42 } |
OLD | NEW |