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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 # Required by ui_unittests. | 58 # Required by ui_unittests. |
59 # TODO(wangxianzhu): It'd better let ui_unittests depend on it, but | 59 # TODO(wangxianzhu): It'd better let ui_unittests depend on it, but |
60 # this would cause circular gyp dependency which needs refactoring the | 60 # this would cause circular gyp dependency which needs refactoring the |
61 # gyps to resolve. | 61 # gyps to resolve. |
62 '../chrome/chrome_resources.gyp:packed_resources', | 62 '../chrome/chrome_resources.gyp:packed_resources', |
63 ], | 63 ], |
64 'conditions': [ | 64 'conditions': [ |
65 ['linux_breakpad==1', { | 65 ['linux_breakpad==1', { |
66 'dependencies': [ | 66 'dependencies': [ |
67 '../breakpad/breakpad.gyp:breakpad_unittests', | 67 '../breakpad/breakpad.gyp:breakpad_unittests', |
| 68 # Also compile the tools needed to deal with minidumps, they are |
| 69 # needed to run minidump tests upstream. |
| 70 '../breakpad/breakpad.gyp:dump_syms#host', |
| 71 '../breakpad/breakpad.gyp:symupload#host', |
| 72 '../breakpad/breakpad.gyp:minidump_dump#host', |
| 73 '../breakpad/breakpad.gyp:minidump_stackwalk#host' |
68 ], | 74 ], |
69 }], | 75 }], |
70 ['"<(gtest_target_type)"=="shared_library"', { | 76 ['"<(gtest_target_type)"=="shared_library"', { |
71 'dependencies': [ | 77 'dependencies': [ |
72 # The first item is simply the template. We add as a dep | 78 # The first item is simply the template. We add as a dep |
73 # to make sure it builds in ungenerated form. TODO(jrg): | 79 # to make sure it builds in ungenerated form. TODO(jrg): |
74 # once stable, transition to a test-only (optional) | 80 # once stable, transition to a test-only (optional) |
75 # target. | 81 # target. |
76 '../testing/android/native_test.gyp:native_test_apk', | 82 '../testing/android/native_test.gyp:native_test_apk', |
77 # Unit test bundles packaged as an apk. | 83 # Unit test bundles packaged as an apk. |
(...skipping 28 matching lines...) Expand all Loading... |
106 # In-progress targets that are expected to fail and are NOT run | 112 # In-progress targets that are expected to fail and are NOT run |
107 # on any bot. | 113 # on any bot. |
108 'target_name': 'android_in_progress', | 114 'target_name': 'android_in_progress', |
109 'type': 'none', | 115 'type': 'none', |
110 'dependencies': [ | 116 'dependencies': [ |
111 '../content/content.gyp:content_browsertests', | 117 '../content/content.gyp:content_browsertests', |
112 ], | 118 ], |
113 }, | 119 }, |
114 ], # targets | 120 ], # targets |
115 } | 121 } |
OLD | NEW |