Clean up BUCK files for missing dependencies and tests

Summary: Several of dependencies and tests in repository are missing (e.g. because we don't support building certain library for MacOSX). Clean up those mistakes.

Differential Revision: D7625433

fbshipit-source-id: 332b7ff7eaed82cb52f459921f1ae67b702a1636
This commit is contained in:
Jakub Grzmiel
2018-04-14 15:27:04 -07:00
committed by Facebook Github Bot
parent 5b7adda620
commit 9b8323ff38
3 changed files with 6 additions and 4 deletions

View File

@@ -3,7 +3,7 @@
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.
load("//:yoga_defs.bzl", "yoga_dep")
load("//:yoga_defs.bzl", "yoga_dep", "ANDROID", "APPLE")
cxx_binary(
name = "benchmark",
@@ -18,6 +18,7 @@ cxx_binary(
"-O3",
"-std=c11",
],
platforms = (ANDROID, APPLE),
visibility = ["PUBLIC"],
deps = [
yoga_dep(":yoga"),