| OLD | NEW |
| 1 # Cast Build Instructions | 1 # Cast Build Instructions |
| 2 | 2 |
| 3 **Note**: it is **not possible** to build a binary functionally | 3 **Note**: it is **not possible** to build a binary functionally |
| 4 equivalent to a Chromecast. This is to build a single-page content | 4 equivalent to a Chromecast. This is to build a single-page content |
| 5 embedder with similar functionality to Cast products. | 5 embedder with similar functionality to Cast products. |
| 6 | 6 |
| 7 ## Prerequisites | 7 ## Prerequisites |
| 8 | 8 |
| 9 * See the [Linux build prerequisites](https://chromium.googlesource.com/chromi
um/src/+/master/docs/linux_build_instructions_prerequisites.md) | 9 * See the [Linux build prerequisites](https://chromium.googlesource.com/chromi
um/src/+/master/docs/linux_build_instructions_prerequisites.md) |
| 10 | 10 |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 | 32 |
| 33 ```shell | 33 ```shell |
| 34 gn gen out/Debug --args='is_chromecast=true target_os="android" is_debug=true' | 34 gn gen out/Debug --args='is_chromecast=true target_os="android" is_debug=true' |
| 35 ninja -C out/Debug cast_shell_apk | 35 ninja -C out/Debug cast_shell_apk |
| 36 ``` | 36 ``` |
| 37 | 37 |
| 38 ```shell | 38 ```shell |
| 39 adb install out/Debug/apks/CastShell.apk | 39 adb install out/Debug/apks/CastShell.apk |
| 40 adb shell am start -d "http://google.com" org.chromium.chromecast.shell/.CastShe
llActivity | 40 adb shell am start -d "http://google.com" org.chromium.chromecast.shell/.CastShe
llActivity |
| 41 ``` | 41 ``` |
| OLD | NEW |