Skip to content

Commit

Permalink
TermSharp
Browse files Browse the repository at this point in the history
Internal-tag: [#49833]
Signed-off-by: Pawel Czarnecki <pczarnecki@antmicro.com>
  • Loading branch information
lpawelcz committed Oct 25, 2023
1 parent e32c283 commit ee5c990
Show file tree
Hide file tree
Showing 5 changed files with 50 additions and 60 deletions.
35 changes: 29 additions & 6 deletions renode_sources/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -2934,12 +2934,35 @@ filegroup(
]
)

#filegroup(
# name = "",
# srcs = [
# ]
#)
#
filegroup(
name = "termsharp",
srcs = [
"lib/termsharp/LayoutParameters.cs",
"lib/termsharp/ILayoutParameters.cs",
"lib/termsharp/Terminal.cs",
"lib/termsharp/SelectionMode.cs",
"lib/termsharp/SelectionDirection.cs",
"lib/termsharp/Cursor.cs",
"lib/termsharp/Rows/MonospaceTextRow.cs",
"lib/termsharp/Vt100/IDecoderLogger.cs",
"lib/termsharp/Vt100/ConsoleDecoderLogger.cs",
"lib/termsharp/Vt100/Decoder.cs",
"lib/termsharp/Vt100/Encoder.cs",
"lib/termsharp/Vt100/DecoderCommands.cs",
"lib/termsharp/Vt100/ControlByte.cs",
"lib/termsharp/Vt100/Vt100ITermFileEscapeCodeHandler.cs",
"lib/termsharp/Misc/SimpleCache.cs",
"lib/termsharp/Misc/Utilities.cs",
"lib/termsharp/Rows/IRow.cs",
"lib/termsharp/Misc/IntegerPosition.cs",
"lib/termsharp/Misc/ClipboardData.cs",
"lib/termsharp/Vt100/ByteUtf8Decoder.cs",
"lib/termsharp/Misc/IGenerationAware.cs",
"lib/termsharp/Rows/ImageRow.cs",
"lib/termsharp/Rows/RowUtils.cs",
]
)

#filegroup(
# name = "",
# srcs = [
Expand Down
21 changes: 21 additions & 0 deletions toolchain_renode/termsharp/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
load(
"@rules_dotnet//dotnet:defs.bzl",
"csharp_library",
)

package(default_visibility = ["//visibility:public"])

csharp_library(
name = "TermSharp",
srcs = ["@renode_sources//:termsharp"],
internals_visible_to = ["lib_termsharp"],
target_frameworks = ["net6.0"],
targeting_packs = [
"@rules_dotnet_nuget_packages//microsoft.netcore.app.ref",
],
deps = [
"//toolchain_renode/Xwt:Xwt",
],
defines = ["NET"],
)

Empty file.
9 changes: 0 additions & 9 deletions toolchain_renode/termsharp/defs.bzl

This file was deleted.

45 changes: 0 additions & 45 deletions toolchain_renode/termsharp/termsharp.BUILD

This file was deleted.

0 comments on commit ee5c990

Please sign in to comment.