• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

build/H03-May-2022-2,9252,155

closure/H03-May-2022-1,095885

component_bridges/H16-Feb-2021-1,6991,172

component_server/H03-May-2022-3424

deps/H16-Feb-2021-871624

devtools_run/H16-Feb-2021-6453

eslint_rules/H16-Feb-2021-

hosted_mode/H03-May-2022-107

javascript_natives/H03-May-2022-1211

jsdoc_validator/H03-May-2022-2,5162,032

json_validator/H03-May-2022-101100

localization/H03-May-2022-32

localizationV2/H03-May-2022-

migration/H16-Feb-2021-919648

protocol_typescript/H16-Feb-2021-520402

test/H03-May-2022-1,034720

unused_css/H03-May-2022-1211

visualize_deps/H03-May-2022-

OWNERSH A D16-Feb-202144 42

README.mdH A D16-Feb-20211.7 KiB3321

__init__.pyH A D16-Feb-20210 10

devtools_paths.pyH A D16-Feb-20213.4 KiB11465

optimize_svg_images.pyH A D16-Feb-20213.8 KiB9348

tsconfig.jsonH A D16-Feb-202162 65

unzip.pyH A D16-Feb-2021533 2112

README.md

1# DevTools Scripts
2
3## Development workflow scripts
4
5These are scripts that can be useful to run independently as you're working on Chrome DevTools front-end.
6
7The newer scripts such as for testing and hosted mode are written in Node.js, which has become the standard toolchain for web apps. The older scripts such as building (e.g. bundling and minifying) are written in Python, which has first-class support in Chromium's infrastructure.
8
9## Overview
10
11### Folders
12
13- build - Python package for generating DevTools debug and release mode
14- chrome_debug_launcher - automagically finds Chrome Canary and launches it with debugging flags (e.g. remote debugging port)
15- closure - see section on Closure Compiler below
16- gulp - experimental build process written in node.js & gulp to remove the dependency on Chromium-specific build tools (i.e. gn and ninja)
17- hosted_mode - run DevTools on a localhost development server
18- jsdoc_validator - enforces the use of Closure type annotations
19
20### Python Scripts
21- compile_frontend.py - runs closure compiler to do static type analysis
22    - Note: the compiled outputs are not actually used to run DevTools
23- lint_javascript.py - run eslint
24- optimize_svg_images.py - manually run when changing svg images
25
26### Node.js scripts
27
28The easiest way to run the node.js scripts is to use `npm run` which displays all the commands. For more information on the specific `npm run` commands, take a look at the primary devtools front-end readme (`../readme.md`).
29
30## Closure
31
32DevTools manually rolls the closure compiler to ./closure. If you manually roll closure compiler, you will need to re-generate the closure_runner (in ./closure) and jsdoc_validator custom jars using the python scripts in their respective directory.
33