| Index: tools/metrics/actions/extract_actions.py
|
| diff --git a/tools/metrics/actions/extract_actions.py b/tools/metrics/actions/extract_actions.py
|
| index ccdea24657fa2947be475e40d880e96ade01929d..573ea6578f2cb7503f4ce01a1ad0f81b3764c74d 100755
|
| --- a/tools/metrics/actions/extract_actions.py
|
| +++ b/tools/metrics/actions/extract_actions.py
|
| @@ -529,6 +529,9 @@ def AddLiteralActions(actions):
|
| WalkDirectory(chrome_root, actions, EXTENSIONS, GrepForActions)
|
| content_root = os.path.normpath(os.path.join(REPOSITORY_ROOT, 'content'))
|
| WalkDirectory(content_root, actions, EXTENSIONS, GrepForActions)
|
| + components_root = os.path.normpath(os.path.join(REPOSITORY_ROOT,
|
| + 'components'))
|
| + WalkDirectory(components_root, actions, EXTENSIONS, GrepForActions)
|
| net_root = os.path.normpath(os.path.join(REPOSITORY_ROOT, 'net'))
|
| WalkDirectory(net_root, actions, EXTENSIONS, GrepForActions)
|
| webkit_root = os.path.normpath(os.path.join(REPOSITORY_ROOT, 'webkit'))
|
|
|