| OLD | NEW |
| (Empty) |
| 1 # -*- python -*- | |
| 2 # ex: set syntax=python: | |
| 3 | |
| 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 | |
| 6 # found in the LICENSE file. | |
| 7 | |
| 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: | |
| 10 # | |
| 11 # filepath: Path of the file in the build output directory. | |
| 12 # platforms: List of platform[s] for which the file should be processed. | |
| 13 # Acceptable list values are 'android', 'linux', and 'win'. | |
| 14 # directory: Flag marking the path as a directory to be copied recursively. | |
| 15 # The default value is False. | |
| 16 | |
| 17 FILES = [ | |
| 18 { | |
| 19 'filepath': 'apks/Mandoline.apk', | |
| 20 'platforms': ['android'], | |
| 21 }, | |
| 22 { | |
| 23 'filepath': 'core_services', | |
| 24 'platforms': ['linux', 'win'], | |
| 25 'directory': True, | |
| 26 }, | |
| 27 { | |
| 28 'filepath': 'd3dcompiler_47.dll', | |
| 29 'platforms': ['win'], | |
| 30 }, | |
| 31 { | |
| 32 'filepath': 'desktop_ui', | |
| 33 'platforms': ['linux', 'win'], | |
| 34 'directory': True, | |
| 35 }, | |
| 36 { | |
| 37 'filepath': 'html_viewer', | |
| 38 'platforms': ['linux', 'win'], | |
| 39 'directory': True, | |
| 40 }, | |
| 41 { | |
| 42 'filepath': 'icudtl.dat', | |
| 43 'platforms': ['linux', 'win'], | |
| 44 }, | |
| 45 { | |
| 46 'filepath': 'mandoline', | |
| 47 'platforms': ['linux'], | |
| 48 }, | |
| 49 { | |
| 50 'filepath': 'mandoline.exe', | |
| 51 'platforms': ['win'], | |
| 52 }, | |
| 53 { | |
| 54 'filepath': 'omnibox', | |
| 55 'platforms': ['linux', 'win'], | |
| 56 'directory': True, | |
| 57 }, | |
| 58 { | |
| 59 'filepath': 'pdf_viewer', | |
| 60 'platforms': ['linux', 'win'], | |
| 61 'directory': True, | |
| 62 }, | |
| 63 ] | |
| OLD | NEW |