| 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 }, | 45 }, |
| 46 { | 46 { |
| 47 'filename': 'chrome_sandbox', | 47 'filename': 'chrome_sandbox', |
| 48 'buildtype': ['dev', 'official'], | 48 'buildtype': ['dev', 'official'], |
| 49 }, | 49 }, |
| 50 { | 50 { |
| 51 'filename': 'chrome.1', | 51 'filename': 'chrome.1', |
| 52 'buildtype': ['dev', 'official'], | 52 'buildtype': ['dev', 'official'], |
| 53 }, | 53 }, |
| 54 { | 54 { |
| 55 'filename': 'emit_login_prompt_ready', | |
| 56 'buildtype': ['dev'], | |
| 57 }, | |
| 58 { | |
| 59 'filename': 'icudtl.dat', | 55 'filename': 'icudtl.dat', |
| 60 'buildtype': ['dev', 'official'], | 56 'buildtype': ['dev', 'official'], |
| 61 }, | 57 }, |
| 62 { | 58 { |
| 63 'filename': 'natives_blob.bin', | |
| 64 'buildtype': ['dev', 'official'], | |
| 65 }, | |
| 66 { | |
| 67 'filename': 'snapshot_blob.bin', | |
| 68 'buildtype': ['dev', 'official'], | |
| 69 }, | |
| 70 { | |
| 71 'filename': 'installer', | 59 'filename': 'installer', |
| 72 'buildtype': ['official'], | 60 'buildtype': ['official'], |
| 73 }, | 61 }, |
| 74 { | 62 { |
| 75 'filename': 'locales', | 63 'filename': 'locales', |
| 76 'buildtype': ['dev', 'official'], | 64 'buildtype': ['dev', 'official'], |
| 77 }, | 65 }, |
| 78 { | 66 { |
| 67 'filename': 'natives_blob.bin', |
| 68 'buildtype': ['dev', 'official'], |
| 69 }, |
| 70 { |
| 79 'filename': 'product_logo_48.png', | 71 'filename': 'product_logo_48.png', |
| 80 'buildtype': ['dev', 'official'], | 72 'buildtype': ['dev', 'official'], |
| 81 }, | 73 }, |
| 82 { | 74 { |
| 83 'filename': 'resources', | 75 'filename': 'resources', |
| 84 'buildtype': ['dev', 'official'], | 76 'buildtype': ['dev', 'official'], |
| 85 }, | 77 }, |
| 86 { | 78 { |
| 87 'filename': 'resources.pak', | 79 'filename': 'resources.pak', |
| 88 'buildtype': ['dev', 'official'], | 80 'buildtype': ['dev', 'official'], |
| 89 }, | 81 }, |
| 90 { | 82 { |
| 91 'filename': 'session', | 83 'filename': 'session', |
| 92 'buildtype': ['dev'], | 84 'buildtype': ['dev'], |
| 93 }, | 85 }, |
| 94 { | 86 { |
| 87 'filename': 'snapshot_blob.bin', |
| 88 'buildtype': ['dev', 'official'], |
| 89 }, |
| 90 { |
| 95 'filename': 'xdg-mime', | 91 'filename': 'xdg-mime', |
| 96 'buildtype': ['dev', 'official'], | 92 'buildtype': ['dev', 'official'], |
| 97 }, | 93 }, |
| 98 { | 94 { |
| 99 'filename': 'xdg-settings', | 95 'filename': 'xdg-settings', |
| 100 'buildtype': ['dev', 'official'], | 96 'buildtype': ['dev', 'official'], |
| 101 }, | 97 }, |
| 102 # CDM files (each has an adapter and the actual CDM): | 98 # CDM files (each has an adapter and the actual CDM): |
| 103 { | 99 { |
| 104 'filename': 'libclearkeycdmadapter.so', | 100 'filename': 'libclearkeycdmadapter.so', |
| (...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 277 'archive': 'content-shell.zip', | 273 'archive': 'content-shell.zip', |
| 278 'optional': ['dev'], | 274 'optional': ['dev'], |
| 279 }, | 275 }, |
| 280 { | 276 { |
| 281 'filename': 'resources', | 277 'filename': 'resources', |
| 282 'buildtype': ['dev'], | 278 'buildtype': ['dev'], |
| 283 'archive': 'content-shell.zip', | 279 'archive': 'content-shell.zip', |
| 284 'optional': ['dev'], | 280 'optional': ['dev'], |
| 285 }, | 281 }, |
| 286 ] | 282 ] |
| OLD | NEW |