Index: scripts/copy_data_android.sh |
diff --git a/scripts/copy_data_android.sh b/scripts/copy_data_android.sh |
new file mode 100755 |
index 0000000000000000000000000000000000000000..0ed1fbd8f9a4cb0c652428174e6d65573c1c1ca3 |
--- /dev/null |
+++ b/scripts/copy_data_android.sh |
@@ -0,0 +1,17 @@ |
+#!/bin/bash |
+# Copyright (c) 2015 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. |
+# |
+# This script is tested ONLY on Linux. It may not work correctly on |
+# Mac OS X. |
+# |
+TOPSRC="$(dirname "$0")/.." |
+source "${TOPSRC}/scripts/data_common.sh" |
+ |
+echo "Copying icudtl.dat and the corresponding assembly source for Android" |
+ |
+cp "data/out/tmp/icudt${VERSION}l.dat" "${TOPSRC}/android/icudtl.dat" |
+cp "data/out/tmp/icudt${VERSION}l_dat.S" "${TOPSRC}/android/icudtl_dat.S" |
+ |
+echo "Done with copying pre-built ICU data files for Android." |