OSDN Git Service

android: utils: remove redundant Android.bp
authorMauro Rossi <issor.oruam@gmail.com>
Sat, 23 Feb 2019 12:19:34 +0000 (13:19 +0100)
committerMauro Rossi <issor.oruam@gmail.com>
Thu, 15 Apr 2021 11:05:05 +0000 (13:05 +0200)
To avoid build errors with pie-x86

Implemented via following commands:

rm utils/count/Android.bp
rm utils/FileCheck/Android.bp
rm utils/yaml-bench/Android.bp
rm utils/not/Android.bp

llvm/utils/FileCheck/Android.bp [deleted file]
llvm/utils/count/Android.bp [deleted file]
llvm/utils/not/Android.bp [deleted file]
llvm/utils/yaml-bench/Android.bp [deleted file]

diff --git a/llvm/utils/FileCheck/Android.bp b/llvm/utils/FileCheck/Android.bp
deleted file mode 100644 (file)
index e21b9de..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-cc_binary_host {
-    name: "FileCheck",
-    defaults: ["llvm-defaults"],
-    srcs: ["FileCheck.cpp"],
-    static_libs: ["libLLVMSupport"],
-    cflags: [
-        "-D__STDC_LIMIT_MACROS",
-        "-D__STDC_CONSTANT_MACROS",
-    ],
-}
diff --git a/llvm/utils/count/Android.bp b/llvm/utils/count/Android.bp
deleted file mode 100644 (file)
index 1d43809..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-//===---------------------------------------------------------------===
-// count command line tool
-//===---------------------------------------------------------------===
-
-cc_binary_host {
-    name: "count",
-    defaults: ["llvm-defaults"],
-    srcs: ["count.c"],
-}
diff --git a/llvm/utils/not/Android.bp b/llvm/utils/not/Android.bp
deleted file mode 100644 (file)
index 25a2f83..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-//===---------------------------------------------------------------===
-// not command line tool
-//===---------------------------------------------------------------===
-
-cc_binary_host {
-    name: "not",
-    defaults: ["llvm-defaults"],
-    srcs: ["not.cpp"],
-    static_libs: [
-        "libLLVMCore",
-        "libLLVMSupport",
-    ],
-}
diff --git a/llvm/utils/yaml-bench/Android.bp b/llvm/utils/yaml-bench/Android.bp
deleted file mode 100644 (file)
index df5092f..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-// yaml-bench executable for the host
-// =====================================================
-
-cc_binary_host {
-    name: "yaml-bench",
-    defaults: ["llvm-defaults"],
-    srcs: ["YAMLBench.cpp"],
-    static_libs: ["libLLVMSupport"],
-}