OLD | NEW |
1 # -*- python -*- | 1 # -*- python -*- |
2 # ex: set syntax=python: | 2 # ex: set syntax=python: |
3 | 3 |
4 # Copyright 2015 The Chromium Authors. All rights reserved. | 4 # Copyright 2015 The Chromium Authors. All rights reserved. |
5 # Use of this source code is governed by a BSD-style license that can be | 5 # Use of this source code is governed by a BSD-style license that can be |
6 # found in the LICENSE file. | 6 # found in the LICENSE file. |
7 | 7 |
8 # This is a buildbot configuration file containing a tagged list of files | 8 # This is a buildbot configuration file containing a tagged list of files |
9 # processed by the chromium_mojo.py recipe. The known tags are: | 9 # processed by the chromium_mojo.py recipe. The known tags are: |
10 # | 10 # |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 }, | 44 }, |
45 { | 45 { |
46 'filepath': 'mandoline', | 46 'filepath': 'mandoline', |
47 'platforms': ['linux'], | 47 'platforms': ['linux'], |
48 }, | 48 }, |
49 { | 49 { |
50 'filepath': 'mandoline.exe', | 50 'filepath': 'mandoline.exe', |
51 'platforms': ['win'], | 51 'platforms': ['win'], |
52 }, | 52 }, |
53 { | 53 { |
| 54 'filepath': 'omnibox', |
| 55 'platforms': ['linux', 'win'], |
| 56 'directory': True, |
| 57 }, |
| 58 { |
54 'filepath': 'pdf_viewer', | 59 'filepath': 'pdf_viewer', |
55 'platforms': ['linux', 'win'], | 60 'platforms': ['linux', 'win'], |
56 'directory': True, | 61 'directory': True, |
57 }, | 62 }, |
58 ] | 63 ] |
OLD | NEW |