Summary: Remove experimental setup of fast-math and add `-ffast-math` as a compiler flag for yoga. Reviewed By: emilsjolander Differential Revision: D7414228 fbshipit-source-id: 320e1b1953f6af867b13e617af7872eb8999160e
46 lines
1.2 KiB
Python
46 lines
1.2 KiB
Python
# Copyright (c) 2014-present, Facebook, Inc.
|
|
#
|
|
# 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", "LIBRARY_COMPILER_FLAGS", "BASE_COMPILER_FLAGS", "GTEST_TARGET", "yoga_dep", "cxx_library", "cxx_test")
|
|
|
|
GMOCK_OVERRIDE_FLAGS = [
|
|
# gmock does not mark mocked methods as override, ignore the warnings in tests
|
|
"-Wno-inconsistent-missing-override",
|
|
]
|
|
|
|
COMPILER_FLAGS = LIBRARY_COMPILER_FLAGS + [
|
|
"-std=c++1y",
|
|
]
|
|
|
|
TEST_COMPILER_FLAGS = BASE_COMPILER_FLAGS + GMOCK_OVERRIDE_FLAGS + [
|
|
"-std=c++1y",
|
|
]
|
|
|
|
cxx_library(
|
|
name = "yoga",
|
|
srcs = glob(["yoga/*.cpp"]),
|
|
header_namespace = "",
|
|
exported_headers = subdir_glob([("", "yoga/*.h")]),
|
|
compiler_flags = COMPILER_FLAGS,
|
|
soname = "libyogacore.$(ext)",
|
|
tests = [":YogaTests"],
|
|
visibility = ["PUBLIC"],
|
|
deps = [
|
|
yoga_dep("lib/fb:ndklog"),
|
|
],
|
|
)
|
|
|
|
cxx_test(
|
|
name = "YogaTests",
|
|
srcs = glob(["tests/*.cpp"]),
|
|
compiler_flags = TEST_COMPILER_FLAGS,
|
|
contacts = ["emilsj@fb.com"],
|
|
visibility = ["PUBLIC"],
|
|
deps = [
|
|
":yoga",
|
|
GTEST_TARGET,
|
|
],
|
|
)
|