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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 # | 45 # |
46 # WARNING: | 46 # WARNING: |
47 # Do not add targets here without communicating the implications | 47 # Do not add targets here without communicating the implications |
48 # on tryserver triggers and load. Discuss with jrg please. | 48 # on tryserver triggers and load. Discuss with jrg please. |
49 'target_name': 'android_builder_tests', | 49 'target_name': 'android_builder_tests', |
50 'type': 'none', | 50 'type': 'none', |
51 'dependencies': [ | 51 'dependencies': [ |
52 '../android_webview/android_webview.gyp:android_webview_unittests', | 52 '../android_webview/android_webview.gyp:android_webview_unittests', |
53 '../base/android/jni_generator/jni_generator.gyp:jni_generator_tests', | 53 '../base/android/jni_generator/jni_generator.gyp:jni_generator_tests', |
54 '../base/base.gyp:base_unittests', | 54 '../base/base.gyp:base_unittests', |
| 55 '../breakpad/breakpad.gyp:breakpad_unittests', |
| 56 # Also compile the tools needed to deal with minidumps, they are |
| 57 # needed to run minidump tests upstream. |
| 58 '../breakpad/breakpad.gyp:dump_syms#host', |
| 59 '../breakpad/breakpad.gyp:symupload#host', |
| 60 '../breakpad/breakpad.gyp:minidump_dump#host', |
| 61 '../breakpad/breakpad.gyp:minidump_stackwalk#host', |
55 '../build/android/tests/multiple_proguards/multiple_proguards.gyp:multip
le_proguards_test_apk', | 62 '../build/android/tests/multiple_proguards/multiple_proguards.gyp:multip
le_proguards_test_apk', |
56 '../cc/cc_tests.gyp:cc_perftests_apk', | 63 '../cc/cc_tests.gyp:cc_perftests_apk', |
57 '../cc/cc_tests.gyp:cc_unittests', | 64 '../cc/cc_tests.gyp:cc_unittests', |
58 '../chrome/chrome.gyp:unit_tests', | 65 '../chrome/chrome.gyp:unit_tests', |
59 '../components/components.gyp:components_unittests', | 66 '../components/components.gyp:components_unittests', |
60 '../content/content.gyp:content_browsertests', | 67 '../content/content.gyp:content_browsertests', |
61 '../content/content.gyp:content_shell_test_apk', | 68 '../content/content.gyp:content_shell_test_apk', |
62 '../content/content.gyp:content_unittests', | 69 '../content/content.gyp:content_unittests', |
63 '../gpu/gpu.gyp:gl_tests', | 70 '../gpu/gpu.gyp:gl_tests', |
64 '../gpu/gpu.gyp:gpu_unittests', | 71 '../gpu/gpu.gyp:gpu_unittests', |
65 '../ipc/ipc.gyp:ipc_tests', | 72 '../ipc/ipc.gyp:ipc_tests', |
66 '../media/media.gyp:media_unittests', | 73 '../media/media.gyp:media_unittests', |
67 '../net/net.gyp:net_unittests', | 74 '../net/net.gyp:net_unittests', |
68 '../sandbox/sandbox.gyp:sandbox_linux_unittests', | 75 '../sandbox/sandbox.gyp:sandbox_linux_unittests', |
69 '../sql/sql.gyp:sql_unittests', | 76 '../sql/sql.gyp:sql_unittests', |
70 '../sync/sync.gyp:sync_unit_tests', | 77 '../sync/sync.gyp:sync_unit_tests', |
71 '../third_party/WebKit/public/all.gyp:*', | 78 '../third_party/WebKit/public/all.gyp:*', |
72 '../tools/android/android_tools.gyp:android_tools', | 79 '../tools/android/android_tools.gyp:android_tools', |
73 '../tools/android/device_stats_monitor/device_stats_monitor.gyp:device_s
tats_monitor', | 80 '../tools/android/device_stats_monitor/device_stats_monitor.gyp:device_s
tats_monitor', |
74 '../tools/android/findbugs_plugin/findbugs_plugin.gyp:findbugs_plugin_te
st', | 81 '../tools/android/findbugs_plugin/findbugs_plugin.gyp:findbugs_plugin_te
st', |
75 '../ui/ui.gyp:ui_unittests', | 82 '../ui/ui.gyp:ui_unittests', |
76 # Required by ui_unittests. | 83 # Required by ui_unittests. |
77 # TODO(wangxianzhu): It'd better let ui_unittests depend on it, but | 84 # TODO(wangxianzhu): It'd better let ui_unittests depend on it, but |
78 # this would cause circular gyp dependency which needs refactoring the | 85 # this would cause circular gyp dependency which needs refactoring the |
79 # gyps to resolve. | 86 # gyps to resolve. |
80 '../chrome/chrome_resources.gyp:packed_resources', | 87 '../chrome/chrome_resources.gyp:packed_resources', |
81 ], | 88 ], |
82 'conditions': [ | 89 'conditions': [ |
83 ['linux_breakpad==1', { | |
84 'dependencies': [ | |
85 '../breakpad/breakpad.gyp:breakpad_unittests', | |
86 # Also compile the tools needed to deal with minidumps, they are | |
87 # needed to run minidump tests upstream. | |
88 '../breakpad/breakpad.gyp:dump_syms#host', | |
89 '../breakpad/breakpad.gyp:symupload#host', | |
90 '../breakpad/breakpad.gyp:minidump_dump#host', | |
91 '../breakpad/breakpad.gyp:minidump_stackwalk#host' | |
92 ], | |
93 }], | |
94 ['"<(gtest_target_type)"=="shared_library"', { | 90 ['"<(gtest_target_type)"=="shared_library"', { |
95 'dependencies': [ | 91 'dependencies': [ |
96 # Unit test bundles packaged as an apk. | 92 # Unit test bundles packaged as an apk. |
97 '../android_webview/android_webview.gyp:android_webview_unittests_ap
k', | 93 '../android_webview/android_webview.gyp:android_webview_unittests_ap
k', |
98 '../base/base.gyp:base_unittests_apk', | 94 '../base/base.gyp:base_unittests_apk', |
99 '../cc/cc_tests.gyp:cc_unittests_apk', | 95 '../cc/cc_tests.gyp:cc_unittests_apk', |
100 '../chrome/chrome.gyp:unit_tests_apk', | 96 '../chrome/chrome.gyp:unit_tests_apk', |
101 '../components/components.gyp:components_unittests_apk', | 97 '../components/components.gyp:components_unittests_apk', |
102 '../content/content.gyp:content_browsertests_apk', | 98 '../content/content.gyp:content_browsertests_apk', |
103 '../content/content.gyp:content_unittests_apk', | 99 '../content/content.gyp:content_unittests_apk', |
(...skipping 27 matching lines...) Expand all Loading... |
131 { | 127 { |
132 # In-progress targets that are expected to fail and are NOT run | 128 # In-progress targets that are expected to fail and are NOT run |
133 # on any bot. | 129 # on any bot. |
134 'target_name': 'android_in_progress', | 130 'target_name': 'android_in_progress', |
135 'type': 'none', | 131 'type': 'none', |
136 'dependencies': [ | 132 'dependencies': [ |
137 ], | 133 ], |
138 }, | 134 }, |
139 ], # targets | 135 ], # targets |
140 } | 136 } |
OLD | NEW |