Add depot tools to the requirements section.
The depot_tools install was mentioned in the building section but was missing from requirements. This CL fixes that oversight. Bug: tint:35 Change-Id: I6900ba8916d26dc03bd001bde96561a468a2fb75 Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/18900 Reviewed-by: Ryan Harrison <rharrison@chromium.org> Commit-Queue: Ryan Harrison <rharrison@chromium.org>
This commit is contained in:
parent
a3c8944c18
commit
2c18339745
|
@ -9,6 +9,7 @@ This is not an officially supported Google product.
|
||||||
* CMake (3.10.2 or later)
|
* CMake (3.10.2 or later)
|
||||||
* Ninja (or other build tool)
|
* Ninja (or other build tool)
|
||||||
* Python, for fetching dependencies
|
* Python, for fetching dependencies
|
||||||
|
* [depot_tools] in your path
|
||||||
|
|
||||||
## Build options
|
## Build options
|
||||||
* `TINT_BUILD_SPV_READER` : enable the SPIR-V input reader (off by default)
|
* `TINT_BUILD_SPV_READER` : enable the SPIR-V input reader (off by default)
|
||||||
|
@ -17,9 +18,10 @@ This is not an officially supported Google product.
|
||||||
* `TINT_BUILD_WGSL_WRITER` : enable the WGSL output writer (on by default)
|
* `TINT_BUILD_WGSL_WRITER` : enable the WGSL output writer (on by default)
|
||||||
|
|
||||||
## Building
|
## Building
|
||||||
Tint uses Chromium dependency management so you need to [install depot_tools] and add it to your PATH.
|
Tint uses Chromium dependency management so you need to install [depot_tools]
|
||||||
|
and add it to your PATH.
|
||||||
|
|
||||||
[install depot_tools]: http://commondatastorage.googleapis.com/chrome-infra-docs/flat/depot_tools/docs/html/depot_tools_tutorial.html#_setting_up
|
[depot_tools]: http://commondatastorage.googleapis.com/chrome-infra-docs/flat/depot_tools/docs/html/depot_tools_tutorial.html#_setting_up
|
||||||
|
|
||||||
### Getting source & dependencies
|
### Getting source & dependencies
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue