Commit 0c4dd654 authored by Jon Maltiel Swenson's avatar Jon Maltiel Swenson Committed by Facebook GitHub Bot

Remove rsocket-cpp dependency from OSS projects depending on fbthrift

Summary: fbthrift no longer depends on rsocket-cpp

Reviewed By: simpkins

Differential Revision: D22275231

fbshipit-source-id: c1f217f1ce97591b8ebca002bf8ae3af701be641
parent c3e79e82
......@@ -17,7 +17,6 @@ builder = nop
folly
fb303
wangle
rsocket-cpp
fizz
fmt
libsodium
......
......@@ -15,7 +15,6 @@ bison
flex
folly
wangle
rsocket-cpp
fizz
fmt
googletest
......
[manifest]
name = rsocket-cpp
fbsource_path = fbcode/rsocket
shipit_project = rsocket-cpp
shipit_fbcode_builder = true
[git]
repo_url = https://github.com/rsocket/rsocket-cpp.git
[build]
builder = cmake
[cmake.defines]
BUILD_EXAMPLES = OFF
BUILD_BENCHMARKS = OFF
BUILD_TESTS = OFF
[dependencies]
googletest
folly
[shipit.pathmap]
fbcode/rsocket/public_tld = .
fbcode/rsocket = rsocket
fbcode/yarpl = yarpl
......@@ -8,7 +8,6 @@ from __future__ import unicode_literals
import specs.fizz as fizz
import specs.fmt as fmt
import specs.folly as folly
import specs.rsocket as rsocket
import specs.sodium as sodium
import specs.wangle as wangle
import specs.zstd as zstd
......@@ -16,7 +15,7 @@ import specs.zstd as zstd
def fbcode_builder_spec(builder):
return {
'depends_on': [fmt, folly, fizz, sodium, rsocket, wangle, zstd],
'depends_on': [fmt, folly, fizz, sodium, wangle, zstd],
'steps': [
builder.fb_github_cmake_install('fbthrift/thrift'),
],
......
#!/usr/bin/env python
# Copyright (c) Facebook, Inc. and its affiliates.
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
from __future__ import unicode_literals
import specs.gmock as gmock
import specs.fmt as fmt
import specs.folly as folly
def fbcode_builder_spec(builder):
return {
'depends_on': [fmt, folly],
'steps': [
builder.fb_github_cmake_install(
'rsocket-cpp/rsocket',
github_org='rsocket'),
],
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment