Android: remove -lcutils dependency

I believe we no longer depend on this after we ported our atomics to __sync.

Tested by running android_ninja.

BUG=skia:
R=scroggo@google.com, mtklein@google.com

Author: mtklein@chromium.org

Review URL: https://codereview.chromium.org/318493002
This commit is contained in:
mtklein 2014-06-03 15:38:18 -07:00 коммит произвёл Commit bot
Родитель 30bf3e2ffc
Коммит bec3634a4a
6 изменённых файлов: 3 добавлений и 11 удалений

Просмотреть файл

@ -38,7 +38,6 @@
{
'libraries': [
'-lskia',
'-lcutils',
],
},
],

Просмотреть файл

@ -63,10 +63,7 @@
],
'conditions': [
['skia_android_framework', {
'libraries': [
'-lcutils',
'-lskia',
],
'libraries': [ '-lskia' ],
}],
['skia_poppler_enabled', {
'sources': [ '../src/utils/SkPDFRasterizer.cpp' ],

Просмотреть файл

@ -55,7 +55,6 @@
['skia_android_framework', {
'libraries': [
'-lskia',
'-lcutils',
],
}],
['skia_run_pdfviewer_in_gm or skia_poppler_enabled', {

Просмотреть файл

@ -18,7 +18,6 @@
[ 'skia_android_framework == 1', {
'libraries': [
'-lskia',
'-lcutils',
],
'libraries!': [
'-lz',

Просмотреть файл

@ -29,7 +29,6 @@ for library_file in \
libm.so \
liblog.so \
libz.so \
libcutils.so \
libgccdemangle.so \
libcorkscrew.so \
libutils.so \
@ -66,4 +65,4 @@ $ADB shell ps | grep ${APP_NAME} | awk '{print $2}' | xargs $ADB shell kill
# Starting up gdbserver in android shell
echo "Starting gdbserver with command: ${APP_ARGS[@]}"
$ADB shell /data/local/tmp/gdbserver :5039 /data/local/tmp/skia_launcher ${APP_ARGS[@]} &
$ADB shell /data/local/tmp/gdbserver :5039 /data/local/tmp/skia_launcher ${APP_ARGS[@]} &

Просмотреть файл

@ -1,7 +1,7 @@
#!/bin/bash
#
# android_perf: utility for running perf on an android device
#
#
# The basic usage sequence is to run...
# 1) perf record [gm/tests/bench] # runs profiler on specified app
# 2) perf report # prints profiler results
@ -42,7 +42,6 @@ perf_setup() {
echo "Copying symbol files"
adb_pull_if_needed /system/lib/libc.so $TMP_SYS_LIB
adb_pull_if_needed /system/lib/libstlport.so $TMP_SYS_LIB
adb_pull_if_needed /system/lib/libcutils.so $TMP_SYS_LIB
adb_pull_if_needed /system/lib/libGLESv2.so $TMP_SYS_LIB
adb_pull_if_needed /system/lib/libandroid.so $TMP_SYS_LIB
adb_pull_if_needed /system/lib/libm.so $TMP_SYS_LIB