Move xplat/sonar/xplat/Sonar* to Flipper*
Summary: Part of the Sonar -> Flipper rename Intentionally left externally visible buck target as Sonar for now to minimize diff size. Reviewed By: passy Differential Revision: D9871684 fbshipit-source-id: 6926eb62c578a05cd895745c75ed7da3cfe965b5
This commit is contained in:
committed by
Facebook Github Bot
parent
e1f4b73783
commit
df8763e697
@@ -39,7 +39,7 @@ add_compile_options(-DFOLLY_NO_CONFIG
|
||||
)
|
||||
|
||||
|
||||
file(GLOB SOURCES Sonar/*.cpp)
|
||||
file(GLOB SOURCES Flipper/*.cpp)
|
||||
add_library(${PACKAGE_NAME} STATIC ${SOURCES})
|
||||
|
||||
set(build_DIR ${CMAKE_SOURCE_DIR}/build)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
sonarkit_version = '0.7.2'
|
||||
Pod::Spec.new do |spec|
|
||||
spec.name = 'Sonar'
|
||||
spec.name = 'Flipper'
|
||||
spec.version = sonarkit_version
|
||||
spec.license = { :type => 'MIT' }
|
||||
spec.homepage = 'https://github.com/facebook/sonar'
|
||||
@@ -8,9 +8,9 @@ Pod::Spec.new do |spec|
|
||||
spec.authors = 'Facebook'
|
||||
spec.source = { :git => 'https://github.com/facebook/Sonar.git',
|
||||
:tag => 'v'+sonarkit_version }
|
||||
spec.module_name = 'Sonar'
|
||||
spec.public_header_files = 'xplat/Sonar/*.h'
|
||||
spec.source_files = 'xplat/Sonar/*.{h,cpp,m,mm}'
|
||||
spec.module_name = 'Flipper'
|
||||
spec.public_header_files = 'xplat/Flipper/*.h'
|
||||
spec.source_files = 'xplat/Flipper/*.{h,cpp,m,mm}'
|
||||
spec.libraries = "stdc++"
|
||||
spec.dependency 'Folly', '~>1.1'
|
||||
spec.dependency 'RSocket', '~>0.10'
|
||||
@@ -8,11 +8,11 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <Sonar/SonarConnectionImpl.h>
|
||||
#include <Sonar/SonarInitConfig.h>
|
||||
#include <Sonar/SonarPlugin.h>
|
||||
#include <Sonar/SonarState.h>
|
||||
#include <Sonar/SonarWebSocket.h>
|
||||
#include "SonarConnectionImpl.h"
|
||||
#include "SonarInitConfig.h"
|
||||
#include "SonarPlugin.h"
|
||||
#include "SonarState.h"
|
||||
#include "SonarWebSocket.h"
|
||||
#include <map>
|
||||
#include <mutex>
|
||||
#include "SonarStep.h"
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <Sonar/FlipperResponder.h>
|
||||
#include "FlipperResponder.h"
|
||||
#include <folly/json.h>
|
||||
#include <functional>
|
||||
#include <string>
|
||||
@@ -8,8 +8,8 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <Sonar/SonarConnection.h>
|
||||
#include <Sonar/SonarWebSocket.h>
|
||||
#include "SonarConnection.h"
|
||||
#include "SonarWebSocket.h"
|
||||
#include <map>
|
||||
#include <string>
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
*/
|
||||
#pragma once
|
||||
|
||||
#include <Sonar/SonarConnection.h>
|
||||
#include "SonarConnection.h"
|
||||
#include <string>
|
||||
|
||||
namespace facebook {
|
||||
@@ -8,8 +8,8 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <Sonar/FlipperResponder.h>
|
||||
#include <Sonar/SonarWebSocket.h>
|
||||
#include "FlipperResponder.h"
|
||||
#include "SonarWebSocket.h"
|
||||
#include <folly/json.h>
|
||||
|
||||
namespace facebook {
|
||||
@@ -8,9 +8,9 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <Sonar/SonarInitConfig.h>
|
||||
#include <Sonar/SonarWebSocket.h>
|
||||
#include <Sonar/SonarState.h>
|
||||
#include "SonarInitConfig.h"
|
||||
#include "SonarWebSocket.h"
|
||||
#include "SonarState.h"
|
||||
#include <folly/Executor.h>
|
||||
#include <folly/io/async/EventBase.h>
|
||||
#include <rsocket/RSocket.h>
|
||||
@@ -1,4 +1,4 @@
|
||||
#include <Sonar/ConnectionContextStore.h>
|
||||
#include <Flipper/ConnectionContextStore.h>
|
||||
|
||||
namespace facebook {
|
||||
namespace flipper {
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <Sonar/SonarConnection.h>
|
||||
#include <Flipper/SonarConnection.h>
|
||||
#include <map>
|
||||
#include <string>
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <Sonar/SonarPlugin.h>
|
||||
#include <Flipper/SonarPlugin.h>
|
||||
|
||||
namespace facebook {
|
||||
namespace flipper {
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <Sonar/FlipperResponder.h>
|
||||
#include <Flipper/FlipperResponder.h>
|
||||
#include <folly/json.h>
|
||||
#include <vector>
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <Sonar/SonarWebSocket.h>
|
||||
#include <Flipper/SonarWebSocket.h>
|
||||
|
||||
namespace facebook {
|
||||
namespace flipper {
|
||||
@@ -6,9 +6,9 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include <Sonar/SonarClient.h>
|
||||
#include <SonarTestLib/SonarPluginMock.h>
|
||||
#include <SonarTestLib/SonarWebSocketMock.h>
|
||||
#include <Flipper/SonarClient.h>
|
||||
#include <FlipperTestLib/SonarPluginMock.h>
|
||||
#include <FlipperTestLib/SonarWebSocketMock.h>
|
||||
|
||||
#include <folly/json.h>
|
||||
#include <gtest/gtest.h>
|
||||
@@ -6,8 +6,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include <Sonar/SonarWebSocketImpl.h>
|
||||
#include <SonarTestLib/ConnectionContextStoreMock.h>
|
||||
#include <Flipper/SonarWebSocketImpl.h>
|
||||
#include <FlipperTestLib/ConnectionContextStoreMock.h>
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
|
||||
Reference in New Issue
Block a user