Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(137)

Unified Diff: ios/chrome/tools/strings/generate_localizable_strings.py

Issue 2026493002: [GN] Convert generate_localizable_strings.gni to use compiled_action.gni. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ios/chrome/tools/strings/generate_localizable_strings.gni ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/chrome/tools/strings/generate_localizable_strings.py
diff --git a/ios/chrome/tools/strings/generate_localizable_strings.py b/ios/chrome/tools/strings/generate_localizable_strings.py
deleted file mode 100644
index cd993b76cce69641adb5f27387247e34d88ca090..0000000000000000000000000000000000000000
--- a/ios/chrome/tools/strings/generate_localizable_strings.py
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 2016 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-import os
-import sys
-
-
-def Main(args):
- if len(args) < 5:
- sys.stderr.write(
- 'usage: %s tool config include_dir datapack_dir output_dir locales ...'
- % os.path.basename(sys.argv[0]))
- sys.exit(1)
-
- tool, config_file, include_dir, datapack_dir, output_dir = args[:5]
- locales = args[5:]
-
- os.execv(tool, [tool, '-c', config_file, '-I', include_dir, '-p',
- datapack_dir, '-o', output_dir] + locales)
- sys.exit(1)
-
-
-if __name__ == '__main__':
- Main(sys.argv[1:])
« no previous file with comments | « ios/chrome/tools/strings/generate_localizable_strings.gni ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698