Skip to content

Commit d674d48

Browse files
zertoshfacebook-github-bot
authored andcommitted
Run buildifier over all BUCK files
Reviewed By: mzlee, dinhviethoa Differential Revision: D6439498 fbshipit-source-id: ec847595afdd79434e48652d237d2533bbd2cad2
1 parent 240039c commit d674d48

File tree

5 files changed

+13
-10
lines changed
  • ReactAndroid/src
    • main
      • jni/first-party
      • third-party/java/infer-annotations
    • test/java/com/facebook/react/uimanager
  • ReactCommon/microprofiler

5 files changed

+13
-10
lines changed

ReactAndroid/src/main/jni/first-party/fbgloginit/BUCK

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ cxx_library(
77
srcs = [
88
"glog_init.cpp",
99
],
10+
exported_headers = ["fb/glog_init.h"],
1011
compiler_flags = [
1112
"-fexceptions",
1213
"-fno-omit-frame-pointer",
1314
],
14-
exported_headers = ["fb/glog_init.h"],
1515
linker_flags = [
1616
"-llog",
1717
],

ReactAndroid/src/main/jni/first-party/jni-hack/BUCK

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ include_defs("//ReactAndroid/DEFS")
99

1010
cxx_library(
1111
name = "jni-hack",
12+
header_namespace = "",
1213
exported_headers = [
1314
"jni.h",
1415
"real/jni.h",
1516
],
1617
force_static = True,
17-
header_namespace = "",
1818
visibility = ["PUBLIC"],
1919
)
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
include_defs("//ReactAndroid/DEFS")
22

33
prebuilt_jar(
4-
name = "infer-annotations",
5-
binary_jar = "infer-annotations-4.0.jar",
6-
visibility = ["//ReactAndroid/..."],
4+
name = "infer-annotations",
5+
binary_jar = "infer-annotations-4.0.jar",
6+
visibility = ["//ReactAndroid/..."],
77
)

ReactAndroid/src/test/java/com/facebook/react/uimanager/BUCK

+4-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,10 @@ rn_robolectric_test(
44
name = "uimanager",
55
# TODO Disabled temporarily until Yoga linking is fixed t14964130
66
# srcs = glob(['**/*.java']),
7-
srcs = ["SimpleViewPropertyTest.java", "MatrixMathHelperTest.java"],
7+
srcs = [
8+
"MatrixMathHelperTest.java",
9+
"SimpleViewPropertyTest.java",
10+
],
811
# Please change the contact to the oncall of your team
912
contacts = ["[email protected]"],
1013
visibility = [

ReactCommon/microprofiler/BUCK

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,17 @@ cxx_library(
55
srcs = [
66
"MicroProfiler.cpp",
77
],
8+
header_namespace = "microprofiler",
9+
exported_headers = [
10+
"MicroProfiler.h",
11+
],
812
compiler_flags = [
913
"-Wall",
1014
"-Werror",
1115
"-std=c++11",
1216
"-fexceptions",
1317
],
14-
exported_headers = [
15-
"MicroProfiler.h",
16-
],
1718
force_static = True,
18-
header_namespace = "microprofiler",
1919
visibility = [
2020
"PUBLIC",
2121
],

0 commit comments

Comments
 (0)