Remove references to gyp from DEPS and docs
Bug: 826218
Change-Id: I176e1aeb0b24b21c6b4e5ee40910dce2bce52c95
Reviewed-on: https://chromium-review.googlesource.com/1239461
Reviewed-by: Nico Weber <[email protected]>
Commit-Queue: Daniel Bratell <[email protected]>
Cr-Commit-Position: refs/heads/master@{#593522}
diff --git a/docs/linux_hw_video_decode.md b/docs/linux_hw_video_decode.md
index 44d2b8f7..a64f14a2 100644
--- a/docs/linux_hw_video_decode.md
+++ b/docs/linux_hw_video_decode.md
@@ -47,11 +47,11 @@
make -j32 && rm -f ${DEST}/lib/dri/{nvidia_drv_video.so,s3g_drv_video.so} && make install
```
-* Add to `$GYP_DEFINES`:
- * `chromeos=1` to link in `VaapiVideoDecodeAccelerator`
- * `proprietary_codecs=1 ffmpeg_branding=Chrome` to allow Chrome to play
- h.264 content, which is the only codec VAVDA knows about today.
-* Re-run gyp (`./build/gyp_chromium` or `gclient runhooks`)
+* Add to args.gn:
+ * `target_os = "chromeos"` to link in `VaapiVideoDecodeAccelerator`
+ * `proprietary_codecs = true` and `ffmpeg_branding = "Chrome"` to
+ allow Chrome to play h.264 content, which is the only codec
+ VAVDA knows about today.
* Rebuild chrome
* Run chrome with `LD_LIBRARY_PATH=${HOME}/apps/libva/lib` in the environment,
and with the `--no-sandbox` command line flag.