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

Unified Diff: chrome/tools/build/repack_locales.py

Issue 1215303006: bluetooth: android: Initial BluetoothDeviceAndroid implementation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@bta-discovery-
Patch Set: Created 5 years, 5 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
Index: chrome/tools/build/repack_locales.py
diff --git a/chrome/tools/build/repack_locales.py b/chrome/tools/build/repack_locales.py
index b953bb8818ab1de8aeb45203267c8b8601b63cfc..8dc3eaaa83c7c07be5f2e920e7253d9cfb7968e0 100755
--- a/chrome/tools/build/repack_locales.py
+++ b/chrome/tools/build/repack_locales.py
@@ -100,6 +100,11 @@ def calc_inputs(locale):
inputs.append(os.path.join(SHARE_INT_DIR, 'content', 'app', 'strings',
'content_strings_%s.pak' % locale))
+ #e.g. '<(SHARED_INTERMEDIATE_DIR)/device/bluetooth/strings/
+ # device_bluetooth_strings_da.pak',
+ inputs.append(os.path.join(SHARE_INT_DIR, 'device', 'bluetooth', 'strings',
+ 'device_bluetooth_strings_%s.pak' % locale))
+
#e.g. '<(SHARED_INTERMEDIATE_DIR)/ui/strings/ui_strings_da.pak',
inputs.append(os.path.join(SHARE_INT_DIR, 'ui', 'strings',
'ui_strings_%s.pak' % locale))
@@ -120,11 +125,6 @@ def calc_inputs(locale):
'address_input_strings_%s.pak' % locale))
if ENABLE_EXTENSIONS:
- #e.g. '<(SHARED_INTERMEDIATE_DIR)/device/bluetooth/strings/
- # device_bluetooth_strings_da.pak',
- inputs.append(os.path.join(SHARE_INT_DIR, 'device', 'bluetooth', 'strings',
- 'device_bluetooth_strings_%s.pak' % locale))
-
# For example:
# '<(SHARED_INTERMEDIATE_DIR)/extensions/strings/extensions_strings_da.pak
# TODO(jamescook): When Android stops building extensions code move this

Powered by Google App Engine
This is Rietveld 408576698