Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | |
| 2 # for details. All rights reserved. Use of this source code is governed by a | |
| 3 # BSD-style license that can be found in the LICENSE file. | |
| 4 | |
| 5 prefix css | |
|
jimhug
2011/11/10 17:58:56
I don't understand why you need to specify so much
terry
2011/11/16 14:00:22
For completeness I added all areas but I'll remove
| |
| 6 | |
| 7 [ $component == vm || $component == dartium ] | |
| 8 | |
| 9 [ $component == vm && $mode == debug ] | |
| 10 | |
| 11 # Problems specific to dartc optimized mode | |
| 12 [ ($component == dartc || $component == chromium) && $mode == release ] | |
| 13 | |
| 14 # Problems specific to dartc debug mode | |
| 15 [ ($component == dartc || $component == chromium) && $mode == debug ] | |
| 16 | |
| 17 [ $component == dartc || $component == chromium ] | |
| 18 | |
| 19 [ $component == dartium ] | |
| 20 | |
| 21 [ $component == frogsh ] | |
| 22 | |
| 23 [ $component == frog ] | |
| 24 | |
| 25 [ $component == frogsh || $component == frog ] | |
| 26 | |
| 27 [ $arch == x64 ] | |
| 28 *: Skip | |
| 29 | |
| 30 [ $arch == simarm ] | |
| 31 *: Skip | |
| 32 | |
| 33 [ $arch == arm ] | |
| 34 *: Skip | |
| OLD | NEW |