Apply auto-formatter for BUCK files in fbandroid.

Summary:
For more background, see:

https://fb.facebook.com/groups/303159406399348/permalink/1334977403217538/
https://fburl.com/auto-format-build-files
D4527873

fbshipit-source-id: 278ce6f67f5df830b2218e3aca69be103d3c56a6
This commit is contained in:
Michael Bolin
2017-02-24 21:40:45 -08:00
committed by Facebook Github Bot
parent d6d4dcb141
commit 47d8d9d22b
19 changed files with 314 additions and 307 deletions

38
BUCK
View File

@@ -5,38 +5,42 @@
# LICENSE file in the root directory of this source tree. An additional grant # 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. # of patent rights can be found in the PATENTS file in the same directory.
include_defs('//YOGA_DEFS') include_defs("//YOGA_DEFS")
GMOCK_OVERRIDE_FLAGS = [ GMOCK_OVERRIDE_FLAGS = [
# gmock does not mark mocked methods as override, ignore the warnings in tests # gmock does not mark mocked methods as override, ignore the warnings in tests
'-Wno-inconsistent-missing-override', "-Wno-inconsistent-missing-override",
] ]
COMPILER_FLAGS = BASE_COMPILER_FLAGS + ['-std=c11', '-fPIC'] COMPILER_FLAGS = BASE_COMPILER_FLAGS + [
TEST_COMPILER_FLAGS = BASE_COMPILER_FLAGS + GMOCK_OVERRIDE_FLAGS + ['-std=c++11'] "-std=c11",
"-fPIC",
]
TEST_COMPILER_FLAGS = BASE_COMPILER_FLAGS + GMOCK_OVERRIDE_FLAGS + ["-std=c++11"]
cxx_library( cxx_library(
name = 'yoga', name = "yoga",
soname = 'libyogacore.$(ext)', srcs = glob(["yoga/*.c"]),
srcs = glob(['yoga/*.c']),
tests=[':YogaTests'],
exported_headers = subdir_glob([('', 'yoga/*.h')]),
header_namespace = '',
compiler_flags = COMPILER_FLAGS, compiler_flags = COMPILER_FLAGS,
exported_headers = subdir_glob([("", "yoga/*.h")]),
header_namespace = "",
soname = "libyogacore.$(ext)",
tests = [":YogaTests"],
visibility = ["PUBLIC"],
deps = [] if THIS_IS_FBOBJC else [ deps = [] if THIS_IS_FBOBJC else [
yoga_dep('lib/fb:ndklog'), yoga_dep("lib/fb:ndklog"),
], ],
visibility = ['PUBLIC'],
) )
cxx_test( cxx_test(
name = 'YogaTests', name = "YogaTests",
contacts = ['emilsj@fb.com'], srcs = glob(["tests/*.cpp"]),
srcs = glob(['tests/*.cpp']),
compiler_flags = TEST_COMPILER_FLAGS, compiler_flags = TEST_COMPILER_FLAGS,
contacts = ["emilsj@fb.com"],
visibility = ["PUBLIC"],
deps = [ deps = [
':yoga', ":yoga",
GTEST_TARGET, GTEST_TARGET,
], ],
visibility = ['PUBLIC'],
) )

View File

