mirror of
https://github.com/depp/syncfiles.git
synced 2024-11-22 03:30:57 +00:00
5ad207f785
This simplifies the conversion test, since we don't need to be careful about which data we run the conversion test in. It will also simplify the command-line conversion tool and its distribution. The classic Mac OS version of this program will continue to embed conversion tables in the resource fork.
19 lines
341 B
Python
19 lines
341 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_binary")
|
|
|
|
go_binary(
|
|
name = "macscript",
|
|
srcs = [
|
|
"cdata.go",
|
|
"data.go",
|
|
"main.go",
|
|
"rez.go",
|
|
"scriptmap.go",
|
|
"source.go",
|
|
],
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//gen/charmap",
|
|
"//gen/table",
|
|
],
|
|
)
|