Skip to content

Commit

Permalink
Properly specify dependences on alarm.h in build.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
vjpai committed Feb 11, 2016
1 parent 04e992a commit f9f61cf
Show file tree
Hide file tree
Showing 10 changed files with 21 additions and 2 deletions.
2 changes: 2 additions & 0 deletions BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -890,6 +890,7 @@ cc_library(
"src/cpp/codegen/grpc_library.cc",
],
hdrs = [
"include/grpc++/alarm.h",
"include/grpc++/channel.h",
"include/grpc++/client_context.h",
"include/grpc++/completion_queue.h",
Expand Down Expand Up @@ -1015,6 +1016,7 @@ cc_library(
"src/cpp/codegen/grpc_library.cc",
],
hdrs = [
"include/grpc++/alarm.h",
"include/grpc++/channel.h",
"include/grpc++/client_context.h",
"include/grpc++/completion_queue.h",
Expand Down
2 changes: 2 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2969,6 +2969,7 @@ LIBGRPC++_SRC = \
src/cpp/codegen/grpc_library.cc \

PUBLIC_HEADERS_CXX += \
include/grpc++/alarm.h \
include/grpc++/channel.h \
include/grpc++/client_context.h \
include/grpc++/completion_queue.h \
Expand Down Expand Up @@ -3248,6 +3249,7 @@ LIBGRPC++_UNSECURE_SRC = \
src/cpp/codegen/grpc_library.cc \

PUBLIC_HEADERS_CXX += \
include/grpc++/alarm.h \
include/grpc++/channel.h \
include/grpc++/client_context.h \
include/grpc++/completion_queue.h \
Expand Down
1 change: 1 addition & 0 deletions build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ filegroups:
- src/core/support/wrap_memcpy.c
- name: grpc++_base
public_headers:
- include/grpc++/alarm.h
- include/grpc++/channel.h
- include/grpc++/client_context.h
- include/grpc++/completion_queue.h
Expand Down
3 changes: 2 additions & 1 deletion tools/doxygen/Doxyfile.c++
Original file line number Diff line number Diff line change
Expand Up @@ -760,7 +760,8 @@ WARN_LOGFILE =
# spaces.
# Note: If this tag is empty the current directory is searched.
INPUT = include/grpc++/channel.h \
INPUT = include/grpc++/alarm.h \
include/grpc++/channel.h \
include/grpc++/client_context.h \
include/grpc++/completion_queue.h \
include/grpc++/create_channel.h \
Expand Down
3 changes: 2 additions & 1 deletion tools/doxygen/Doxyfile.c++.internal
Original file line number Diff line number Diff line change
Expand Up @@ -760,7 +760,8 @@ WARN_LOGFILE =
# spaces.
# Note: If this tag is empty the current directory is searched.

INPUT = include/grpc++/channel.h \
INPUT = include/grpc++/alarm.h \
include/grpc++/channel.h \
include/grpc++/client_context.h \
include/grpc++/completion_queue.h \
include/grpc++/create_channel.h \
Expand Down
4 changes: 4 additions & 0 deletions tools/run_tests/sources_and_headers.json
Original file line number Diff line number Diff line change
Expand Up @@ -3729,6 +3729,7 @@
"grpc"
],
"headers": [
"include/grpc++/alarm.h",
"include/grpc++/channel.h",
"include/grpc++/client_context.h",
"include/grpc++/completion_queue.h",
Expand Down Expand Up @@ -3814,6 +3815,7 @@
"language": "c++",
"name": "grpc++",
"src": [
"include/grpc++/alarm.h",
"include/grpc++/channel.h",
"include/grpc++/client_context.h",
"include/grpc++/completion_queue.h",
Expand Down Expand Up @@ -3984,6 +3986,7 @@
"grpc_unsecure"
],
"headers": [
"include/grpc++/alarm.h",
"include/grpc++/channel.h",
"include/grpc++/client_context.h",
"include/grpc++/completion_queue.h",
Expand Down Expand Up @@ -4066,6 +4069,7 @@
"language": "c++",
"name": "grpc++_unsecure",
"src": [
"include/grpc++/alarm.h",
"include/grpc++/channel.h",
"include/grpc++/client_context.h",
"include/grpc++/completion_queue.h",
Expand Down
1 change: 1 addition & 0 deletions vsprojects/vcxproj/grpc++/grpc++.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -258,6 +258,7 @@
</ItemDefinitionGroup>

<ItemGroup>
<ClInclude Include="$(SolutionDir)\..\include\grpc++\alarm.h" />
<ClInclude Include="$(SolutionDir)\..\include\grpc++\channel.h" />
<ClInclude Include="$(SolutionDir)\..\include\grpc++\client_context.h" />
<ClInclude Include="$(SolutionDir)\..\include\grpc++\completion_queue.h" />
Expand Down
3 changes: 3 additions & 0 deletions vsprojects/vcxproj/grpc++/grpc++.vcxproj.filters
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,9 @@
</ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="$(SolutionDir)\..\include\grpc++\alarm.h">
<Filter>include\grpc++</Filter>
</ClInclude>
<ClInclude Include="$(SolutionDir)\..\include\grpc++\channel.h">
<Filter>include\grpc++</Filter>
</ClInclude>
Expand Down
1 change: 1 addition & 0 deletions vsprojects/vcxproj/grpc++_unsecure/grpc++_unsecure.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -258,6 +258,7 @@
</ItemDefinitionGroup>

<ItemGroup>
<ClInclude Include="$(SolutionDir)\..\include\grpc++\alarm.h" />
<ClInclude Include="$(SolutionDir)\..\include\grpc++\channel.h" />
<ClInclude Include="$(SolutionDir)\..\include\grpc++\client_context.h" />
<ClInclude Include="$(SolutionDir)\..\include\grpc++\completion_queue.h" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,9 @@
</ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="$(SolutionDir)\..\include\grpc++\alarm.h">
<Filter>include\grpc++</Filter>
</ClInclude>
<ClInclude Include="$(SolutionDir)\..\include\grpc++\channel.h">
<Filter>include\grpc++</Filter>
</ClInclude>
Expand Down

0 comments on commit f9f61cf

Please sign in to comment.