Merge with gyp changes

pull/3423/head
Craig Tiller 10 years ago
parent 940b64bde2
commit caeff022df
  1. 34
      grpc.gyp
  2. 4
      src/core/surface/version.c

@ -205,9 +205,11 @@
'src/core/httpcli/parser.c',
'src/core/iomgr/alarm.c',
'src/core/iomgr/alarm_heap.c',
'src/core/iomgr/closure.c',
'src/core/iomgr/endpoint.c',
'src/core/iomgr/endpoint_pair_posix.c',
'src/core/iomgr/endpoint_pair_windows.c',
'src/core/iomgr/exec_ctx.c',
'src/core/iomgr/fd_posix.c',
'src/core/iomgr/iocp_windows.c',
'src/core/iomgr/iomgr.c',
@ -238,6 +240,8 @@
'src/core/iomgr/wakeup_fd_nospecial.c',
'src/core/iomgr/wakeup_fd_pipe.c',
'src/core/iomgr/wakeup_fd_posix.c',
'src/core/iomgr/workqueue_posix.c',
'src/core/iomgr/workqueue_windows.c',
'src/core/json/json.c',
'src/core/json/json_reader.c',
'src/core/json/json_string.c',
@ -387,9 +391,11 @@
'src/core/httpcli/parser.c',
'src/core/iomgr/alarm.c',
'src/core/iomgr/alarm_heap.c',
'src/core/iomgr/closure.c',
'src/core/iomgr/endpoint.c',
'src/core/iomgr/endpoint_pair_posix.c',
'src/core/iomgr/endpoint_pair_windows.c',
'src/core/iomgr/exec_ctx.c',
'src/core/iomgr/fd_posix.c',
'src/core/iomgr/iocp_windows.c',
'src/core/iomgr/iomgr.c',
@ -420,6 +426,8 @@
'src/core/iomgr/wakeup_fd_nospecial.c',
'src/core/iomgr/wakeup_fd_pipe.c',
'src/core/iomgr/wakeup_fd_posix.c',
'src/core/iomgr/workqueue_posix.c',
'src/core/iomgr/workqueue_windows.c',
'src/core/json/json.c',
'src/core/json/json_reader.c',
'src/core/json/json_string.c',
@ -1281,19 +1289,6 @@
'test/core/iomgr/alarm_list_test.c',
]
},
{
'target_name': 'alarm_test',
'type': 'executable',
'dependencies': [
'grpc_test_util',
'grpc',
'gpr_test_util',
'gpr',
],
'sources': [
'test/core/iomgr/alarm_test.c',
]
},
{
'target_name': 'alpn_test',
'type': 'executable',
@ -2229,6 +2224,19 @@
'test/core/client_config/uri_parser_test.c',
]
},
{
'target_name': 'workqueue_test',
'type': 'executable',
'dependencies': [
'grpc_test_util',
'grpc',
'gpr_test_util',
'gpr',
],
'sources': [
'test/core/iomgr/workqueue_test.c',
]
},
{
'target_name': 'h2_compress_bad_hostname_test',
'type': 'executable',

@ -36,4 +36,6 @@
#include <grpc/grpc.h>
const char *grpc_version_string(void) { return "0.11.0.0"; }
const char *grpc_version_string(void) {
return "0.11.0.0";
}

Loading…
Cancel
Save