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 'targets': [ | 10 'targets': [ |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 # The first item is simply the template. We add as a dep | 56 # The first item is simply the template. We add as a dep |
57 # to make sure it builds in ungenerated form. TODO(jrg): | 57 # to make sure it builds in ungenerated form. TODO(jrg): |
58 # once stable, transition to a test-only (optional) | 58 # once stable, transition to a test-only (optional) |
59 # target. | 59 # target. |
60 '../testing/android/native_test.gyp:native_test_apk', | 60 '../testing/android/native_test.gyp:native_test_apk', |
61 # Unit test bundles packaged as an apk. | 61 # Unit test bundles packaged as an apk. |
62 '../base/base.gyp:base_unittests_apk', | 62 '../base/base.gyp:base_unittests_apk', |
63 '../content/content.gyp:content_unittests_apk', | 63 '../content/content.gyp:content_unittests_apk', |
64 '../chrome/chrome.gyp:unit_tests_apk', | 64 '../chrome/chrome.gyp:unit_tests_apk', |
65 '../gpu/gpu.gyp:gpu_unittests_apk', | 65 '../gpu/gpu.gyp:gpu_unittests_apk', |
| 66 '../ipc/ipc.gyp:ipc_tests_apk', |
| 67 '../media/media.gyp:media_unittests_apk', |
| 68 '../net/net.gyp:net_unittests_apk', |
66 '../sql/sql.gyp:sql_unittests_apk', | 69 '../sql/sql.gyp:sql_unittests_apk', |
67 '../sync/sync.gyp:sync_unit_tests_apk', | 70 '../sync/sync.gyp:sync_unit_tests_apk', |
68 '../ipc/ipc.gyp:ipc_tests_apk', | |
69 '../net/net.gyp:net_unittests_apk', | |
70 '../ui/ui.gyp:ui_unittests_apk', | 71 '../ui/ui.gyp:ui_unittests_apk', |
71 ], | 72 ], |
72 }] | 73 }] |
73 ], | 74 ], |
74 }, | 75 }, |
75 { | 76 { |
76 # Experimental / in-progress targets that are expected to fail | 77 # Experimental / in-progress targets that are expected to fail |
77 # but we still try to compile them on bots (turning the stage | 78 # but we still try to compile them on bots (turning the stage |
78 # orange, not red). | 79 # orange, not red). |
79 'target_name': 'android_experimental', | 80 'target_name': 'android_experimental', |
80 'type': 'none', | 81 'type': 'none', |
81 'dependencies': [ | 82 'dependencies': [ |
82 '../chrome/chrome.gyp:unit_tests', | 83 '../chrome/chrome.gyp:unit_tests', |
83 ], | 84 ], |
84 }, | 85 }, |
85 { | 86 { |
86 # In-progress targets that are expected to fail and are NOT run | 87 # In-progress targets that are expected to fail and are NOT run |
87 # on any bot. | 88 # on any bot. |
88 'target_name': 'android_in_progress', | 89 'target_name': 'android_in_progress', |
89 'type': 'none', | 90 'type': 'none', |
90 'dependencies': [ | 91 'dependencies': [ |
91 '../content/content.gyp:content_browsertests', | 92 '../content/content.gyp:content_browsertests', |
92 ], | 93 ], |
93 }, | 94 }, |
94 ], # targets | 95 ], # targets |
95 } | 96 } |
OLD | NEW |