Fabric: events module was merged into core module

Summary: That's bummer that we have to do it, but it's actually reasonable. Files in `core` and `events` depend on each other creating circular dependencies and other similar hard problem.

Reviewed By: mdvacca

Differential Revision: D14195022

fbshipit-source-id: 96a44ae28631cc9ccd7d7de72a94526f9e0dd12a
This commit is contained in:
Valentin Shergin
2019-02-25 19:12:08 -08:00
committed by Facebook Github Bot
parent 4cf70306b9
commit 9a64755a18
44 changed files with 38 additions and 133 deletions
@@ -5,7 +5,7 @@
#pragma once
#include <jsi/jsi.h>
#include <react/events/EventBeat.h>
#include <react/core/EventBeat.h>
#include "EventBeatManager.h"
namespace facebook {
@@ -13,8 +13,8 @@
#include <jsi/jsi.h>
#include <react/components/scrollview/ScrollViewProps.h>
#include <react/debug/SystraceSection.h>
#include <react/events/EventBeat.h>
#include <react/events/EventEmitter.h>
#include <react/core/EventBeat.h>
#include <react/core/EventEmitter.h>
#include <react/uimanager/ComponentDescriptorFactory.h>
#include <react/uimanager/ContextContainer.h>
#include <react/uimanager/Scheduler.h>
@@ -6,7 +6,7 @@
#include <fb/fbjni.h>
#include <jsi/jsi.h>
#include <react/events/EventBeat.h>
#include <react/core/EventBeat.h>
#include <mutex>
#include <unordered_set>
@@ -5,7 +5,7 @@
#pragma once
#include <fb/fbjni.h>
#include <react/events/EventEmitter.h>
#include <react/core/EventEmitter.h>
#include <react/jni/ReadableNativeMap.h>
namespace facebook {