mirror of
https://github.com/nestriness/cdc-file-transfer.git
synced 2026-01-30 12:25:35 +02:00
Add linter workflow (#33)
This commit is contained in:
4
third_party/blake3/BUILD.bazel
vendored
4
third_party/blake3/BUILD.bazel
vendored
@@ -2,10 +2,12 @@
|
||||
# BLAKE3 is a very fast cryptographic hash function, see README.md for details.
|
||||
#
|
||||
|
||||
licenses(["unencumbered"]) # Creative Commons CC0
|
||||
load("@rules_cc//cc:defs.bzl", "cc_binary", "cc_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
licenses(["unencumbered"]) # Creative Commons CC0
|
||||
|
||||
exports_files(["LICENSE"])
|
||||
|
||||
config_setting(
|
||||
|
||||
5
third_party/dirent/BUILD.bazel
vendored
5
third_party/dirent/BUILD.bazel
vendored
@@ -1,13 +1,14 @@
|
||||
# Description:
|
||||
# This project provides Linux compatible Dirent interface for Microsoft Windows.
|
||||
#
|
||||
load("@rules_cc//cc:defs.bzl", "cc_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
licenses(["notice"]) # MIT license
|
||||
|
||||
exports_files(["LICENSE"])
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
cc_library(
|
||||
name = "dirent",
|
||||
hdrs = ["include/dirent.h"],
|
||||
|
||||
4
third_party/fuse/BUILD
vendored
4
third_party/fuse/BUILD
vendored
@@ -1,4 +1,6 @@
|
||||
# Yeti's custom BUILD file
|
||||
load("@rules_cc//cc:defs.bzl", "cc_binary", "cc_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
licenses(["restricted"]) # GPL (binary), LGPL (library)
|
||||
@@ -69,10 +71,10 @@ cc_library(
|
||||
"-lpthread",
|
||||
"-ldl",
|
||||
],
|
||||
linkstatic = 1, # Required to make symbols show up in libfuse.so above.
|
||||
visibility = ["//visibility:private"],
|
||||
deps = [":fuse_headers"],
|
||||
alwayslink = 1,
|
||||
linkstatic = 1, # Required to make symbols show up in libfuse.so above.
|
||||
)
|
||||
|
||||
cc_library(
|
||||
|
||||
2
third_party/zstd/BUILD.bazel
vendored
2
third_party/zstd/BUILD.bazel
vendored
@@ -1,3 +1,5 @@
|
||||
load("@rules_cc//cc:defs.bzl", "cc_library")
|
||||
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
Reference in New Issue
Block a user