Reviewed By: emilsjolander Differential Revision: D6494379 fbshipit-source-id: f6b78d8a1b3d4bcdeef350ad7bd097cdbe5d15b1
49 lines
1.3 KiB
Python
49 lines
1.3 KiB
Python
# Copyright (c) 2014-present, Facebook, Inc.
|
|
# All rights reserved.
|
|
#
|
|
# This source code is licensed under the BSD-style license found in the
|
|
# LICENSE file in the root directory of this source tree. An additional grant
|
|
# of patent rights can be found in the PATENTS file in the same directory.
|
|
|
|
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",
|
|
"-Wno-global-constructors",
|
|
]
|
|
|
|
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,
|
|
],
|
|
)
|