mirror of
https://github.com/thead-yocto-mirror/skia
synced 2026-07-30 11:48:20 +02:00
17 lines
509 B
Bash
Executable File
17 lines
509 B
Bash
Executable File
#!/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 for Android"
|
|
|
|
cp "data/out/tmp/icudt${VERSION}l.dat" "${TOPSRC}/android/icudtl.dat"
|
|
|
|
echo "Done with copying pre-built ICU data file for Android."
|