| 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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 # Also compile the tools needed to deal with minidumps, they are | 77 # Also compile the tools needed to deal with minidumps, they are |
| 78 # needed to run minidump tests upstream. | 78 # needed to run minidump tests upstream. |
| 79 '../breakpad/breakpad.gyp:dump_syms#host', | 79 '../breakpad/breakpad.gyp:dump_syms#host', |
| 80 '../breakpad/breakpad.gyp:symupload#host', | 80 '../breakpad/breakpad.gyp:symupload#host', |
| 81 '../breakpad/breakpad.gyp:minidump_dump#host', | 81 '../breakpad/breakpad.gyp:minidump_dump#host', |
| 82 '../breakpad/breakpad.gyp:minidump_stackwalk#host' | 82 '../breakpad/breakpad.gyp:minidump_stackwalk#host' |
| 83 ], | 83 ], |
| 84 }], | 84 }], |
| 85 ['"<(gtest_target_type)"=="shared_library"', { | 85 ['"<(gtest_target_type)"=="shared_library"', { |
| 86 'dependencies': [ | 86 'dependencies': [ |
| 87 # The first item is simply the template. We add as a dep | |
| 88 # to make sure it builds in ungenerated form. TODO(jrg): | |
| 89 # once stable, transition to a test-only (optional) | |
| 90 # target. | |
| 91 '../testing/android/native_test.gyp:native_test_apk', | |
| 92 # Unit test bundles packaged as an apk. | 87 # Unit test bundles packaged as an apk. |
| 93 '../android_webview/android_webview.gyp:android_webview_unittests_ap
k', | 88 '../android_webview/android_webview.gyp:android_webview_unittests_ap
k', |
| 94 '../base/base.gyp:base_unittests_apk', | 89 '../base/base.gyp:base_unittests_apk', |
| 95 '../cc/cc_tests.gyp:cc_unittests_apk', | 90 '../cc/cc_tests.gyp:cc_unittests_apk', |
| 96 '../chrome/chrome.gyp:unit_tests_apk', | 91 '../chrome/chrome.gyp:unit_tests_apk', |
| 97 '../components/components.gyp:components_unittests_apk', | 92 '../components/components.gyp:components_unittests_apk', |
| 98 '../content/content.gyp:content_browsertests_apk', | 93 '../content/content.gyp:content_browsertests_apk', |
| 99 '../content/content.gyp:content_unittests_apk', | 94 '../content/content.gyp:content_unittests_apk', |
| 100 '../gpu/gpu.gyp:gl_tests_apk', | 95 '../gpu/gpu.gyp:gl_tests_apk', |
| 101 '../gpu/gpu.gyp:gpu_unittests_apk', | 96 '../gpu/gpu.gyp:gpu_unittests_apk', |
| (...skipping 23 matching lines...) Expand all Loading... |
| 125 { | 120 { |
| 126 # In-progress targets that are expected to fail and are NOT run | 121 # In-progress targets that are expected to fail and are NOT run |
| 127 # on any bot. | 122 # on any bot. |
| 128 'target_name': 'android_in_progress', | 123 'target_name': 'android_in_progress', |
| 129 'type': 'none', | 124 'type': 'none', |
| 130 'dependencies': [ | 125 'dependencies': [ |
| 131 ], | 126 ], |
| 132 }, | 127 }, |
| 133 ], # targets | 128 ], # targets |
| 134 } | 129 } |
| OLD | NEW |