blob: 7c098f5411c6578f47d9008a2041d438e1e10120 [file] [log] [blame]
"""
Allows to specialize the ruy BUILD to availability of external libraries
"""
def ruy_test_ext_defines():
return select({
"//tools/cc_target_os:windows": [],
"//conditions:default": ["RUY_TEST_EXTERNAL_PATHS"],
})
def ruy_test_ext_deps():
return select({
"//tools/cc_target_os:windows": [],
"//conditions:default": [
"//third_party/eigen3",
"//third_party/gemmlowp",
"//third_party/lapack:blas",
],
})