Commit 9f958344 by Jamie Madill Committed by Commit Bot

Add MD browser to DEPS.

This tool can allow you to browser markdown files in the repository locally. Run tools/md_browser/md_browser.py and navigate to localhost:8080. It will point you to the root README.md. From there you can put in relative links to navigate to your new or changed markdown files. Bug: angleproject:3333 Change-Id: I5b4d608e2ad7408280868eb6561f95f3e55d8e8f Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/1556696Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org> Commit-Queue: Jamie Madill <jmadill@chromium.org>
parent 90b1865e
...@@ -37,6 +37,7 @@ ...@@ -37,6 +37,7 @@
/third_party/libjpeg_turbo /third_party/libjpeg_turbo
/third_party/libpng/src /third_party/libpng/src
/third_party/llvm-build /third_party/llvm-build
/third_party/Python-Markdown
/third_party/qemu-linux-x64 /third_party/qemu-linux-x64
/third_party/qemu-mac-x64 /third_party/qemu-mac-x64
/third_party/rapidjson/src /third_party/rapidjson/src
...@@ -48,6 +49,7 @@ ...@@ -48,6 +49,7 @@
/third_party/vulkan-validation-layers/src /third_party/vulkan-validation-layers/src
/third_party/yasm /third_party/yasm
/third_party/zlib /third_party/zlib
/tools/md_browser
angle_internal angle_internal
build build
buildtools/ buildtools/
......
...@@ -60,6 +60,11 @@ deps = { ...@@ -60,6 +60,11 @@ deps = {
'url': '{chromium_git}/external/deqp@{deqp_revision}', 'url': '{chromium_git}/external/deqp@{deqp_revision}',
}, },
'{angle_root}/third_party/fuchsia-sdk': {
'url': '{chromium_git}/chromium/src/third_party/fuchsia-sdk.git@8e8db13b538ecb251e5ce9d5c781fc142f9752fd',
'condition': 'checkout_fuchsia and not build_with_chromium',
},
# glmark2 is a GPL3-licensed OpenGL ES 2.0 benchmark. We use it for testing. # glmark2 is a GPL3-licensed OpenGL ES 2.0 benchmark. We use it for testing.
'{angle_root}/third_party/glmark2/src': { '{angle_root}/third_party/glmark2/src': {
'url': '{chromium_git}/external/github.com/glmark2/glmark2@c4b3ff5a481348e8bdc2b71ee275864db91e40b1', 'url': '{chromium_git}/external/github.com/glmark2/glmark2@c4b3ff5a481348e8bdc2b71ee275864db91e40b1',
...@@ -101,6 +106,11 @@ deps = { ...@@ -101,6 +106,11 @@ deps = {
'condition': 'not build_with_chromium', 'condition': 'not build_with_chromium',
}, },
'{angle_root}/third_party/Python-Markdown': {
'url': '{chromium_git}/chromium/src/third_party/Python-Markdown@b08af21eb795e522e1b972cb85bff59edb1ae209',
'condition': 'not build_with_chromium',
},
'{angle_root}/third_party/qemu-linux-x64': { '{angle_root}/third_party/qemu-linux-x64': {
'packages': [ 'packages': [
{ {
...@@ -173,9 +183,9 @@ deps = { ...@@ -173,9 +183,9 @@ deps = {
'condition': 'not build_with_chromium', 'condition': 'not build_with_chromium',
}, },
'{angle_root}/third_party/fuchsia-sdk': { '{angle_root}/tools/md_browser': {
'url': '{chromium_git}/chromium/src/third_party/fuchsia-sdk.git@8e8db13b538ecb251e5ce9d5c781fc142f9752fd', 'url': '{chromium_git}/chromium/src/tools/md_browser@e9462696241f3ca832890473173e03e7bcfe6adc',
'condition': 'checkout_fuchsia and not build_with_chromium', 'condition': 'not build_with_chromium',
}, },
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment