Summary: For our -objc efforts we'll be excluding vendorlibs from these changes for now and then working on getting them to not have to be fully linked as a second effort. The way -objc flag works is its an all or nothing flag for the app and thus for any library we still want to link completely we'll have to add a link_whole = True to the BUCK file. (Otherwise we'll have crashes in these libraries :P). Reviewed By: kastiglione Differential Revision: D6252740 fbshipit-source-id: fe074977a11b70c4aa63a4c69cb7518906c98eb9
60 lines
1.6 KiB
Python
60 lines
1.6 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.
|
|
|
|
include_defs("//YOGA_DEFS")
|
|
|
|
COMPILER_FLAGS = [
|
|
"-fobjc-arc",
|
|
"-Wconditional-uninitialized",
|
|
"-Wdangling-else",
|
|
"-Wdeprecated-declarations",
|
|
"-Wimplicit-retain-self",
|
|
"-Wincomplete-implementation",
|
|
"-Wobjc-method-access",
|
|
"-Wobjc-missing-super-calls",
|
|
"-Wmismatched-return-types",
|
|
"-Wreturn-type",
|
|
"-Wno-global-constructors",
|
|
"-Wno-shadow",
|
|
"-Wunused-const-variable",
|
|
"-Wunused-function",
|
|
"-Wunused-property-ivar",
|
|
"-Wunused-result",
|
|
"-Wunused-value",
|
|
]
|
|
|
|
apple_library(
|
|
name = "YogaKit",
|
|
srcs = glob(["Source/**/*.m"]),
|
|
exported_headers = glob(["Source/**/*.h"]),
|
|
compiler_flags = COMPILER_FLAGS,
|
|
frameworks = [
|
|
"$SDKROOT/System/Library/Frameworks/Foundation.framework",
|
|
"$SDKROOT/System/Library/Frameworks/UIKit.framework",
|
|
],
|
|
link_whole = True,
|
|
visibility = ["PUBLIC"],
|
|
deps = [
|
|
yoga_dep(":yoga"),
|
|
],
|
|
)
|
|
|
|
apple_test(
|
|
name = "YogaKitTests",
|
|
srcs = glob(["Tests/**/*.m"]),
|
|
compiler_flags = COMPILER_FLAGS,
|
|
frameworks = [
|
|
"$PLATFORM_DIR/Developer/Library/Frameworks/XCTest.framework",
|
|
"$SDKROOT/System/Library/Frameworks/CoreGraphics.framework",
|
|
],
|
|
info_plist = "Tests/Info.plist",
|
|
visibility = ["PUBLIC"],
|
|
deps = [
|
|
":YogaKit",
|
|
],
|
|
)
|