| OLD | NEW |
| 1 <!--- | 1 <!--- |
| 2 Copyright (c) 2015, the Fletch project authors. Please see the AUTHORS file | 2 Copyright (c) 2015, the Fletch project authors. Please see the AUTHORS file |
| 3 for details. All rights reserved. Use of this source code is governed by a | 3 for details. All rights reserved. Use of this source code is governed by a |
| 4 BSD-style license that can be found in the LICENSE.md file. | 4 BSD-style license that can be found in the LICENSE.md file. |
| 5 --> | 5 --> |
| 6 | 6 |
| 7 We use a patched version of the Dart VM at the moment, because | 7 We use a patched version of the Dart VM at the moment, because |
| 8 * Testing is much faster using vfork() | 8 * Testing is much faster using vfork() |
| 9 * The persistent process / daemon uses Unix Domain Sockets | 9 * The persistent process / daemon uses Unix Domain Sockets |
| 10 | 10 |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 out/ReleaseX64/dart-sdk/bin/dart | 85 out/ReleaseX64/dart-sdk/bin/dart |
| 86 | 86 |
| 87 # On Linux - arm | 87 # On Linux - arm |
| 88 chmod +x out/ReleaseXARM/dart | 88 chmod +x out/ReleaseXARM/dart |
| 89 upload_to_google_storage.py -b dart-dependencies-fletch \ | 89 upload_to_google_storage.py -b dart-dependencies-fletch \ |
| 90 out/ReleaseXARM/dart | 90 out/ReleaseXARM/dart |
| 91 arm-linux-gnueabihf-strip out/ReleaseXARM/dart | 91 arm-linux-gnueabihf-strip out/ReleaseXARM/dart |
| 92 ``` | 92 ``` |
| 93 | 93 |
| 94 The sha1 files need to be checked into the repository at | 94 The sha1 files need to be checked into the repository at |
| 95 * `third_party/bin/{linux,mac}/...` | 95 * `third_party/bin/{linux,linux-arm,mac}/...` |
| 96 * `tools/testing/bin/{linux,mac}/...` | 96 * `tools/testing/bin/{linux,linux-arm,mac}/...` |
| 97 | 97 |
| 98 It is highly recommended to test that everything worked, by | 98 It is highly recommended to test that everything worked, by |
| 99 * ensuring only sha1 files have been changed | 99 * ensuring only sha1 files have been changed |
| 100 * deleting the binaries | 100 * deleting the binaries |
| 101 * re-running `gclient runhooks` to download new binaries | 101 * re-running `gclient runhooks` to download new binaries |
| 102 * building & running ./tools/test.py | 102 * building & running ./tools/test.py |
| OLD | NEW |