| Index: tools/check_grd_for_unused_strings.py
|
| diff --git a/tools/check_grd_for_unused_strings.py b/tools/check_grd_for_unused_strings.py
|
| index 8124b57604a8e7709e43b0a41214529299ad6112..862c5e47b586b82c44d3553842cd51aeceb9f0ab 100755
|
| --- a/tools/check_grd_for_unused_strings.py
|
| +++ b/tools/check_grd_for_unused_strings.py
|
| @@ -127,6 +127,7 @@ def main():
|
| # If no GRD files were given, default them:
|
| if len(grd_files) == 0:
|
| ash_base_dir = os.path.join(src_dir, 'ash')
|
| + athena_base_dir = os.path.join(src_dir, 'athena')
|
| chrome_dir = os.path.join(src_dir, 'chrome')
|
| chrome_app_dir = os.path.join(chrome_dir, 'app')
|
| chrome_app_res_dir = os.path.join(chrome_app_dir, 'resources')
|
| @@ -136,6 +137,7 @@ def main():
|
| ui_chromeos_dir = os.path.join(ui_dir, 'chromeos')
|
| grd_files = [
|
| os.path.join(ash_base_dir, 'ash_strings.grd'),
|
| + os.path.join(athena_base_dir, 'athena_strings.grd'),
|
| os.path.join(ash_base_dir, 'resources', 'ash_resources.grd'),
|
| os.path.join(chrome_app_dir, 'chromium_strings.grd'),
|
| os.path.join(chrome_app_dir, 'generated_resources.grd'),
|
| @@ -165,6 +167,7 @@ def main():
|
| src_dirs = [
|
| os.path.join(src_dir, 'app'),
|
| os.path.join(src_dir, 'ash'),
|
| + os.path.join(src_dir, 'athena'),
|
| os.path.join(src_dir, 'chrome'),
|
| os.path.join(src_dir, 'components'),
|
| os.path.join(src_dir, 'content'),
|
|
|