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
69 lines
1.6 KiB
Python
69 lines
1.6 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", "FBJNI_TARGET", "JNI_TARGET", "INFER_ANNOTATIONS_TARGET", "JSR_305_TARGET", "PROGRUARD_ANNOTATIONS_TARGET", "SOLOADER_TARGET", "JUNIT_TARGET", "FBJNI_JAVA_TARGET", "CXX_LIBRARY_WHITELIST", "ANDROID", "yoga_dep", "cxx_library", "java_library", "java_test", "java_binary")
|
|
|
|
cxx_library(
|
|
name = "jni",
|
|
srcs = glob(["jni/*.cpp"]),
|
|
header_namespace = "",
|
|
compiler_flags = [
|
|
"-fno-omit-frame-pointer",
|
|
"-fexceptions",
|
|
"-fPIC",
|
|
"-Wall",
|
|
"-Werror",
|
|
"-O3",
|
|
"-std=c++11",
|
|
],
|
|
platforms = ANDROID,
|
|
soname = "libyoga.$(ext)",
|
|
visibility = ["PUBLIC"],
|
|
deps = [
|
|
FBJNI_TARGET,
|
|
JNI_TARGET,
|
|
yoga_dep(":yoga"),
|
|
],
|
|
)
|
|
|
|
java_library(
|
|
name = "java",
|
|
srcs = glob(["com/facebook/yoga/*.java"]),
|
|
required_for_source_only_abi = True,
|
|
source = "1.7",
|
|
target = "1.7",
|
|
tests = [
|
|
yoga_dep("java:tests"),
|
|
],
|
|
visibility = ["PUBLIC"],
|
|
deps = [
|
|
":jni",
|
|
INFER_ANNOTATIONS_TARGET,
|
|
JSR_305_TARGET,
|
|
PROGRUARD_ANNOTATIONS_TARGET,
|
|
SOLOADER_TARGET,
|
|
],
|
|
)
|
|
|
|
java_test(
|
|
name = "tests",
|
|
srcs = glob(["tests/**/*.java"]),
|
|
cxx_library_whitelist = CXX_LIBRARY_WHITELIST,
|
|
use_cxx_libraries = True,
|
|
visibility = ["PUBLIC"],
|
|
deps = [
|
|
":java",
|
|
JUNIT_TARGET,
|
|
],
|
|
)
|
|
|
|
java_binary(
|
|
name = "yoga",
|
|
deps = [
|
|
":java",
|
|
FBJNI_JAVA_TARGET,
|
|
],
|
|
)
|