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

Side by Side Diff: scripts/copy_data_android.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, 10 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 unified diff | Download patch
« no previous file with comments | « scripts/copy_data.sh ('k') | scripts/data_common.sh » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #!/bin/bash
2 # Copyright (c) 2015 The Chromium Authors. All rights reserved.
3 # # Use of this source code is governed by a BSD-style license that can be
4 # # found in the LICENSE file.
5 #
6 # This script is tested ONLY on Linux. It may not work correctly on
7 # Mac OS X.
8 #
9 TOPSRC="$(dirname "$0")/.."
10 source "${TOPSRC}/scripts/data_common.sh"
11
12 echo "Copying icudtl.dat and the corresponding assembly source for Android"
13
14 cp "data/out/tmp/icudt${VERSION}l.dat" "${TOPSRC}/android/icudtl.dat"
15 cp "data/out/tmp/icudt${VERSION}l_dat.S" "${TOPSRC}/android/icudtl_dat.S"
16
17 echo "Done with copying pre-built ICU data files for Android."
OLDNEW
« no previous file with comments | « scripts/copy_data.sh ('k') | scripts/data_common.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698