File tree Expand file tree Collapse file tree 3 files changed +13
-13
lines changed
ReactAndroid/src/main/jni/react/perftests Expand file tree Collapse file tree 3 files changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -12,9 +12,9 @@ cxx_library(
12
12
"//instrumentation_tests/com/facebook/react/..." ,
13
13
],
14
14
deps = [
15
+ "xplat//folly:molly" ,
15
16
"//native:base" ,
16
17
"//native/fb:fb" ,
17
- "xplat//folly:molly" ,
18
18
react_native_xplat_target ("cxxreact:module" ),
19
19
],
20
20
)
Original file line number Diff line number Diff line change @@ -67,8 +67,8 @@ rn_xplat_cxx_library(
67
67
"PUBLIC" ,
68
68
],
69
69
deps = [
70
- ":module" ,
71
70
"xplat//folly:molly" ,
71
+ ":module" ,
72
72
],
73
73
)
74
74
Original file line number Diff line number Diff line change @@ -16,26 +16,26 @@ rn_xplat_cxx_library(
16
16
["*.cpp" ],
17
17
excludes = ["systemJSCWrapper.cpp" ],
18
18
),
19
- compiler_flags = [
20
- "-Wall" ,
21
- "-fexceptions" ,
22
- "-fvisibility=hidden" ,
23
- "-std=c++1y" ,
24
- ],
19
+ headers = glob (
20
+ ["*.h" ],
21
+ excludes = EXPORTED_HEADERS ,
22
+ ),
23
+ header_namespace = "" ,
25
24
exported_headers = dict ([
26
25
(
27
26
"jschelpers/%s" % header ,
28
27
header ,
29
28
)
30
29
for header in EXPORTED_HEADERS
31
30
]),
31
+ compiler_flags = [
32
+ "-Wall" ,
33
+ "-fexceptions" ,
34
+ "-fvisibility=hidden" ,
35
+ "-std=c++1y" ,
36
+ ],
32
37
fbobjc_inherited_buck_flags = STATIC_LIBRARY_IOS_FLAGS ,
33
38
force_static = True ,
34
- header_namespace = "" ,
35
- headers = glob (
36
- ["*.h" ],
37
- excludes = EXPORTED_HEADERS ,
38
- ),
39
39
visibility = [
40
40
"PUBLIC" ,
41
41
],
You can’t perform that action at this time.
0 commit comments