OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 | 8 |
9 { | 9 { |
10 'variables': { | 10 'variables': { |
(...skipping 18 matching lines...) Expand all Loading... |
29 # See http://crbug.com/159203 | 29 # See http://crbug.com/159203 |
30 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio
n_javalib', | 30 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio
n_javalib', |
31 ], | 31 ], |
32 }, # target_name: All | 32 }, # target_name: All |
33 { | 33 { |
34 'target_name': 'all_webkit', | 34 'target_name': 'all_webkit', |
35 'type': 'none', | 35 'type': 'none', |
36 'dependencies': [ | 36 'dependencies': [ |
37 '../third_party/WebKit/public/all.gyp:all_blink', | 37 '../third_party/WebKit/public/all.gyp:all_blink', |
38 '../content/content_shell_and_tests.gyp:content_shell_apk', | 38 '../content/content_shell_and_tests.gyp:content_shell_apk', |
| 39 '../breakpad/breakpad.gyp:dump_syms', |
| 40 '../breakpad/breakpad.gyp:minidump_stackwalk', |
39 ], | 41 ], |
40 }, # target_name: all_webkit | 42 }, # target_name: all_webkit |
41 { | 43 { |
42 # The current list of tests for android. This is temporary | 44 # The current list of tests for android. This is temporary |
43 # until the full set supported. If adding a new test here, | 45 # until the full set supported. If adding a new test here, |
44 # please also add it to build/android/pylib/gtest/gtest_config.py, | 46 # please also add it to build/android/pylib/gtest/gtest_config.py, |
45 # else the test is not run. | 47 # else the test is not run. |
46 # | 48 # |
47 # WARNING: | 49 # WARNING: |
48 # Do not add targets here without communicating the implications | 50 # Do not add targets here without communicating the implications |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
146 { | 148 { |
147 # In-progress targets that are expected to fail and are NOT run | 149 # In-progress targets that are expected to fail and are NOT run |
148 # on any bot. | 150 # on any bot. |
149 'target_name': 'android_in_progress', | 151 'target_name': 'android_in_progress', |
150 'type': 'none', | 152 'type': 'none', |
151 'dependencies': [ | 153 'dependencies': [ |
152 ], | 154 ], |
153 }, | 155 }, |
154 ], # targets | 156 ], # targets |
155 } | 157 } |
OLD | NEW |