diff options
author | Mike Klein <mtklein@chromium.org> | 2017-02-06 12:26:51 -0500 |
---|---|---|
committer | Mike Klein <mtklein@chromium.org> | 2017-02-06 17:55:35 +0000 |
commit | 160907f8defef112c358cdd5cb9e5e093ca93b09 (patch) | |
tree | 370fd63868b81fbc488b2cc7a672a0b015db92b4 /bin | |
parent | 199fb875c5e63c13233209e89b943c7ac7ab6665 (diff) |
Clean up more references to GYP.
Delete files only used by GYP, and files that used GYP. Neither can
possibly be actively used. Beyond that, just a couple doc tweaks.
Change-Id: I0220d7226e7bb9ed7c54a7d8f2906a718313c521
Reviewed-on: https://skia-review.googlesource.com/8062
Commit-Queue: Mike Klein <mtklein@chromium.org>
Reviewed-by: Hal Canary <halcanary@google.com>
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/ac | 26 | ||||
-rwxr-xr-x | bin/c | 26 |
2 files changed, 0 insertions, 52 deletions
diff --git a/bin/ac b/bin/ac deleted file mode 100755 index 30e9534612..0000000000 --- a/bin/ac +++ /dev/null @@ -1,26 +0,0 @@ -#!/bin/sh - -set -e - -BRANCH=$(git branch | grep \* | cut -d" " -f 2) -CLEAN=${CLEAN-clean} -SAMPLES=100 - -if [ "$BRANCH" = "$CLEAN" ]; then - echo "Comparing $BRANCH to itself." - exit 1 -fi - -if [ ! -f $CLEAN.log ]; then - git checkout $CLEAN - ./gyp_skia >/dev/null - platform_tools/android/bin/android_ninja -t Release nanobench - platform_tools/android/bin/android_run_skia -t Release nanobench $@ --skps /data/local/tmp/skps -i /data/local/tmp/resources --samples $SAMPLES -v > $CLEAN.log -fi - -git checkout $BRANCH -./gyp_skia >/dev/null -platform_tools/android/bin/android_ninja -t Release nanobench -platform_tools/android/bin/android_run_skia -t Release nanobench $@ --skps /data/local/tmp/skps -i /data/local/tmp/resources --samples $SAMPLES -v > $BRANCH.log - -./bin/compare $CLEAN.log $BRANCH.log diff --git a/bin/c b/bin/c deleted file mode 100755 index fca46d40f6..0000000000 --- a/bin/c +++ /dev/null @@ -1,26 +0,0 @@ -#!/bin/sh - -set -e - -BRANCH=$(git branch | grep \* | cut -d" " -f 2) -CLEAN=${CLEAN-clean} -SAMPLES=100 - -if [ "$BRANCH" = "$CLEAN" ]; then - echo "Comparing $BRANCH to itself." - exit 1 -fi - -if [ ! -f $CLEAN.log ]; then - git checkout $CLEAN - python gyp_skia >/dev/null - ninja -C out/Release nanobench - out/Release/nanobench $@ --samples $SAMPLES -v 2> $CLEAN.log -fi - -git checkout $BRANCH -python gyp_skia >/dev/null -ninja -C out/Release nanobench -out/Release/nanobench $@ --samples $SAMPLES -v 2> $BRANCH.log - -python bin/compare $CLEAN.log $BRANCH.log |