| OLD | NEW |
| 1 This repository contains the network service implementation for Mojo. | 1 This repository contains the network service implementation for Mojo. |
| 2 | 2 |
| 3 This repository uses gclient to manage dependencies so to work with it follow | 3 This repository uses gclient to manage dependencies so to work with it follow |
| 4 these instructions instead of cloning the repo directly: | 4 these instructions instead of cloning the repo directly: |
| 5 | 5 |
| 6 1. Install | 6 1. Install |
| 7 [depot_tools](https://www.chromium.org/developers/how-tos/install-depot-tools
) | 7 [depot_tools](https://www.chromium.org/developers/how-tos/install-depot-tools
) |
| 8 and add it to your `PATH`. | 8 and add it to your `PATH`. |
| 9 | |
| 10 | 9 |
| 11 2. Make a directory for monet and add a `.gclient` file: | 10 2. Make a directory for monet and add a `.gclient` file: |
| 12 ``` | 11 ``` |
| 13 $ mkdir monet | 12 $ mkdir monet |
| 14 $ cd monet | 13 $ cd monet |
| 15 $ cat <<EOF > .gclient | 14 $ cat <<EOF > .gclient |
| 16 solutions = [ | 15 solutions = [ |
| 17 { | 16 { |
| 18 u'managed': False, | 17 u'managed': False, |
| 19 u'name': u'src', | 18 u'name': u'src', |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 | 68 |
| 70 9. Upload binary artifacts to Google Cloud storage. | 69 9. Upload binary artifacts to Google Cloud storage. |
| 71 ``` | 70 ``` |
| 72 $ ./claude.py upload --release | 71 $ ./claude.py upload --release |
| 73 ``` | 72 ``` |
| 74 | 73 |
| 75 The code in [//net](net/) is the code from | 74 The code in [//net](net/) is the code from |
| 76 [https://chromium.googlesource.com/chromium/src/net/](https://chromium.googlesou
rce.com/chromium/src/net/) | 75 [https://chromium.googlesource.com/chromium/src/net/](https://chromium.googlesou
rce.com/chromium/src/net/) |
| 77 at commit 79dc59ac7602413181079ecb463873e29a1d7d0a with `net_patch.diff` | 76 at commit 79dc59ac7602413181079ecb463873e29a1d7d0a with `net_patch.diff` |
| 78 applied. Similarly for the code in [//crypto](crypto/). | 77 applied. Similarly for the code in [//crypto](crypto/). |
| OLD | NEW |