/talk-devtools-internals

Source files for my talk on Internal Architecture of Chrome Developer Tools

Primary LanguageJavaScript

Talk: Internal architecture of Google Chrome Developer Tools

Source files for my talk on Internal Architecture of Chrome Developer Tools

Dev setup without checking out and building full Chromium browser

  1. Download Google Chrome Canary

https://www.google.com/intl/en/chrome/browser/canary.html

  1. Find out the branch number of your Canary version in About

    33.0.1703.0 => branch 1703

  2. Checkout subtree of SVN branch

$ CHROME_SVN_ROOT=http://src.chromium.org/blink/branches/chromium/
$ BRANCH={your branch number} # e.g. 1703
$ svn checkout $CHROME_SVN_ROOOT/$BRANCH/Source/devtools
  1. Continue along the original instructions:
$ cd devtools
$ python -m SimpleHTTPServer

Launch Chrome Canary browser as a server, open DevTools in a second instance, etc.

Links

Chrome Developer Tools