[llvm] 015cbd7 - [gn build] (manually) port 15ab7bc3af3c (TestingSupportTests)
Nico Weber via llvm-commits
llvm-commits at lists.llvm.org
Tue Mar 1 15:50:30 PST 2022
Author: Nico Weber
Date: 2022-03-01T18:50:22-05:00
New Revision: 015cbd7218e0e0d20d621068a2086d7025117bf4
URL: https://github.com/llvm/llvm-project/commit/015cbd7218e0e0d20d621068a2086d7025117bf4
DIFF: https://github.com/llvm/llvm-project/commit/015cbd7218e0e0d20d621068a2086d7025117bf4.diff
LOG: [gn build] (manually) port 15ab7bc3af3c (TestingSupportTests)
Added:
llvm/utils/gn/secondary/llvm/unittests/Testing/Support/BUILD.gn
Modified:
llvm/utils/gn/secondary/llvm/unittests/BUILD.gn
Removed:
################################################################################
diff --git a/llvm/utils/gn/secondary/llvm/unittests/BUILD.gn b/llvm/utils/gn/secondary/llvm/unittests/BUILD.gn
index cd92504743a50..2d6a2a8accb47 100644
--- a/llvm/utils/gn/secondary/llvm/unittests/BUILD.gn
+++ b/llvm/utils/gn/secondary/llvm/unittests/BUILD.gn
@@ -42,6 +42,7 @@ group("unittests") {
"Support:SupportTests",
"Support/DynamicLibrary:DynamicLibraryTests",
"TableGen:TableGenTests",
+ "Testing/Support:TestingSupportTests",
"TextAPI:TextAPITests",
"Transforms/IPO:IPOTests",
"Transforms/Scalar:ScalarTests",
diff --git a/llvm/utils/gn/secondary/llvm/unittests/Testing/Support/BUILD.gn b/llvm/utils/gn/secondary/llvm/unittests/Testing/Support/BUILD.gn
new file mode 100644
index 0000000000000..590148dcae7eb
--- /dev/null
+++ b/llvm/utils/gn/secondary/llvm/unittests/Testing/Support/BUILD.gn
@@ -0,0 +1,9 @@
+import("//llvm/utils/unittest/unittest.gni")
+
+unittest("TestingSupportTests") {
+ deps = [
+ "//llvm/lib/Support",
+ "//llvm/lib/Testing/Support",
+ ]
+ sources = [ "TempPathTest.cpp" ]
+}
More information about the llvm-commits
mailing list