| Index: tools/gdb/chrome-gdb.py
|
| diff --git a/tools/gdb/chrome-gdb.py b/tools/gdb/chrome-gdb.py
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..4f2c5381b705365d6ed66415b83761f4e51e944c
|
| --- /dev/null
|
| +++ b/tools/gdb/chrome-gdb.py
|
| @@ -0,0 +1,6 @@
|
| +# When this auto-load file is installed in the same directory as the Chromium
|
| +# executable, it automatically registers pretty-printers when you start GDB [1].
|
| +#
|
| +# [1] https://sourceware.org/gdb/current/onlinedocs/gdb/Writing-a-Pretty_002dPrinter.html
|
| +sys.path.insert(0, '../../tools/gdb')
|
| +import gdb_chrome
|
|
|