@@ -5,54 +5,54 @@
# LICENSE file in the root directory of this source tree. An additional grant # 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. # of patent rights can be found in the PATENTS file in the same directory.
include_defs('//YOGA_DEFS') include_defs("//YOGA_DEFS")
COMPILER_FLAGS = [ COMPILER_FLAGS = [
'-fobjc-arc', "-fobjc-arc",
'-Wconditional-uninitialized', "-Wconditional-uninitialized",
'-Wdangling-else', "-Wdangling-else",
'-Wdeprecated-declarations', "-Wdeprecated-declarations",
'-Wimplicit-retain-self', "-Wimplicit-retain-self",
'-Wincomplete-implementation', "-Wincomplete-implementation",
'-Wobjc-method-access', "-Wobjc-method-access",
'-Wobjc-missing-super-calls', "-Wobjc-missing-super-calls",
'-Wmismatched-return-types', "-Wmismatched-return-types",
'-Wreturn-type', "-Wreturn-type",
'-Wno-global-constructors', "-Wno-global-constructors",
'-Wno-shadow', "-Wno-shadow",
'-Wunused-const-variable', "-Wunused-const-variable",
'-Wunused-function', "-Wunused-function",
'-Wunused-property-ivar', "-Wunused-property-ivar",
'-Wunused-result', "-Wunused-result",
'-Wunused-value', "-Wunused-value",
] ]
apple_library( apple_library(
name = 'YogaKit', name = "YogaKit",
srcs = glob(["Source/**/*.m"]),
compiler_flags = COMPILER_FLAGS, compiler_flags = COMPILER_FLAGS,
srcs = glob(['Source/**/*.m']), exported_headers = glob(["Source/**/*.h"]),
exported_headers = glob(['Source/**/*.h']),
frameworks = [ frameworks = [
'$SDKROOT/System/Library/Frameworks/Foundation.framework', "$SDKROOT/System/Library/Frameworks/Foundation.framework",
'$SDKROOT/System/Library/Frameworks/UIKit.framework', "$SDKROOT/System/Library/Frameworks/UIKit.framework",
], ],
visibility = ["PUBLIC"],
deps = [ deps = [
yoga_dep(':yoga'), yoga_dep(":yoga"),
], ],
visibility = ['PUBLIC'],
) )
apple_test( apple_test(
name = 'YogaKitTests', name = "YogaKitTests",
srcs = glob(["Tests/**/*.m"]),
compiler_flags = COMPILER_FLAGS, compiler_flags = COMPILER_FLAGS,
info_plist = 'Tests/Info.plist',
srcs = glob(['Tests/**/*.m']),
frameworks = [ frameworks = [
'$SDKROOT/System/Library/Frameworks/CoreGraphics.framework', "$SDKROOT/System/Library/Frameworks/CoreGraphics.framework",
'$PLATFORM_DIR/Developer/Library/Frameworks/XCTest.framework', "$PLATFORM_DIR/Developer/Library/Frameworks/XCTest.framework",
], ],
info_plist = "Tests/Info.plist",
visibility = ["PUBLIC"],
deps = [ deps = [
':YogaKit', ":YogaKit",
], ],
visibility = ['PUBLIC'],
) )

View File

