mirror of
https://github.com/google/sandboxed-api.git
synced 2024-03-22 13:11:30 +08:00
24 lines
547 B
Python
Executable File
24 lines
547 B
Python
Executable File
cc_library(
|
|
name = "butteraugli_lib",
|
|
srcs = [
|
|
"butteraugli/butteraugli.cc",
|
|
"butteraugli/butteraugli.h",
|
|
],
|
|
hdrs = [
|
|
"butteraugli/butteraugli.h",
|
|
],
|
|
copts = ["-Wno-sign-compare"],
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
cc_binary(
|
|
name = "butteraugli",
|
|
srcs = ["butteraugli/butteraugli_main.cc"],
|
|
copts = ["-Wno-sign-compare"],
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
":butteraugli_lib",
|
|
"@jpeg_archive//:jpeg",
|
|
"@png_archive//:png",
|
|
],
|
|
) |