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 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
118 }], | 118 }], |
119 ], | 119 ], |
120 }, | 120 }, |
121 { | 121 { |
122 # Experimental / in-progress targets that are expected to fail | 122 # Experimental / in-progress targets that are expected to fail |
123 # but we still try to compile them on bots (turning the stage | 123 # but we still try to compile them on bots (turning the stage |
124 # orange, not red). | 124 # orange, not red). |
125 'target_name': 'android_experimental', | 125 'target_name': 'android_experimental', |
126 'type': 'none', | 126 'type': 'none', |
127 'dependencies': [ | 127 'dependencies': [ |
128 '../remoting/remoting.gyp:remoting_client_jni', | |
Wez
2013/07/09 17:34:47
I don't think we want this exception - we don't ex
solb
2013/07/10 00:01:19
Done.
| |
128 ], | 129 ], |
129 }, | 130 }, |
130 { | 131 { |
131 # In-progress targets that are expected to fail and are NOT run | 132 # In-progress targets that are expected to fail and are NOT run |
132 # on any bot. | 133 # on any bot. |
133 'target_name': 'android_in_progress', | 134 'target_name': 'android_in_progress', |
134 'type': 'none', | 135 'type': 'none', |
135 'dependencies': [ | 136 'dependencies': [ |
136 ], | 137 ], |
137 }, | 138 }, |
138 ], # targets | 139 ], # targets |
139 } | 140 } |
OLD | NEW |