Summary: This diff disables submodules for dependencies of IG that are not `ig_apple_library` and are exporting non-modular dependencies. This will allow for migration to using submodules as a default. The list of targets was obtained with: ``` % buck query 'kind(apple_library, attrfilter(labels, skip_module_validation, deps(igios)) - attrfilter(labels, ig_apple_library, deps(igios)))' ``` Reviewed By: ebgraham Differential Revision: D32399636 fbshipit-source-id: f3ba55def8001e8595fe3b1611d2de8ec38c8622
70 lines
1.9 KiB
Python
70 lines
1.9 KiB
Python
# Copyright (c) Facebook, Inc. and its affiliates.
|
|
#
|
|
# This source code is licensed under the MIT license found in the
|
|
# LICENSE file in the root directory of this source tree.
|
|
load("//tools/build_defs/oss:yoga_defs.bzl", "subdir_glob", "yoga_apple_library", "yoga_apple_test", "yoga_dep")
|
|
|
|
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",
|
|
]
|
|
|
|
yoga_apple_library(
|
|
name = "YogaKit",
|
|
srcs = glob(["Source/**/*.m"]),
|
|
header_namespace = "",
|
|
exported_headers = subdir_glob(
|
|
[
|
|
("", "Source/**/*.h"),
|
|
("Source", "**/*.h"),
|
|
],
|
|
prefix = "YogaKit",
|
|
),
|
|
compiler_flags = COMPILER_FLAGS,
|
|
frameworks = [
|
|
"$SDKROOT/System/Library/Frameworks/CoreGraphics.framework",
|
|
"$SDKROOT/System/Library/Frameworks/Foundation.framework",
|
|
"$SDKROOT/System/Library/Frameworks/UIKit.framework",
|
|
],
|
|
header_path_prefix = "",
|
|
labels = ["skip_module_validation"],
|
|
link_whole = True,
|
|
modular = True,
|
|
module_name = "YogaKit",
|
|
use_submodules = False,
|
|
visibility = ["PUBLIC"],
|
|
deps = [
|
|
yoga_dep(":yoga"),
|
|
],
|
|
)
|
|
|
|
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",
|
|
],
|
|
)
|