| OLD | NEW |
| 1 # -*- python -*- | 1 # -*- python -*- |
| 2 # ex: set syntax=python: | 2 # ex: set syntax=python: |
| 3 | 3 |
| 4 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 4 # Copyright (c) 2010 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 345 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 356 { | 356 { |
| 357 'filename': 'libEGL.dll', | 357 'filename': 'libEGL.dll', |
| 358 'arch': ['32bit', '64bit'], | 358 'arch': ['32bit', '64bit'], |
| 359 'buildtype': ['dev', 'official'], | 359 'buildtype': ['dev', 'official'], |
| 360 }, | 360 }, |
| 361 { | 361 { |
| 362 'filename': 'libGLESv2.dll', | 362 'filename': 'libGLESv2.dll', |
| 363 'arch': ['32bit', '64bit'], | 363 'arch': ['32bit', '64bit'], |
| 364 'buildtype': ['dev', 'official'], | 364 'buildtype': ['dev', 'official'], |
| 365 }, | 365 }, |
| 366 # Native Client plugin files: |
| 366 { | 367 { |
| 367 'filename': 'ppGoogleNaClPluginChrome.dll', | 368 'filename': 'ppGoogleNaClPluginChrome.dll', |
| 368 'arch': ['32bit', '64bit'], | 369 'arch': ['32bit', '64bit'], |
| 369 'buildtype': ['dev', 'official'], | 370 'buildtype': ['dev', 'official'], |
| 370 }, | 371 }, |
| 372 # Windows Chrome does not have separate x86-32 and x86-64 installs. |
| 373 # A single install supports both x86-32 and x86-64 versions of NaCl, |
| 374 # so the 'arch' field does not seem to make much sense in this case. |
| 375 { |
| 376 'filename': 'nacl_irt_x86_32.nexe', |
| 377 'arch': ['32bit', '64bit'], |
| 378 'buildtype': ['dev', 'official'], |
| 379 }, |
| 380 { |
| 381 'filename': 'nacl_irt_x86_64.nexe', |
| 382 'arch': ['32bit', '64bit'], |
| 383 'buildtype': ['dev', 'official'], |
| 384 }, |
| 371 ] | 385 ] |
| OLD | NEW |