From cec2e80fc251e4ea45ce1e446323716a3792390d Mon Sep 17 00:00:00 2001 From: Scott Wolchok Date: Sat, 20 Jan 2018 12:01:45 -0800 Subject: [PATCH] Fix dependencies Reviewed By: adamjernst Differential Revision: D6754488 fbshipit-source-id: 49f2a45d024c7bd6b52f51f7705bcd167a499e47 --- ReactCommon/cxxreact/BUCK | 9 +++++++++ ReactCommon/jschelpers/BUCK | 2 ++ 2 files changed, 11 insertions(+) diff --git a/ReactCommon/cxxreact/BUCK b/ReactCommon/cxxreact/BUCK index be74424e5e75c1..48fbb110f03e71 100644 --- a/ReactCommon/cxxreact/BUCK +++ b/ReactCommon/cxxreact/BUCK @@ -51,7 +51,9 @@ rn_xplat_cxx_library( "PUBLIC", ], deps = [ + "xplat//folly:headers_only", "xplat//folly:molly", + "xplat//folly:scope_guard", ], ) @@ -69,7 +71,9 @@ rn_xplat_cxx_library( "PUBLIC", ], deps = [ + "xplat//folly:headers_only", "xplat//folly:molly", + "xplat//third-party/glog:glog", ":module", ], ) @@ -143,9 +147,14 @@ rn_xplat_cxx_library( ":module", ":jsbigstring", "xplat//fbsystrace:fbsystrace", + "xplat//folly:headers_only", "xplat//folly:molly", react_native_xplat_target("jschelpers:jschelpers"), react_native_xplat_target("jsinspector:jsinspector"), react_native_xplat_target("microprofiler:microprofiler"), + "xplat//folly:optional", + "xplat//third-party/glog:glog", + react_native_xplat_target("jschelpers:jscinternalhelpers"), + react_native_xplat_target("privatedata:privatedata"), ] + JSC_DEPS, ) diff --git a/ReactCommon/jschelpers/BUCK b/ReactCommon/jschelpers/BUCK index 013936bbf7b0b9..ab53fbfb1fa326 100644 --- a/ReactCommon/jschelpers/BUCK +++ b/ReactCommon/jschelpers/BUCK @@ -46,6 +46,8 @@ rn_xplat_cxx_library( ], deps = JSC_INTERNAL_DEPS + [ "xplat//folly:molly", + "xplat//third-party/glog:glog", + react_native_xplat_target("privatedata:privatedata"), ], )