aboutsummaryrefslogtreecommitdiffhomepage
path: root/arm_compiler.BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'arm_compiler.BUILD')
-rw-r--r--arm_compiler.BUILD81
1 files changed, 81 insertions, 0 deletions
diff --git a/arm_compiler.BUILD b/arm_compiler.BUILD
new file mode 100644
index 0000000000..db2e9bbe1e
--- /dev/null
+++ b/arm_compiler.BUILD
@@ -0,0 +1,81 @@
+package(default_visibility = ["//visibility:public"])
+
+filegroup(
+ name = "gcc",
+ srcs = [
+ "bin/arm-linux-gnueabihf-gcc",
+ ],
+)
+
+filegroup(
+ name = "ar",
+ srcs = [
+ "bin/arm-linux-gnueabihf-ar",
+ ],
+)
+
+filegroup(
+ name = "ld",
+ srcs = [
+ "bin/arm-linux-gnueabihf-ld",
+ ],
+)
+
+filegroup(
+ name = "nm",
+ srcs = [
+ "bin/arm-linux-gnueabihf-nm",
+ ],
+)
+
+filegroup(
+ name = "objcopy",
+ srcs = [
+ "bin/arm-linux-gnueabihf-objcopy",
+ ],
+)
+
+filegroup(
+ name = "objdump",
+ srcs = [
+ "bin/arm-linux-gnueabihf-objdump",
+ ],
+)
+
+filegroup(
+ name = "strip",
+ srcs = [
+ "bin/arm-linux-gnueabihf-strip",
+ ],
+)
+
+filegroup(
+ name = "as",
+ srcs = [
+ "bin/arm-linux-gnueabihf-as",
+ ],
+)
+
+filegroup(
+ name = "compiler_pieces",
+ srcs = glob([
+ "arm-linux-gnueabihf/**",
+ "libexec/**",
+ "lib/gcc/arm-linux-gnueabihf/**",
+ "include/**",
+ ]),
+)
+
+filegroup(
+ name = "compiler_components",
+ srcs = [
+ ":ar",
+ ":as",
+ ":gcc",
+ ":ld",
+ ":nm",
+ ":objcopy",
+ ":objdump",
+ ":strip",
+ ],
+)