Move SKTigonNetwork internal plugin to xplat

Summary: Moves SKTigonNetwork internal plugin to xplat leaving behind a stub buck target in litho

Reviewed By: passy

Differential Revision: D9082339

fbshipit-source-id: d98eeef4e64458586403c01937f6d48ad82e27aa
This commit is contained in:
Pritesh Nandgaonkar
2018-08-02 08:02:44 -07:00
committed by Facebook Github Bot
parent 7a82d56eb6
commit 0b0f59f096
9 changed files with 650 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
// Copyright 2004-present Facebook. All Rights Reserved.
#if FB_SONARKIT_ENABLED
#import "SKTigonNetworkPluginMock.h"
#import "SKDispatchQueueMock.h"
@implementation SKTigonNetworkPluginMock
- (instancetype)initWithNetworkAdapter:(id<SKNetworkAdapterDelegate>)adapter {
return [super initWithNetworkAdapter:adapter queue:std::make_shared<facebook::sonar::SyncQueue>()];
}
@end
#endif