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 20 matching lines...) Expand all Loading... |
31 # test is not run. | 31 # test is not run. |
32 # | 32 # |
33 # WARNING: | 33 # WARNING: |
34 # Do not add targets here without communicating the implications | 34 # Do not add targets here without communicating the implications |
35 # on tryserver triggers and load. Discuss with jrg please. | 35 # on tryserver triggers and load. Discuss with jrg please. |
36 'target_name': 'android_builder_tests', | 36 'target_name': 'android_builder_tests', |
37 'type': 'none', | 37 'type': 'none', |
38 'dependencies': [ | 38 'dependencies': [ |
39 '../base/android/jni_generator/jni_generator.gyp:jni_generator_tests', | 39 '../base/android/jni_generator/jni_generator.gyp:jni_generator_tests', |
40 '../base/base.gyp:base_unittests', | 40 '../base/base.gyp:base_unittests', |
| 41 '../cc/cc_tests.gyp:cc_unittests', |
41 '../chrome/chrome.gyp:unit_tests', | 42 '../chrome/chrome.gyp:unit_tests', |
42 '../content/content.gyp:content_shell_test_apk', | 43 '../content/content.gyp:content_shell_test_apk', |
43 '../content/content.gyp:content_unittests', | 44 '../content/content.gyp:content_unittests', |
44 '../gpu/gpu.gyp:gpu_unittests', | 45 '../gpu/gpu.gyp:gpu_unittests', |
45 '../ipc/ipc.gyp:ipc_tests', | 46 '../ipc/ipc.gyp:ipc_tests', |
46 '../media/media.gyp:media_unittests', | 47 '../media/media.gyp:media_unittests', |
47 '../net/net.gyp:net_unittests', | 48 '../net/net.gyp:net_unittests', |
48 '../sql/sql.gyp:sql_unittests', | 49 '../sql/sql.gyp:sql_unittests', |
49 '../sync/sync.gyp:sync_unit_tests', | 50 '../sync/sync.gyp:sync_unit_tests', |
50 '../third_party/WebKit/Source/WebKit/chromium/All.gyp:*', | 51 '../third_party/WebKit/Source/WebKit/chromium/All.gyp:*', |
(...skipping 19 matching lines...) Expand all Loading... |
70 }], | 71 }], |
71 ['"<(gtest_target_type)"=="shared_library"', { | 72 ['"<(gtest_target_type)"=="shared_library"', { |
72 'dependencies': [ | 73 'dependencies': [ |
73 # The first item is simply the template. We add as a dep | 74 # The first item is simply the template. We add as a dep |
74 # to make sure it builds in ungenerated form. TODO(jrg): | 75 # to make sure it builds in ungenerated form. TODO(jrg): |
75 # once stable, transition to a test-only (optional) | 76 # once stable, transition to a test-only (optional) |
76 # target. | 77 # target. |
77 '../testing/android/native_test.gyp:native_test_apk', | 78 '../testing/android/native_test.gyp:native_test_apk', |
78 # Unit test bundles packaged as an apk. | 79 # Unit test bundles packaged as an apk. |
79 '../base/base.gyp:base_unittests_apk', | 80 '../base/base.gyp:base_unittests_apk', |
| 81 '../cc/cc_tests.gyp:cc_unittests_apk', |
80 '../chrome/chrome.gyp:unit_tests_apk', | 82 '../chrome/chrome.gyp:unit_tests_apk', |
81 '../content/content.gyp:content_unittests_apk', | 83 '../content/content.gyp:content_unittests_apk', |
82 '../gpu/gpu.gyp:gpu_unittests_apk', | 84 '../gpu/gpu.gyp:gpu_unittests_apk', |
83 '../ipc/ipc.gyp:ipc_tests_apk', | 85 '../ipc/ipc.gyp:ipc_tests_apk', |
84 '../media/media.gyp:media_unittests_apk', | 86 '../media/media.gyp:media_unittests_apk', |
85 '../net/net.gyp:net_unittests_apk', | 87 '../net/net.gyp:net_unittests_apk', |
86 '../sql/sql.gyp:sql_unittests_apk', | 88 '../sql/sql.gyp:sql_unittests_apk', |
87 '../sync/sync.gyp:sync_unit_tests_apk', | 89 '../sync/sync.gyp:sync_unit_tests_apk', |
88 '../ui/ui.gyp:ui_unittests_apk', | 90 '../ui/ui.gyp:ui_unittests_apk', |
89 '../android_webview/android_webview.gyp:android_webview_test_apk', | 91 '../android_webview/android_webview.gyp:android_webview_test_apk', |
(...skipping 15 matching lines...) Expand all Loading... |
105 # In-progress targets that are expected to fail and are NOT run | 107 # In-progress targets that are expected to fail and are NOT run |
106 # on any bot. | 108 # on any bot. |
107 'target_name': 'android_in_progress', | 109 'target_name': 'android_in_progress', |
108 'type': 'none', | 110 'type': 'none', |
109 'dependencies': [ | 111 'dependencies': [ |
110 '../content/content.gyp:content_browsertests', | 112 '../content/content.gyp:content_browsertests', |
111 ], | 113 ], |
112 }, | 114 }, |
113 ], # targets | 115 ], # targets |
114 } | 116 } |
OLD | NEW |