@@ -5,11 +5,14 @@
# LICENSE file in the root directory of this source tree. An additional grant # 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. # of patent rights can be found in the PATENTS file in the same directory.
include_defs('//YOGA_DEFS') include_defs("//YOGA_DEFS")
android_aar( android_aar(
name = 'android', name = "android",
manifest_skeleton = 'src/main/AndroidManifest.xml', manifest_skeleton = "src/main/AndroidManifest.xml",
visibility = [
"PUBLIC",
],
deps = [ deps = [
ANDROID_JAVA_TARGET, ANDROID_JAVA_TARGET,
ANDROID_RES_TARGET, ANDROID_RES_TARGET,
@@ -17,20 +20,17 @@ android_aar(
JAVA_TARGET, JAVA_TARGET,
PROGRUARD_ANNOTATIONS_TARGET, PROGRUARD_ANNOTATIONS_TARGET,
], ],
visibility = [
'PUBLIC',
],
) )
android_resource( android_resource(
name = 'res', name = "res",
res = 'src/main/res', package = "com.facebook.yoga.android",
package = 'com.facebook.yoga.android', res = "src/main/res",
visibility = [ visibility = [
'PUBLIC', "PUBLIC",
], ],
) )
project_config( project_config(
src_target = ':android', src_target = ":android",
) )

View File

@@ -4,12 +4,12 @@
# This source code is licensed under the license found in the # This source code is licensed under the license found in the
# LICENSE-examples file in the root directory of this source tree. # LICENSE-examples file in the root directory of this source tree.
include_defs('//YOGA_DEFS') include_defs("//YOGA_DEFS")
android_binary( android_binary(
name = 'sample', name = "sample",
manifest = 'AndroidManifest.xml', keystore = ":debug_keystore",
keystore = ':debug_keystore', manifest = "AndroidManifest.xml",
deps = [ deps = [
ANDROID_SAMPLE_JAVA_TARGET, ANDROID_SAMPLE_JAVA_TARGET,
ANDROID_SAMPLE_RES_TARGET, ANDROID_SAMPLE_RES_TARGET,
@@ -17,23 +17,23 @@ android_binary(
) )
android_resource( android_resource(
name = 'res', name = "res",
res = 'res', package = "com.facebook.samples.yoga",
package = 'com.facebook.samples.yoga', res = "res",
visibility = [
"PUBLIC",
],
deps = [ deps = [
ANDROID_RES_TARGET, ANDROID_RES_TARGET,
], ],
visibility = [
'PUBLIC',
],
) )
keystore( keystore(
name='debug_keystore', name = "debug_keystore",
store='debug.keystore', properties = "debug.keystore.properties",
properties='debug.keystore.properties', store = "debug.keystore",
) )
project_config( project_config(
src_target = ':sample', src_target = ":sample",
) )

View File

@@ -5,11 +5,14 @@
# LICENSE file in the root directory of this source tree. An additional grant # 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. # of patent rights can be found in the PATENTS file in the same directory.
include_defs('//YOGA_DEFS') include_defs("//YOGA_DEFS")
android_library( android_library(
name = 'yoga', name = "yoga",
srcs = glob(['**/*.java']), srcs = glob(["**/*.java"]),
visibility = [
"PUBLIC",
],
deps = [ deps = [
ANDROID_JAVA_TARGET, ANDROID_JAVA_TARGET,
ANDROID_SAMPLE_RES_TARGET, ANDROID_SAMPLE_RES_TARGET,
@@ -17,7 +20,4 @@ android_library(
APPCOMPAT_TARGET, APPCOMPAT_TARGET,
SOLOADER_TARGET, SOLOADER_TARGET,
], ],
visibility = [
'PUBLIC',
]
) )

View File

@@ -5,11 +5,14 @@
# LICENSE file in the root directory of this source tree. An additional grant # 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. # of patent rights can be found in the PATENTS file in the same directory.
include_defs('//YOGA_DEFS') include_defs("//YOGA_DEFS")
android_library( android_library(
name = 'android', name = "android",
srcs = glob(['**/*.java']), srcs = glob(["**/*.java"]),
visibility = [
"PUBLIC",
],
deps = [ deps = [
ANDROID_RES_TARGET, ANDROID_RES_TARGET,
INFER_ANNOTATIONS_TARGET, INFER_ANNOTATIONS_TARGET,
@@ -17,7 +20,4 @@ android_library(
JSR_305_TARGET, JSR_305_TARGET,
SOLOADER_TARGET, SOLOADER_TARGET,
], ],
visibility = [
'PUBLIC',
]
) )

View File

@@ -5,23 +5,23 @@
# LICENSE file in the root directory of this source tree. An additional grant # 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. # of patent rights can be found in the PATENTS file in the same directory.
include_defs('//YOGA_DEFS') include_defs("//YOGA_DEFS")
cxx_binary( cxx_binary(
name = 'benchmark', name = "benchmark",
srcs = glob(['*.c']), srcs = glob(["*.c"]),
headers = subdir_glob([('', '*.h')]),
header_namespace = '',
compiler_flags = [ compiler_flags = [
'-fno-omit-frame-pointer', "-fno-omit-frame-pointer",
'-fexceptions', "-fexceptions",
'-Wall', "-Wall",
'-Werror', "-Werror",
'-O3', "-O3",
'-std=c11', "-std=c11",
], ],
header_namespace = "",
headers = subdir_glob([("", "*.h")]),
visibility = ["PUBLIC"],
deps = [ deps = [
yoga_dep(':yoga'), yoga_dep(":yoga"),
], ],
visibility = ['PUBLIC'],
) )

View File

@@ -5,33 +5,33 @@
# LICENSE file in the root directory of this source tree. An additional grant # 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. # of patent rights can be found in the PATENTS file in the same directory.
include_defs('//YOGA_DEFS') include_defs("//YOGA_DEFS")
COMPILER_FLAGS = BASE_COMPILER_FLAGS + ['-std=c++11'] COMPILER_FLAGS = BASE_COMPILER_FLAGS + ["-std=c++11"]
csharp_library( csharp_library(
name = 'yogalibnet46', name = "yogalibnet46",
dll_name = 'Facebook.Yoga.dll', srcs = glob(["**/*.cs"]),
framework_ver = 'net46', dll_name = "Facebook.Yoga.dll",
srcs = glob(['**/*.cs']), framework_ver = "net46",
) )
csharp_library( csharp_library(
name = 'yogalibnet45', name = "yogalibnet45",
dll_name = 'Facebook.Yoga.dll', srcs = glob(["**/*.cs"]),
framework_ver = 'net45', dll_name = "Facebook.Yoga.dll",
srcs = glob(['**/*.cs']), framework_ver = "net45",
) )
cxx_library( cxx_library(
name = 'yoganet', name = "yoganet",
soname = 'libyoga.$(ext)', srcs = glob(["Yoga/YGInterop.cpp"]),
srcs = glob(['Yoga/YGInterop.cpp']),
compiler_flags = COMPILER_FLAGS, compiler_flags = COMPILER_FLAGS,
link_style = 'static', link_style = "static",
link_whole = True, link_whole = True,
deps = [yoga_dep(':yoga')], soname = "libyoga.$(ext)",
visibility = ['PUBLIC'], visibility = ["PUBLIC"],
deps = [yoga_dep(":yoga")],
) )
if isdir('/Applications/Xcode.app'): if isdir('/Applications/Xcode.app'):

View File

@@ -5,56 +5,56 @@
# LICENSE file in the root directory of this source tree. An additional grant # 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. # of patent rights can be found in the PATENTS file in the same directory.
include_defs('//YOGA_DEFS') include_defs("//YOGA_DEFS")
cxx_library( cxx_library(
name = 'jni', name = "jni",
soname = 'libyoga.$(ext)', srcs = glob(["jni/*.cpp"]),
srcs = glob(['jni/*.cpp']),
header_namespace = '',
compiler_flags = [ compiler_flags = [
'-fno-omit-frame-pointer', "-fno-omit-frame-pointer",
'-fexceptions', "-fexceptions",
'-fPIC', "-fPIC",
'-Wall', "-Wall",
'-Werror', "-Werror",
'-O3', "-O3",
'-std=c++11', "-std=c++11",
], ],
header_namespace = "",
soname = "libyoga.$(ext)",
visibility = ["PUBLIC"],
deps = [ deps = [
FBJNI_TARGET, FBJNI_TARGET,
JNI_TARGET, JNI_TARGET,
yoga_dep(':yoga'), yoga_dep(":yoga"),
], ],
visibility = ['PUBLIC'],
) )
java_library( java_library(
name = 'java', name = "java",
srcs = glob(['com/facebook/yoga/*.java']), srcs = glob(["com/facebook/yoga/*.java"]),
tests=[ source = "1.7",
yoga_dep('java:tests'), target = "1.7",
tests = [
yoga_dep("java:tests"),
], ],
source = '1.7', visibility = ["PUBLIC"],
target = '1.7',
deps = [ deps = [
':jni', ":jni",
INFER_ANNOTATIONS_TARGET, INFER_ANNOTATIONS_TARGET,
JSR_305_TARGET, JSR_305_TARGET,
PROGRUARD_ANNOTATIONS_TARGET, PROGRUARD_ANNOTATIONS_TARGET,
SOLOADER_TARGET, SOLOADER_TARGET,
], ],
visibility = ['PUBLIC'],
) )
java_test( java_test(
name = 'tests', name = "tests",
srcs = glob(['tests/**/*.java']), srcs = glob(["tests/**/*.java"]),
use_cxx_libraries = True,
cxx_library_whitelist = CXX_LIBRARY_WHITELIST, cxx_library_whitelist = CXX_LIBRARY_WHITELIST,
use_cxx_libraries = True,
visibility = ["PUBLIC"],
deps = [ deps = [
':java', ":java",
JUNIT_TARGET, JUNIT_TARGET,
], ],
visibility = ['PUBLIC'],
) )

View File

@@ -5,13 +5,13 @@
# LICENSE file in the root directory of this source tree. An additional grant # 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. # of patent rights can be found in the PATENTS file in the same directory.
include_defs('//YOGA_DEFS') include_defs("//YOGA_DEFS")
java_library( java_library(
name = 'annotations', name = "annotations",
srcs = glob(['*.java']), srcs = glob(["*.java"]),
source = '1.7', source = "1.7",
target = '1.7', target = "1.7",
deps = [],
visibility = [YOGA_ROOT], visibility = [YOGA_ROOT],
deps = [],
) )

View File

@@ -5,10 +5,10 @@
# LICENSE file in the root directory of this source tree. An additional grant # 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. # of patent rights can be found in the PATENTS file in the same directory.
include_defs('//YOGA_DEFS') include_defs("//YOGA_DEFS")
prebuilt_jar( prebuilt_jar(
name = 'android-support', name = "android-support",
binary_jar = 'android-support-v4.jar', binary_jar = "android-support-v4.jar",
visibility = [YOGA_ROOT], visibility = [YOGA_ROOT],
) )

View File

@@ -5,10 +5,10 @@
# LICENSE file in the root directory of this source tree. An additional grant # 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. # of patent rights can be found in the PATENTS file in the same directory.
include_defs('//YOGA_DEFS') include_defs("//YOGA_DEFS")
android_prebuilt_aar( android_prebuilt_aar(
name = 'appcompat', name = "appcompat",
aar = 'appcompat-v7-19.1.0.aar', aar = "appcompat-v7-19.1.0.aar",
visibility = [YOGA_ROOT], visibility = [YOGA_ROOT],
) )

View File

@@ -5,38 +5,41 @@
# LICENSE file in the root directory of this source tree. An additional grant # 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. # of patent rights can be found in the PATENTS file in the same directory.
include_defs('//YOGA_DEFS') include_defs("//YOGA_DEFS")
prebuilt_cxx_library( prebuilt_cxx_library(
name = 'ndklog', name = "ndklog",
header_only = True,
exported_platform_linker_flags = [ exported_platform_linker_flags = [
('^android.*', ['-llog']), (
"^android.*",
["-llog"],
),
], ],
header_only = True,
visibility = [YOGA_ROOT], visibility = [YOGA_ROOT],
) )
cxx_library( cxx_library(
name = 'fbjni', name = "fbjni",
srcs = glob(['**/*.cpp']), srcs = glob(["**/*.cpp"]),
exported_headers = subdir_glob([('include', '**/*.h')]),
header_namespace = '',
compiler_flags = [ compiler_flags = [
'-DLOG_TAG=\"libfb\"', "-DLOG_TAG=\"libfb\"",
'-DDISABLE_CPUCAP', "-DDISABLE_CPUCAP",
'-DDISABLE_XPLAT', "-DDISABLE_XPLAT",
'-DHAVE_POSIX_CLOCKS', "-DHAVE_POSIX_CLOCKS",
'-fno-omit-frame-pointer', "-fno-omit-frame-pointer",
'-fexceptions', "-fexceptions",
'-frtti', "-frtti",
'-Wall', "-Wall",
'-Werror', "-Werror",
'-Wno-unused-parameter', "-Wno-unused-parameter",
'-std=c++11', "-std=c++11",
], ],
exported_headers = subdir_glob([("include", "**/*.h")]),
header_namespace = "",
visibility = ["PUBLIC"],
deps = [ deps = [
':ndklog', ":ndklog",
JNI_TARGET, JNI_TARGET,
], ],
visibility = ['PUBLIC'],
) )

View File

@@ -5,23 +5,23 @@
# LICENSE file in the root directory of this source tree. An additional grant # 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. # of patent rights can be found in the PATENTS file in the same directory.
include_defs('//YOGA_DEFS') include_defs("//YOGA_DEFS")
COMPILER_FLAGS = [ COMPILER_FLAGS = [
'-std=c++11', "-std=c++11",
'-Wno-missing-prototypes', "-Wno-missing-prototypes",
] ]
cxx_library( cxx_library(
name = 'gtest', name = "gtest",
srcs = glob(['googletest/googletest/src/*.cc']), srcs = glob(["googletest/googletest/src/*.cc"]),
exported_headers = subdir_glob([
('googletest/googletest/include', '**/*.h'),
('googletest/googletest', 'src/*.h'),
('googletest/googletest', 'src/*.cc'),
]),
header_namespace = '',
compiler_flags = COMPILER_FLAGS, compiler_flags = COMPILER_FLAGS,
deps = [], exported_headers = subdir_glob([
("googletest/googletest/include", "**/*.h"),
("googletest/googletest", "src/*.h"),
("googletest/googletest", "src/*.cc"),
]),
header_namespace = "",
visibility = [YOGA_ROOT], visibility = [YOGA_ROOT],
deps = [],
) )

View File

@@ -5,17 +5,17 @@
# LICENSE file in the root directory of this source tree. An additional grant # 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. # of patent rights can be found in the PATENTS file in the same directory.
include_defs('//YOGA_DEFS') include_defs("//YOGA_DEFS")
prebuilt_jar( prebuilt_jar(
name = 'infer-annotations-jar', name = "infer-annotations-jar",
binary_jar = 'infer-annotations-1.4.jar', binary_jar = "infer-annotations-1.4.jar",
) )
java_library( java_library(
name = 'infer-annotations', name = "infer-annotations",
exported_deps = [ exported_deps = [
':infer-annotations-jar', ":infer-annotations-jar",
], ],
visibility = [YOGA_ROOT], visibility = [YOGA_ROOT],
) )

View File

@@ -6,12 +6,12 @@
# of patent rights can be found in the PATENTS file in the same directory. # of patent rights can be found in the PATENTS file in the same directory.
cxx_library( cxx_library(
name = 'jni', name = "jni",
force_static = True,
header_namespace = '',
exported_headers = [ exported_headers = [
'jni.h', "jni.h",
'real/jni.h', "real/jni.h",
], ],
visibility = ['PUBLIC'], force_static = True,
header_namespace = "",
visibility = ["PUBLIC"],
) )

View File

@@ -5,17 +5,17 @@
# LICENSE file in the root directory of this source tree. An additional grant # 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. # of patent rights can be found in the PATENTS file in the same directory.
include_defs('//YOGA_DEFS') include_defs("//YOGA_DEFS")
prebuilt_jar( prebuilt_jar(
name = 'jsr305-jar', name = "jsr305-jar",
binary_jar = 'jsr305.jar', binary_jar = "jsr305.jar",
) )
java_library( java_library(
name = 'jsr-305', name = "jsr-305",
exported_deps = [ exported_deps = [
':jsr305-jar', ":jsr305-jar",
], ],
visibility = [YOGA_ROOT], visibility = [YOGA_ROOT],
) )

View File

@@ -5,17 +5,17 @@
# LICENSE file in the root directory of this source tree. An additional grant # 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. # of patent rights can be found in the PATENTS file in the same directory.
include_defs('//YOGA_DEFS') include_defs("//YOGA_DEFS")
prebuilt_jar( prebuilt_jar(
name = 'junit-jar', name = "junit-jar",
binary_jar = 'junit4.jar', binary_jar = "junit4.jar",
) )
java_library( java_library(
name = 'junit', name = "junit",
exported_deps = [ exported_deps = [
':junit-jar', ":junit-jar",
], ],
visibility = [YOGA_ROOT], visibility = [YOGA_ROOT],
) )

View File

@@ -5,10 +5,10 @@
# LICENSE file in the root directory of this source tree. An additional grant # 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. # of patent rights can be found in the PATENTS file in the same directory.
include_defs('//YOGA_DEFS') include_defs("//YOGA_DEFS")
android_prebuilt_aar( android_prebuilt_aar(
name = 'soloader', name = "soloader",
aar = 'soloader-0.1.0.aar', aar = "soloader-0.1.0.aar",
visibility = [YOGA_ROOT], visibility = [YOGA_ROOT],
) )