[gn build] Add a file that should have been in cfe02847496b856aa
authorNico Weber <thakis@chromium.org>
Tue, 7 Sep 2021 19:37:24 +0000 (15:37 -0400)
committerNico Weber <thakis@chromium.org>
Tue, 7 Sep 2021 19:37:24 +0000 (15:37 -0400)
llvm/utils/gn/secondary/lldb/source/Plugins/Architecture/Arm/BUILD.gn [new file with mode: 0644]

diff --git a/llvm/utils/gn/secondary/lldb/source/Plugins/Architecture/Arm/BUILD.gn b/llvm/utils/gn/secondary/lldb/source/Plugins/Architecture/Arm/BUILD.gn
new file mode 100644 (file)
index 0000000..aeb2713
--- /dev/null
@@ -0,0 +1,14 @@
+static_library("Arm") {
+  output_name = "lldbPluginArchitectureArm"
+  configs += [ "//llvm/utils/gn/build:lldb_code" ]
+  deps = [
+    "//lldb/source/Core",
+    "//lldb/source/Target",
+    "//lldb/source/Utility",
+    "//lldb/source/Plugins/Process/Utility",
+    "//llvm/lib/Support",
+  ]
+  # Uses source-relative paths for own includes.
+  include_dirs = [ "//lldb/source" ]
+  sources = [ "ArchitectureArm.cpp" ]
+}