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

Unified Diff: scripts/copy_data.sh

Issue 1639543006: ICU 56 step 6: Check in the pre-built ICU data (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/icu.git@56local_patches
Patch Set: address review comments Created 4 years, 11 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 | « scripts/clean_up_data_source.sh ('k') | scripts/copy_data_android.sh » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/copy_data.sh
diff --git a/scripts/copy_data.sh b/scripts/copy_data.sh
new file mode 100755
index 0000000000000000000000000000000000000000..cfd3e9e38d3657bcc36aa028b8a8530112e67e87
--- /dev/null
+++ b/scripts/copy_data.sh
@@ -0,0 +1,18 @@
+#!/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 Linux"
+cp "data/out/tmp/icudt${VERSION}l.dat" "${TOPSRC}/source/data/in/icudtl.dat"
+cp "data/out/tmp/icudt${VERSION}l_dat.S" "${TOPSRC}/linux/icudtl_dat.S"
+
+"${TOPSRC}/scripts/make_mac_assembly.sh"
+
+echo "Done with copying pre-built ICU data files."
« no previous file with comments | « scripts/clean_up_data_source.sh ('k') | scripts/copy_data_android.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698