Chromium Code Reviews| Index: build/all_android.gyp |
| diff --git a/build/all_android.gyp b/build/all_android.gyp |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..21d98b6312a8db89fe60b4cab26e043171d28338 |
| --- /dev/null |
| +++ b/build/all_android.gyp |
| @@ -0,0 +1,25 @@ |
| +# 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, currently only base_unittests is supportted. |
|
John Grabowski
2011/09/23 19:40:31
Add TODO saying we have plays to integrate with th
Peter Beverloo
2011/09/23 21:55:28
nit: supportted -> supported
michaelbai
2011/09/26 17:15:13
Done.
michaelbai
2011/09/26 17:15:13
Done.
|
| +{ |
| + '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 supportted. |
|
Peter Beverloo
2011/09/23 21:55:28
nit: supportted -> supported
michaelbai
2011/09/26 17:15:13
Done.
|
| + 'target_name': 'android_builder_tests', |
| + 'type': 'none', |
| + 'dependencies': [ |
| + '../base/base.gyp:base_unittests', |
| + ], |
| + }, |
| + ], # targets |
| +} |