19 lines
385 B
Text
19 lines
385 B
Text
# Used by open source projects to support `prelude//`
|
|
|
|
constraint_setting(
|
|
name = "cpu",
|
|
visibility = ["PUBLIC"],
|
|
)
|
|
|
|
constraint_value(
|
|
name = "x86_64",
|
|
constraint_setting = ":cpu",
|
|
visibility = ["PUBLIC"],
|
|
)
|
|
|
|
# Represents various flavors of ARM64, e.g., arm64_32
|
|
constraint_value(
|
|
name = "arm64",
|
|
constraint_setting = ":cpu",
|
|
visibility = ["PUBLIC"],
|
|
)
|