summaryrefslogtreecommitdiff
path: root/chromium/docs/graphical_debugging_aid_chromium_views.md
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2019-05-24 11:40:17 +0200
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2019-05-24 12:42:11 +0000
commit5d87695f37678f96492b258bbab36486c59866b4 (patch)
treebe9783bbaf04fb930c4d74ca9c00b5e7954c8bc6 /chromium/docs/graphical_debugging_aid_chromium_views.md
parent6c11fb357ec39bf087b8b632e2b1e375aef1b38b (diff)
downloadqtwebengine-chromium-5d87695f37678f96492b258bbab36486c59866b4.tar.gz
BASELINE: Update Chromium to 75.0.3770.56
Change-Id: I86d2007fd27a45d5797eee06f4c9369b8b50ac4f Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
Diffstat (limited to 'chromium/docs/graphical_debugging_aid_chromium_views.md')
-rw-r--r--chromium/docs/graphical_debugging_aid_chromium_views.md7
1 files changed, 4 insertions, 3 deletions
diff --git a/chromium/docs/graphical_debugging_aid_chromium_views.md b/chromium/docs/graphical_debugging_aid_chromium_views.md
index b36b5636b46..1988b7b0495 100644
--- a/chromium/docs/graphical_debugging_aid_chromium_views.md
+++ b/chromium/docs/graphical_debugging_aid_chromium_views.md
@@ -8,7 +8,8 @@ debugging. It consists of 4 components:
1. The function `views::PrintViewGraph()` (in the file
`ui/views/debug_utils.h`),
1. a custom debugger command
- - For GDB, use `tools/gdb/viewg.gdb`
+ - For GDB, see
+ [gdbinit](https://chromium.googlesource.com/chromium/src/+/master/docs/gdbinit.md),
- For LLDB, use `tools/lldb/lldb_viewg.py`
- For other debuggers, it should be relatively easy to adapt the
above scripts.
@@ -22,8 +23,8 @@ To use the tool,
1. Make sure you have 'dot' installed (part of graphViz),
1. run gdb/lldb on your build and
- 1. For GDB `source tools/gdb/viewg.gdb` (this can be done automatically
- in `.gdbinit`),
+ 1. For GDB see
+ [gdbinit](https://chromium.googlesource.com/chromium/src/+/master/docs/gdbinit.md),
1. For LLDB `command script import tools/lldb/lldb_viewg.py` (this can
be done automatically in `.lldbinit`),
1. stop at any breakpoint inside class `View` (or any derived class), and