Index: chrome/tools/build/repack_locales.py |
diff --git a/chrome/tools/build/repack_locales.py b/chrome/tools/build/repack_locales.py |
index a5a8e9fc56a503387ca4bdee33a20ba1faf9d950..8fddff8105354b7c1c6f8352f79690c58d9fdd0c 100755 |
--- a/chrome/tools/build/repack_locales.py |
+++ b/chrome/tools/build/repack_locales.py |
@@ -33,7 +33,6 @@ OS = None |
CHROMEOS = False |
USE_ASH = False |
-USE_ATHENA = False |
ENABLE_AUTOFILL_DIALOG = False |
ENABLE_EXTENSIONS = False |
@@ -89,11 +88,6 @@ def calc_inputs(locale): |
inputs.append(os.path.join(SHARE_INT_DIR, 'ash', 'strings', |
'ash_strings_%s.pak' % locale)) |
- if USE_ATHENA: |
- #e.g. '<(SHARED_INTERMEDIATE_DIR)/athena/strings/athena_strings_da.pak', |
- inputs.append(os.path.join(SHARE_INT_DIR, 'athena', 'strings', |
- 'athena_strings_%s.pak' % locale)) |
- |
if CHROMEOS: |
inputs.append(os.path.join(SHARE_INT_DIR, 'ui', 'chromeos', 'strings', |
'ui_chromeos_strings_%s.pak' % locale)) |
@@ -191,7 +185,6 @@ def DoMain(argv): |
global OS |
global CHROMEOS |
global USE_ASH |
- global USE_ATHENA |
global WHITELIST |
global ENABLE_AUTOFILL_DIALOG |
global ENABLE_EXTENSIONS |
@@ -217,8 +210,6 @@ def DoMain(argv): |
help="The target OS. (e.g. mac, linux, win, etc.)") |
parser.add_option("--use-ash", action="store", dest="use_ash", |
help="Whether to include ash strings") |
- parser.add_option("--use-athena", action="store", dest="use_athena", |
- help="Whether to include athena strings") |
parser.add_option("--chromeos", action="store", |
help="Whether building for Chrome OS") |
parser.add_option("--whitelist", action="store", help="Full path to the " |
@@ -244,7 +235,6 @@ def DoMain(argv): |
OS = options.os |
CHROMEOS = options.chromeos == '1' |
USE_ASH = options.use_ash == '1' |
- USE_ATHENA = options.use_athena == '1' |
WHITELIST = options.whitelist |
ENABLE_AUTOFILL_DIALOG = options.enable_autofill_dialog == '1' |
ENABLE_EXTENSIONS = options.enable_extensions == '1' |