summaryrefslogtreecommitdiffstats
path: root/tools/check_grd_for_unused_strings.py
diff options
context:
space:
mode:
authorpkotwicz <pkotwicz@chromium.org>2015-01-20 13:52:28 -0800
committerCommit bot <commit-bot@chromium.org>2015-01-20 21:53:39 +0000
commit5748e135876286766151600a96283d369dba6584 (patch)
tree7915384a37cb5a3d001170c12b7d6e77f3d2d716 /tools/check_grd_for_unused_strings.py
parentc1b6156b0820a71a933ffd5e9c28da396003dc2d (diff)
downloadchromium_src-5748e135876286766151600a96283d369dba6584.zip
chromium_src-5748e135876286766151600a96283d369dba6584.tar.gz
chromium_src-5748e135876286766151600a96283d369dba6584.tar.bz2
Remove remainder of Athena related code from Chrome.
This CL: - Removes athena dependencies from build files for the chrome target - Removes athena-specific files in chrome/ BUG=440818 TEST=None R=sky,scottmg TBR=jamescook (for change to comment in extensions/shell/browser/desktop_controller.h) Review URL: https://codereview.chromium.org/855753004 Cr-Commit-Position: refs/heads/master@{#312282}
Diffstat (limited to 'tools/check_grd_for_unused_strings.py')
-rwxr-xr-xtools/check_grd_for_unused_strings.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/tools/check_grd_for_unused_strings.py b/tools/check_grd_for_unused_strings.py
index aa088f5..8124b57 100755
--- a/tools/check_grd_for_unused_strings.py
+++ b/tools/check_grd_for_unused_strings.py
@@ -127,7 +127,6 @@ 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_strings_dir = os.path.join(src_dir, 'athena', 'strings')
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')
@@ -138,7 +137,6 @@ def main():
grd_files = [
os.path.join(ash_base_dir, 'ash_strings.grd'),
os.path.join(ash_base_dir, 'resources', 'ash_resources.grd'),
- os.path.join(athena_strings_dir, 'athena_strings.grd'),
os.path.join(chrome_app_dir, 'chromium_strings.grd'),
os.path.join(chrome_app_dir, 'generated_resources.grd'),
os.path.join(chrome_app_dir, 'google_chrome_strings.grd'),
@@ -167,7 +165,6 @@ 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'),