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 26 matching lines...) Expand all Loading... |
37 # test is not run. | 37 # test is not run. |
38 # | 38 # |
39 # WARNING: | 39 # WARNING: |
40 # Do not add targets here without communicating the implications | 40 # Do not add targets here without communicating the implications |
41 # on tryserver triggers and load. Discuss with jrg please. | 41 # on tryserver triggers and load. Discuss with jrg please. |
42 'target_name': 'android_builder_tests', | 42 'target_name': 'android_builder_tests', |
43 'type': 'none', | 43 'type': 'none', |
44 'dependencies': [ | 44 'dependencies': [ |
45 '../base/android/jni_generator/jni_generator.gyp:jni_generator_tests', | 45 '../base/android/jni_generator/jni_generator.gyp:jni_generator_tests', |
46 '../base/base.gyp:base_unittests', | 46 '../base/base.gyp:base_unittests', |
| 47 '../cc/cc_tests.gyp:cc_unittests', |
47 '../chrome/chrome.gyp:unit_tests', | 48 '../chrome/chrome.gyp:unit_tests', |
48 '../content/content.gyp:content_shell_test_apk', | 49 '../content/content.gyp:content_shell_test_apk', |
49 '../content/content.gyp:content_unittests', | 50 '../content/content.gyp:content_unittests', |
50 '../gpu/gpu.gyp:gpu_unittests', | 51 '../gpu/gpu.gyp:gpu_unittests', |
51 '../ipc/ipc.gyp:ipc_tests', | 52 '../ipc/ipc.gyp:ipc_tests', |
52 '../media/media.gyp:media_unittests', | 53 '../media/media.gyp:media_unittests', |
53 '../net/net.gyp:net_unittests', | 54 '../net/net.gyp:net_unittests', |
54 '../sql/sql.gyp:sql_unittests', | 55 '../sql/sql.gyp:sql_unittests', |
55 '../sync/sync.gyp:sync_unit_tests', | 56 '../sync/sync.gyp:sync_unit_tests', |
56 '../third_party/WebKit/Source/WebKit/chromium/All.gyp:*', | 57 '../third_party/WebKit/Source/WebKit/chromium/All.gyp:*', |
(...skipping 19 matching lines...) Expand all Loading... |
76 }], | 77 }], |
77 ['"<(gtest_target_type)"=="shared_library"', { | 78 ['"<(gtest_target_type)"=="shared_library"', { |
78 'dependencies': [ | 79 'dependencies': [ |
79 # The first item is simply the template. We add as a dep | 80 # The first item is simply the template. We add as a dep |
80 # to make sure it builds in ungenerated form. TODO(jrg): | 81 # to make sure it builds in ungenerated form. TODO(jrg): |
81 # once stable, transition to a test-only (optional) | 82 # once stable, transition to a test-only (optional) |
82 # target. | 83 # target. |
83 '../testing/android/native_test.gyp:native_test_apk', | 84 '../testing/android/native_test.gyp:native_test_apk', |
84 # Unit test bundles packaged as an apk. | 85 # Unit test bundles packaged as an apk. |
85 '../base/base.gyp:base_unittests_apk', | 86 '../base/base.gyp:base_unittests_apk', |
| 87 '../cc/cc_tests.gyp:cc_unittests_apk', |
86 '../chrome/chrome.gyp:unit_tests_apk', | 88 '../chrome/chrome.gyp:unit_tests_apk', |
87 '../content/content.gyp:content_unittests_apk', | 89 '../content/content.gyp:content_unittests_apk', |
88 '../gpu/gpu.gyp:gpu_unittests_apk', | 90 '../gpu/gpu.gyp:gpu_unittests_apk', |
89 '../ipc/ipc.gyp:ipc_tests_apk', | 91 '../ipc/ipc.gyp:ipc_tests_apk', |
90 '../media/media.gyp:media_unittests_apk', | 92 '../media/media.gyp:media_unittests_apk', |
91 '../net/net.gyp:net_unittests_apk', | 93 '../net/net.gyp:net_unittests_apk', |
92 '../sql/sql.gyp:sql_unittests_apk', | 94 '../sql/sql.gyp:sql_unittests_apk', |
93 '../sync/sync.gyp:sync_unit_tests_apk', | 95 '../sync/sync.gyp:sync_unit_tests_apk', |
94 '../ui/ui.gyp:ui_unittests_apk', | 96 '../ui/ui.gyp:ui_unittests_apk', |
95 ], | 97 ], |
(...skipping 19 matching lines...) Expand all Loading... |
115 # In-progress targets that are expected to fail and are NOT run | 117 # In-progress targets that are expected to fail and are NOT run |
116 # on any bot. | 118 # on any bot. |
117 'target_name': 'android_in_progress', | 119 'target_name': 'android_in_progress', |
118 'type': 'none', | 120 'type': 'none', |
119 'dependencies': [ | 121 'dependencies': [ |
120 '../content/content.gyp:content_browsertests', | 122 '../content/content.gyp:content_browsertests', |
121 ], | 123 ], |
122 }, | 124 }, |
123 ], # targets | 125 ], # targets |
124 } | 126 } |
OLD | NEW |