| OLD | NEW |
| 1 # -*- python -*- | 1 # -*- python -*- |
| 2 # ex: set syntax=python: | 2 # ex: set syntax=python: |
| 3 | 3 |
| 4 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 4 # Copyright (c) 2012 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 stage/archive scripts. The known tags are: | 9 # processed by the stage/archive scripts. The known tags are: |
| 10 # | 10 # |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 'filename': 'xdg-mime', | 93 'filename': 'xdg-mime', |
| 94 'arch': ['32bit', '64bit'], | 94 'arch': ['32bit', '64bit'], |
| 95 'buildtype': ['dev', 'official'], | 95 'buildtype': ['dev', 'official'], |
| 96 }, | 96 }, |
| 97 { | 97 { |
| 98 'filename': 'xdg-settings', | 98 'filename': 'xdg-settings', |
| 99 'arch': ['32bit', '64bit'], | 99 'arch': ['32bit', '64bit'], |
| 100 'buildtype': ['dev', 'official'], | 100 'buildtype': ['dev', 'official'], |
| 101 }, | 101 }, |
| 102 # Flash Player files: | 102 # Flash Player files: |
| 103 # TODO(viettrungluu): Remove these once all the changes have been made to |
| 104 # include/use Pepper Flash on 32-bit Linux. |
| 103 { | 105 { |
| 104 'filename': 'libgcflashplayer.so', | 106 'filename': 'libgcflashplayer.so', |
| 105 'arch': ['32bit'], | 107 'arch': ['32bit'], |
| 106 'buildtype': ['official'], | 108 'buildtype': ['official'], |
| 107 }, | 109 }, |
| 108 { | 110 { |
| 109 'filename': 'plugin.vch', | 111 'filename': 'plugin.vch', |
| 110 'arch': ['32bit'], | 112 'arch': ['32bit'], |
| 111 'buildtype': ['official'], | 113 'buildtype': ['official'], |
| 112 }, | 114 }, |
| 113 # Pepper Flash Player files: | 115 # Pepper Flash Player files: |
| 114 { | 116 { |
| 115 'filename': 'PepperFlash', | 117 'filename': 'PepperFlash', |
| 116 # TODO(viettrungluu): For now, only with 64-bit Linux. | 118 'arch': ['32bit','64bit'], |
| 117 'arch': ['64bit'], | |
| 118 'buildtype': ['official'], | 119 'buildtype': ['official'], |
| 119 }, | 120 }, |
| 120 # PDF Plugin files: | 121 # PDF Plugin files: |
| 121 { | 122 { |
| 122 'filename': 'libpdf.so', | 123 'filename': 'libpdf.so', |
| 123 'arch': ['32bit', '64bit'], | 124 'arch': ['32bit', '64bit'], |
| 124 'buildtype': ['dev', 'official'], | 125 'buildtype': ['dev', 'official'], |
| 125 }, | 126 }, |
| 126 # Native Client plugin files: | 127 # Native Client plugin files: |
| 127 { | 128 { |
| (...skipping 22 matching lines...) Expand all Loading... |
| 150 'buildtype': ['dev', 'official'], | 151 'buildtype': ['dev', 'official'], |
| 151 }, | 152 }, |
| 152 # Remoting files: | 153 # Remoting files: |
| 153 { | 154 { |
| 154 'filename': 'remoting-webapp.zip', | 155 'filename': 'remoting-webapp.zip', |
| 155 'arch': ['32bit', '64bit'], | 156 'arch': ['32bit', '64bit'], |
| 156 'buildtype': ['dev', 'official'], | 157 'buildtype': ['dev', 'official'], |
| 157 'archive': 'remoting-webapp.zip', | 158 'archive': 'remoting-webapp.zip', |
| 158 }, | 159 }, |
| 159 ] | 160 ] |
| OLD | NEW |