Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1180)

Side by Side Diff: docs/linux_chromium_arm.md

Issue 2551513002: Fix spelling mistakes in //docs. (Closed)
Patch Set: Undo beng->being Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « docs/ipc_fuzzer.md ('k') | docs/linux_debugging.md » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Linux Chromium Arm Recipes 1 # Linux Chromium Arm Recipes
2 2
3 [TOC] 3 [TOC]
4 4
5 ## Recipe1: Building for an ARM CrOS device 5 ## Recipe1: Building for an ARM CrOS device
6 6
7 https://sites.google.com/a/chromium.org/dev/developers/how-tos/-quickly-building -for-cros-arm-x64 7 https://sites.google.com/a/chromium.org/dev/developers/how-tos/-quickly-building -for-cros-arm-x64
8 8
9 ## Recipe2: Explicit Cross compiling 9 ## Recipe2: Explicit Cross compiling
10 10
(...skipping 26 matching lines...) Expand all
37 gn args: 37 gn args:
38 38
39 target_cpu = "arm" 39 target_cpu = "arm"
40 40
41 ## Testing 41 ## Testing
42 42
43 ### Automated Build and Testing 43 ### Automated Build and Testing
44 44
45 Chromium's testing infrastructure for ARM/Linux is somewhat limited. 45 Chromium's testing infrastructure for ARM/Linux is somewhat limited.
46 There are currently two builders setup, one on the FYI waterfall and one 46 There are currently two builders setup, one on the FYI waterfall and one
47 the the trybot waterfall: 47 the the try bot waterfall:
48 48
49 * [Linux ARM](http://build.chromium.org/p/chromium.fyi/builders/Linux%20ARM) 49 * [Linux ARM](http://build.chromium.org/p/chromium.fyi/builders/Linux%20ARM)
50 * [linux_arm](http://build.chromium.org/p/tryserver.chromium.linux/builders/li nux_arm) 50 * [linux_arm](http://build.chromium.org/p/tryserver.chromium.linux/builders/li nux_arm)
51 51
52 These bots run x86-64 linux and cross-compile the ARM targets. Tests are 52 These bots run x86-64 linux and cross-compile the ARM targets. Tests are
53 run on ARM hardware via swarming. 53 run on ARM hardware via swarming.
54 54
55 ### Testing with QEMU 55 ### Testing with QEMU
56 56
57 If you don't have a real ARM machine, you can test with QEMU. For instance, 57 If you don't have a real ARM machine, you can test with QEMU. For instance,
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 Modes "1024x768" "800x600" "640x480" 95 Modes "1024x768" "800x600" "640x480"
96 EndSubSection 96 EndSubSection
97 EndSection 97 EndSection
98 ``` 98 ```
99 99
100 ### Notes 100 ### Notes
101 101
102 * To building for thumb reduces the stripped release binary by around 9MB, 102 * To building for thumb reduces the stripped release binary by around 9MB,
103 equating to ~33% of the binary size. To enable thumb, set `'arm_thumb': 1` 103 equating to ~33% of the binary size. To enable thumb, set `'arm_thumb': 1`
104 * TCmalloc does not have an ARM port, so it is disabled. 104 * TCmalloc does not have an ARM port, so it is disabled.
OLDNEW
« no previous file with comments | « docs/ipc_fuzzer.md ('k') | docs/linux_debugging.md » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698