Skip to content

Commit

Permalink
Run buildifier over all BUCK files
Browse files Browse the repository at this point in the history
Reviewed By: mzlee, dinhviethoa

Differential Revision: D6439498

fbshipit-source-id: ec847595afdd79434e48652d237d2533bbd2cad2
  • Loading branch information
zertosh authored and facebook-github-bot committed Nov 30, 2017
1 parent 240039c commit d674d48
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 10 deletions.
2 changes: 1 addition & 1 deletion ReactAndroid/src/main/jni/first-party/fbgloginit/BUCK
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ cxx_library(
srcs = [
"glog_init.cpp",
],
exported_headers = ["fb/glog_init.h"],
compiler_flags = [
"-fexceptions",
"-fno-omit-frame-pointer",
],
exported_headers = ["fb/glog_init.h"],
linker_flags = [
"-llog",
],
Expand Down
2 changes: 1 addition & 1 deletion ReactAndroid/src/main/jni/first-party/jni-hack/BUCK
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ include_defs("//ReactAndroid/DEFS")

cxx_library(
name = "jni-hack",
header_namespace = "",
exported_headers = [
"jni.h",
"real/jni.h",
],
force_static = True,
header_namespace = "",
visibility = ["PUBLIC"],
)
6 changes: 3 additions & 3 deletions ReactAndroid/src/main/third-party/java/infer-annotations/BUCK
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
include_defs("//ReactAndroid/DEFS")

prebuilt_jar(
name = "infer-annotations",
binary_jar = "infer-annotations-4.0.jar",
visibility = ["//ReactAndroid/..."],
name = "infer-annotations",
binary_jar = "infer-annotations-4.0.jar",
visibility = ["//ReactAndroid/..."],
)
5 changes: 4 additions & 1 deletion ReactAndroid/src/test/java/com/facebook/react/uimanager/BUCK
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@ rn_robolectric_test(
name = "uimanager",
# TODO Disabled temporarily until Yoga linking is fixed t14964130
# srcs = glob(['**/*.java']),
srcs = ["SimpleViewPropertyTest.java", "MatrixMathHelperTest.java"],
srcs = [
"MatrixMathHelperTest.java",
"SimpleViewPropertyTest.java",
],
# Please change the contact to the oncall of your team
contacts = ["oncall+fbandroid_sheriff@xmail.facebook.com"],
visibility = [
Expand Down
8 changes: 4 additions & 4 deletions ReactCommon/microprofiler/BUCK
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@ cxx_library(
srcs = [
"MicroProfiler.cpp",
],
header_namespace = "microprofiler",
exported_headers = [
"MicroProfiler.h",
],
compiler_flags = [
"-Wall",
"-Werror",
"-std=c++11",
"-fexceptions",
],
exported_headers = [
"MicroProfiler.h",
],
force_static = True,
header_namespace = "microprofiler",
visibility = [
"PUBLIC",
],
Expand Down

0 comments on commit d674d48

Please sign in to comment.