drop unused files
The ebuild installs symlinks directly now, so these files aren't used.
BUG=None
TEST=CQ passes
Change-Id: Id8654bdb24aedef1ae52c42c5001bbf5ad104362
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crostestutils/+/6643447
Reviewed-by: Andrew Luo <aluo@chromium.org>
Auto-Submit: Mike Frysinger <vapier@chromium.org>
Tested-by: Mike Frysinger <vapier@chromium.org>
Reviewed-by: Raul Rangel <rrangel@chromium.org>
Commit-Queue: Raul Rangel <rrangel@chromium.org>
diff --git a/Makefile b/Makefile
deleted file mode 100644
index ce5656f..0000000
--- a/Makefile
+++ /dev/null
@@ -1,17 +0,0 @@
-# Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-BOOTPERF_WRAPPER = /mnt/host/source/src/platform/crostestutils/bootperf-wrapper
-
-all: test_scripts
-
-test_scripts:
- @echo "Preparing test scripts."
-
-install:
- mkdir -p "${DESTDIR}/usr/bin"
- install -m 0755 cros_run_bvt "${DESTDIR}/usr/bin"
- install -m 0755 test_that ${DESTDIR}/usr/bin
- ln -sfT "${BOOTPERF_WRAPPER}" "${DESTDIR}/usr/bin/bootperf"
- ln -sfT "${BOOTPERF_WRAPPER}" "${DESTDIR}/usr/bin/showbootdata"
diff --git a/bootperf-wrapper b/bootperf-wrapper
deleted file mode 100755
index 80c91fb..0000000
--- a/bootperf-wrapper
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/bash
-# Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-SCRIPT_ROOT=$(dirname "$(readlink -f "$0")")
-SCRIPT=${SCRIPT_ROOT}/performance/bootperf-bin/$(basename "$0")
-
-if [ ! -f "${SCRIPT}" ]; then
- echo "${SCRIPT} not found."
- echo "This script must be run inside the chroot. Aborting"
- exit 1
-fi
-
-exec "${SCRIPT}" "$@"