| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 ############################################################################### | 5 ############################################################################### |
| 6 # CAUTION | 6 # CAUTION |
| 7 # This file is sourced by the shell and also parsed by a Python script. | 7 # This file is sourced by the shell and also parsed by a Python script. |
| 8 # It must only contain comments, blank lines, and constant assignments with no | 8 # It must only contain comments, blank lines, and constant assignments with no |
| 9 # whitespace around the "=" (followed by a comment describing the constant). | 9 # whitespace around the "=" (followed by a comment describing the constant). |
| 10 ############################################################################### | 10 ############################################################################### |
| 11 | 11 |
| 12 # Exit codes for uploader_iteration.sh: | 12 # Exit codes for uploader_iteration.sh: |
| 13 EXIT_GYP_UPDATE=50 # Updating GYP project | 13 EXIT_GYP_UPDATE=50 # Updating GYP project |
| 14 EXIT_LAST_UPLOADED_BLINK_REV=51 # Getting the last Blink revision from Cloud Sto
rage | 14 EXIT_LAST_UPLOADED_BLINK_REV=51 # Getting the last Blink revision from Cloud Sto
rage |
| 15 EXIT_NO_UPDATED_BRANCHES=52 # No updated branches (no changes in Blink repo) | 15 EXIT_NO_UPDATED_BRANCHES=52 # No updated branches (no changes in Blink repo) |
| 16 EXIT_BLINK_UPDATE=53 # Checking out Blink branch / revision | 16 EXIT_BLINK_UPDATE=53 # Checking out Blink branch / revision |
| 17 EXIT_DEVTOOLS_GYP_FILE=54 # No devtools.gyp in Blink repo | 17 EXIT_DEVTOOLS_GYP_FILE=54 # No devtools.gyp in Blink repo |
| 18 EXIT_GYP_DEVTOOLS=55 # Running GYP for DevTools | 18 EXIT_GYP_DEVTOOLS=55 # Running GYP for DevTools |
| 19 EXIT_BUILD_FRONTEND=56 # Building DevTools Frontend | 19 EXIT_BUILD_FRONTEND=56 # Building DevTools Frontend |
| 20 EXIT_ZIP_FRONTEND=57 # Zipping DevTools Frontend | 20 EXIT_ZIP_FRONTEND=57 # Zipping DevTools Frontend |
| 21 EXIT_MANIFEST_CREATION=58 # Creating manifest file for AppCache | 21 EXIT_MANIFEST_CREATION=58 # Creating manifest file for AppCache |
| 22 EXIT_CS_UPLOAD=59 # Uploading results to Cloud Storage | 22 EXIT_CS_UPLOAD=59 # Uploading results to Cloud Storage |
| 23 EXIT_CHROMIUM_UPDATE=60 # Checking out Chromium repo |
| OLD | NEW |