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..3d9206d2a1eda62715912b4c146b8235fbe63f04 |
| --- /dev/null |
| +++ b/build/all_android.gyp |
| @@ -0,0 +1,31 @@ |
| +# Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| + |
|
Mark Mentovai
2011/09/26 21:14:31
No. Remove this blank line.
michaelbai
2011/09/26 21:28:11
Done.
|
| +# 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, and will be churning a lot in the short term |
| +# and eventually be merged into all.gyp prevent breakage in Android and other |
|
Mark Mentovai
2011/09/26 21:14:31
Missing “to” between “all.gyp” and “prevent?”
You
michaelbai
2011/09/26 21:28:11
Done.
|
| +# platform. |
| +# |
| +# 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 |
| +} |