| 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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 { | 60 { |
| 61 'filename': 'Google Chrome.dSYM.tar.bz2', | 61 'filename': 'Google Chrome.dSYM.tar.bz2', |
| 62 'buildtype': ['official'], | 62 'buildtype': ['official'], |
| 63 'archive': 'Google Chrome.dSYM.tar.bz2', | 63 'archive': 'Google Chrome.dSYM.tar.bz2', |
| 64 }, | 64 }, |
| 65 { | 65 { |
| 66 'filename': 'nacl_irt_x86_64.nexe.debug', | 66 'filename': 'nacl_irt_x86_64.nexe.debug', |
| 67 'buildtype': ['official'], | 67 'buildtype': ['official'], |
| 68 'archive': 'chrome-mac-nacl-irt-syms.zip', | 68 'archive': 'chrome-mac-nacl-irt-syms.zip', |
| 69 }, | 69 }, |
| 70 # Content shell files: | |
| 71 { | |
| 72 'filename': 'Content Shell.app', | |
| 73 'buildtype': ['dev'], | |
| 74 'archive': 'content-shell.zip', | |
| 75 'optional': ['dev'], | |
| 76 }, | |
| 77 { | |
| 78 'filename': 'blink_deprecated_test_plugin.plugin', | |
| 79 'buildtype': ['dev'], | |
| 80 'archive': 'content-shell.zip', | |
| 81 'optional': ['dev'], | |
| 82 }, | |
| 83 { | |
| 84 'filename': 'blink_test_plugin.plugin', | |
| 85 'buildtype': ['dev'], | |
| 86 'archive': 'content-shell.zip', | |
| 87 'optional': ['dev'], | |
| 88 }, | |
| 89 { | |
| 90 'filename': 'content_shell.pak', | |
| 91 'buildtype': ['dev'], | |
| 92 'archive': 'content-shell.zip', | |
| 93 'optional': ['dev'], | |
| 94 }, | |
| 95 { | |
| 96 'filename': 'icudtl.dat', | |
| 97 'buildtype': ['dev'], | |
| 98 'archive': 'content-shell.zip', | |
| 99 'optional': ['dev'], | |
| 100 }, | |
| 101 { | |
| 102 'filename': 'natives_blob.bin', | |
| 103 'buildtype': ['dev'], | |
| 104 'archive': 'content-shell.zip', | |
| 105 'optional': ['dev'], | |
| 106 }, | |
| 107 { | |
| 108 'filename': 'osmesa.so', | |
| 109 'buildtype': ['dev'], | |
| 110 'archive': 'content-shell.zip', | |
| 111 'optional': ['dev'], | |
| 112 }, | |
| 113 { | |
| 114 'filename': 'resources', | |
| 115 'buildtype': ['dev'], | |
| 116 'archive': 'content-shell.zip', | |
| 117 'optional': ['dev'], | |
| 118 }, | |
| 119 ] | 70 ] |
| OLD | NEW |