Makefile 241 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692
  1. # GRPC global makefile
  2. # This currently builds C and C++ code.
  3. # This file has been automatically generated from a template file.
  4. # Please look at the templates directory instead.
  5. # This file can be regenerated from the template by running
  6. # tools/buildgen/generate_projects.sh
  7. # Copyright 2015 gRPC authors.
  8. #
  9. # Licensed under the Apache License, Version 2.0 (the "License");
  10. # you may not use this file except in compliance with the License.
  11. # You may obtain a copy of the License at
  12. #
  13. # http://www.apache.org/licenses/LICENSE-2.0
  14. #
  15. # Unless required by applicable law or agreed to in writing, software
  16. # distributed under the License is distributed on an "AS IS" BASIS,
  17. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  18. # See the License for the specific language governing permissions and
  19. # limitations under the License.
  20. comma := ,
  21. # Basic platform detection
  22. HOST_SYSTEM = $(shell uname | cut -f 1 -d_)
  23. SYSTEM ?= $(HOST_SYSTEM)
  24. ifeq ($(SYSTEM),MSYS)
  25. SYSTEM = MINGW32
  26. endif
  27. ifeq ($(SYSTEM),MINGW64)
  28. SYSTEM = MINGW32
  29. endif
  30. # Basic machine detection
  31. HOST_MACHINE = $(shell uname -m)
  32. ifeq ($(HOST_MACHINE),x86_64)
  33. HOST_IS_X86_64 = true
  34. else
  35. HOST_IS_X86_64 = false
  36. endif
  37. MAKEFILE_PATH := $(abspath $(lastword $(MAKEFILE_LIST)))
  38. ifndef BUILDDIR
  39. BUILDDIR_ABSOLUTE = $(patsubst %/,%,$(dir $(MAKEFILE_PATH)))
  40. else
  41. BUILDDIR_ABSOLUTE = $(abspath $(BUILDDIR))
  42. endif
  43. HAS_GCC = $(shell which gcc > /dev/null 2> /dev/null && echo true || echo false)
  44. HAS_CC = $(shell which cc > /dev/null 2> /dev/null && echo true || echo false)
  45. HAS_CLANG = $(shell which clang > /dev/null 2> /dev/null && echo true || echo false)
  46. ifeq ($(HAS_CC),true)
  47. DEFAULT_CC = cc
  48. DEFAULT_CXX = c++
  49. else
  50. ifeq ($(HAS_GCC),true)
  51. DEFAULT_CC = gcc
  52. DEFAULT_CXX = g++
  53. else
  54. ifeq ($(HAS_CLANG),true)
  55. DEFAULT_CC = clang
  56. DEFAULT_CXX = clang++
  57. else
  58. DEFAULT_CC = no_c_compiler
  59. DEFAULT_CXX = no_c++_compiler
  60. endif
  61. endif
  62. endif
  63. BINDIR = $(BUILDDIR_ABSOLUTE)/bins
  64. OBJDIR = $(BUILDDIR_ABSOLUTE)/objs
  65. LIBDIR = $(BUILDDIR_ABSOLUTE)/libs
  66. GENDIR = $(BUILDDIR_ABSOLUTE)/gens
  67. # Configurations (as defined under "configs" section in build_handwritten.yaml)
  68. VALID_CONFIG_opt = 1
  69. CC_opt = $(DEFAULT_CC)
  70. CXX_opt = $(DEFAULT_CXX)
  71. LD_opt = $(DEFAULT_CC)
  72. LDXX_opt = $(DEFAULT_CXX)
  73. CPPFLAGS_opt = -O2 -Wframe-larger-than=16384
  74. DEFINES_opt = NDEBUG
  75. VALID_CONFIG_asan-trace-cmp = 1
  76. REQUIRE_CUSTOM_LIBRARIES_asan-trace-cmp = 1
  77. CC_asan-trace-cmp = clang
  78. CXX_asan-trace-cmp = clang++
  79. LD_asan-trace-cmp = clang++
  80. LDXX_asan-trace-cmp = clang++
  81. CPPFLAGS_asan-trace-cmp = -O0 -fsanitize-coverage=edge,trace-pc-guard -fsanitize-coverage=trace-cmp -fsanitize=address -fno-omit-frame-pointer -Wno-unused-command-line-argument -DGPR_NO_DIRECT_SYSCALLS
  82. LDFLAGS_asan-trace-cmp = -fsanitize=address
  83. VALID_CONFIG_dbg = 1
  84. CC_dbg = $(DEFAULT_CC)
  85. CXX_dbg = $(DEFAULT_CXX)
  86. LD_dbg = $(DEFAULT_CC)
  87. LDXX_dbg = $(DEFAULT_CXX)
  88. CPPFLAGS_dbg = -O0
  89. DEFINES_dbg = _DEBUG DEBUG
  90. VALID_CONFIG_asan = 1
  91. REQUIRE_CUSTOM_LIBRARIES_asan = 1
  92. CC_asan = clang
  93. CXX_asan = clang++
  94. LD_asan = clang++
  95. LDXX_asan = clang++
  96. CPPFLAGS_asan = -O0 -fsanitize-coverage=edge,trace-pc-guard -fsanitize=address -fno-omit-frame-pointer -Wno-unused-command-line-argument -DGPR_NO_DIRECT_SYSCALLS
  97. LDFLAGS_asan = -fsanitize=address
  98. VALID_CONFIG_msan = 1
  99. REQUIRE_CUSTOM_LIBRARIES_msan = 1
  100. CC_msan = clang
  101. CXX_msan = clang++
  102. LD_msan = clang++
  103. LDXX_msan = clang++
  104. CPPFLAGS_msan = -O0 -stdlib=libc++ -fsanitize-coverage=edge,trace-pc-guard -fsanitize=memory -fsanitize-memory-track-origins -fsanitize-memory-use-after-dtor -fno-omit-frame-pointer -DGTEST_HAS_TR1_TUPLE=0 -DGTEST_USE_OWN_TR1_TUPLE=1 -Wno-unused-command-line-argument -fPIE -pie -DGPR_NO_DIRECT_SYSCALLS
  105. LDFLAGS_msan = -stdlib=libc++ -fsanitize=memory -DGTEST_HAS_TR1_TUPLE=0 -DGTEST_USE_OWN_TR1_TUPLE=1 -fPIE -pie $(if $(JENKINS_BUILD),-Wl$(comma)-Ttext-segment=0x7e0000000000,)
  106. DEFINES_msan = NDEBUG
  107. VALID_CONFIG_basicprof = 1
  108. CC_basicprof = $(DEFAULT_CC)
  109. CXX_basicprof = $(DEFAULT_CXX)
  110. LD_basicprof = $(DEFAULT_CC)
  111. LDXX_basicprof = $(DEFAULT_CXX)
  112. CPPFLAGS_basicprof = -O2 -DGRPC_BASIC_PROFILER -DGRPC_TIMERS_RDTSC
  113. DEFINES_basicprof = NDEBUG
  114. VALID_CONFIG_helgrind = 1
  115. CC_helgrind = $(DEFAULT_CC)
  116. CXX_helgrind = $(DEFAULT_CXX)
  117. LD_helgrind = $(DEFAULT_CC)
  118. LDXX_helgrind = $(DEFAULT_CXX)
  119. CPPFLAGS_helgrind = -O0
  120. LDFLAGS_helgrind = -rdynamic
  121. DEFINES_helgrind = _DEBUG DEBUG
  122. VALID_CONFIG_asan-noleaks = 1
  123. REQUIRE_CUSTOM_LIBRARIES_asan-noleaks = 1
  124. CC_asan-noleaks = clang
  125. CXX_asan-noleaks = clang++
  126. LD_asan-noleaks = clang++
  127. LDXX_asan-noleaks = clang++
  128. CPPFLAGS_asan-noleaks = -O0 -fsanitize-coverage=edge,trace-pc-guard -fsanitize=address -fno-omit-frame-pointer -Wno-unused-command-line-argument -DGPR_NO_DIRECT_SYSCALLS
  129. LDFLAGS_asan-noleaks = fsanitize=address
  130. VALID_CONFIG_noexcept = 1
  131. CC_noexcept = $(DEFAULT_CC)
  132. CXX_noexcept = $(DEFAULT_CXX)
  133. LD_noexcept = $(DEFAULT_CC)
  134. LDXX_noexcept = $(DEFAULT_CXX)
  135. CXXFLAGS_noexcept = -fno-exceptions
  136. CPPFLAGS_noexcept = -O2 -Wframe-larger-than=16384
  137. DEFINES_noexcept = NDEBUG
  138. VALID_CONFIG_ubsan = 1
  139. REQUIRE_CUSTOM_LIBRARIES_ubsan = 1
  140. CC_ubsan = clang
  141. CXX_ubsan = clang++
  142. LD_ubsan = clang++
  143. LDXX_ubsan = clang++
  144. CPPFLAGS_ubsan = -O0 -stdlib=libc++ -fsanitize-coverage=edge,trace-pc-guard -fsanitize=undefined -fno-omit-frame-pointer -Wno-unused-command-line-argument -Wvarargs
  145. LDFLAGS_ubsan = -stdlib=libc++ -fsanitize=undefined,unsigned-integer-overflow
  146. DEFINES_ubsan = NDEBUG GRPC_UBSAN
  147. VALID_CONFIG_tsan = 1
  148. REQUIRE_CUSTOM_LIBRARIES_tsan = 1
  149. CC_tsan = clang
  150. CXX_tsan = clang++
  151. LD_tsan = clang++
  152. LDXX_tsan = clang++
  153. CPPFLAGS_tsan = -O0 -fsanitize=thread -fno-omit-frame-pointer -Wno-unused-command-line-argument -DGPR_NO_DIRECT_SYSCALLS
  154. LDFLAGS_tsan = -fsanitize=thread
  155. DEFINES_tsan = GRPC_TSAN
  156. VALID_CONFIG_counters_with_memory_counter = 1
  157. CC_counters_with_memory_counter = $(DEFAULT_CC)
  158. CXX_counters_with_memory_counter = $(DEFAULT_CXX)
  159. LD_counters_with_memory_counter = $(DEFAULT_CC)
  160. LDXX_counters_with_memory_counter = $(DEFAULT_CXX)
  161. CPPFLAGS_counters_with_memory_counter = -O2 -DGPR_LOW_LEVEL_COUNTERS -DGPR_WRAP_MEMORY_COUNTER
  162. LDFLAGS_counters_with_memory_counter = -Wl,--wrap=malloc -Wl,--wrap=calloc -Wl,--wrap=realloc -Wl,--wrap=free
  163. DEFINES_counters_with_memory_counter = NDEBUG
  164. VALID_CONFIG_stapprof = 1
  165. CC_stapprof = $(DEFAULT_CC)
  166. CXX_stapprof = $(DEFAULT_CXX)
  167. LD_stapprof = $(DEFAULT_CC)
  168. LDXX_stapprof = $(DEFAULT_CXX)
  169. CPPFLAGS_stapprof = -O2 -DGRPC_STAP_PROFILER
  170. DEFINES_stapprof = NDEBUG
  171. VALID_CONFIG_gcov = 1
  172. CC_gcov = gcc
  173. CXX_gcov = g++
  174. LD_gcov = gcc
  175. LDXX_gcov = g++
  176. CPPFLAGS_gcov = -O0 -fprofile-arcs -ftest-coverage -Wno-return-type
  177. LDFLAGS_gcov = -fprofile-arcs -ftest-coverage -rdynamic -lstdc++
  178. DEFINES_gcov = _DEBUG DEBUG GPR_GCOV
  179. VALID_CONFIG_memcheck = 1
  180. CC_memcheck = $(DEFAULT_CC)
  181. CXX_memcheck = $(DEFAULT_CXX)
  182. LD_memcheck = $(DEFAULT_CC)
  183. LDXX_memcheck = $(DEFAULT_CXX)
  184. CPPFLAGS_memcheck = -O0
  185. LDFLAGS_memcheck = -rdynamic
  186. DEFINES_memcheck = _DEBUG DEBUG
  187. VALID_CONFIG_lto = 1
  188. CC_lto = $(DEFAULT_CC)
  189. CXX_lto = $(DEFAULT_CXX)
  190. LD_lto = $(DEFAULT_CC)
  191. LDXX_lto = $(DEFAULT_CXX)
  192. CPPFLAGS_lto = -O2
  193. DEFINES_lto = NDEBUG
  194. VALID_CONFIG_c++-compat = 1
  195. CC_c++-compat = $(DEFAULT_CC)
  196. CXX_c++-compat = $(DEFAULT_CXX)
  197. LD_c++-compat = $(DEFAULT_CC)
  198. LDXX_c++-compat = $(DEFAULT_CXX)
  199. CFLAGS_c++-compat = -Wc++-compat
  200. CPPFLAGS_c++-compat = -O0
  201. DEFINES_c++-compat = _DEBUG DEBUG
  202. VALID_CONFIG_mutrace = 1
  203. CC_mutrace = $(DEFAULT_CC)
  204. CXX_mutrace = $(DEFAULT_CXX)
  205. LD_mutrace = $(DEFAULT_CC)
  206. LDXX_mutrace = $(DEFAULT_CXX)
  207. CPPFLAGS_mutrace = -O3 -fno-omit-frame-pointer
  208. LDFLAGS_mutrace = -rdynamic
  209. DEFINES_mutrace = NDEBUG
  210. VALID_CONFIG_counters = 1
  211. CC_counters = $(DEFAULT_CC)
  212. CXX_counters = $(DEFAULT_CXX)
  213. LD_counters = $(DEFAULT_CC)
  214. LDXX_counters = $(DEFAULT_CXX)
  215. CPPFLAGS_counters = -O2 -DGPR_LOW_LEVEL_COUNTERS
  216. DEFINES_counters = NDEBUG
  217. # General settings.
  218. # You may want to change these depending on your system.
  219. prefix ?= /usr/local
  220. PROTOC ?= protoc
  221. DTRACE ?= dtrace
  222. CONFIG ?= opt
  223. # Doing X ?= Y is the same as:
  224. # ifeq ($(origin X), undefined)
  225. # X = Y
  226. # endif
  227. # but some variables, such as CC, CXX, LD or AR, have defaults.
  228. # So instead of using ?= on them, we need to check their origin.
  229. # See:
  230. # https://www.gnu.org/software/make/manual/html_node/Implicit-Variables.html
  231. # https://www.gnu.org/software/make/manual/html_node/Flavors.html#index-_003f_003d
  232. # https://www.gnu.org/software/make/manual/html_node/Origin-Function.html
  233. ifeq ($(origin CC), default)
  234. CC = $(CC_$(CONFIG))
  235. endif
  236. ifeq ($(origin CXX), default)
  237. CXX = $(CXX_$(CONFIG))
  238. endif
  239. ifeq ($(origin LD), default)
  240. LD = $(LD_$(CONFIG))
  241. endif
  242. LDXX ?= $(LDXX_$(CONFIG))
  243. ARFLAGS ?= rcs
  244. ifeq ($(SYSTEM),Linux)
  245. ifeq ($(origin AR), default)
  246. AR = ar
  247. endif
  248. STRIP ?= strip --strip-unneeded
  249. else
  250. ifeq ($(SYSTEM),Darwin)
  251. ifeq ($(origin AR), default)
  252. AR = libtool
  253. ARFLAGS = -no_warning_for_no_symbols -o
  254. endif
  255. STRIP ?= strip -x
  256. else
  257. ifeq ($(SYSTEM),MINGW32)
  258. ifeq ($(origin AR), default)
  259. AR = ar
  260. endif
  261. STRIP ?= strip --strip-unneeded
  262. else
  263. ifeq ($(origin AR), default)
  264. AR = ar
  265. endif
  266. STRIP ?= strip
  267. endif
  268. endif
  269. endif
  270. INSTALL ?= install
  271. RM ?= rm -f
  272. PKG_CONFIG ?= pkg-config
  273. ifndef VALID_CONFIG_$(CONFIG)
  274. $(error Invalid CONFIG value '$(CONFIG)')
  275. endif
  276. ifeq ($(SYSTEM),Linux)
  277. TMPOUT = /dev/null
  278. else
  279. TMPOUT = `mktemp /tmp/test-out-XXXXXX`
  280. endif
  281. CHECK_NO_CXX14_COMPAT_WORKS_CMD = $(CC) -std=c++11 -Werror -Wno-c++14-compat -o $(TMPOUT) -c test/build/no-c++14-compat.cc
  282. HAS_WORKING_NO_CXX14_COMPAT = $(shell $(CHECK_NO_CXX14_COMPAT_WORKS_CMD) 2> /dev/null && echo true || echo false)
  283. ifeq ($(HAS_WORKING_NO_CXX14_COMPAT),true)
  284. W_NO_CXX14_COMPAT=-Wno-c++14-compat
  285. endif
  286. CHECK_EXTRA_SEMI_WORKS_CMD = $(CC) -std=c99 -Werror -Wextra-semi -o $(TMPOUT) -c test/build/extra-semi.c
  287. HAS_WORKING_EXTRA_SEMI = $(shell $(CHECK_EXTRA_SEMI_WORKS_CMD) 2> /dev/null && echo true || echo false)
  288. ifeq ($(HAS_WORKING_EXTRA_SEMI),true)
  289. W_EXTRA_SEMI=-Wextra-semi
  290. NO_W_EXTRA_SEMI=-Wno-extra-semi
  291. endif
  292. CHECK_NO_SHIFT_NEGATIVE_VALUE_WORKS_CMD = $(CC) -std=c99 -Werror -Wno-shift-negative-value -o $(TMPOUT) -c test/build/no-shift-negative-value.c
  293. HAS_WORKING_NO_SHIFT_NEGATIVE_VALUE = $(shell $(CHECK_NO_SHIFT_NEGATIVE_VALUE_WORKS_CMD) 2> /dev/null && echo true || echo false)
  294. ifeq ($(HAS_WORKING_NO_SHIFT_NEGATIVE_VALUE),true)
  295. W_NO_SHIFT_NEGATIVE_VALUE=-Wno-shift-negative-value
  296. NO_W_NO_SHIFT_NEGATIVE_VALUE=-Wshift-negative-value
  297. endif
  298. CHECK_NO_UNUSED_BUT_SET_VARIABLE_WORKS_CMD = $(CC) -std=c99 -Werror -Wno-unused-but-set-variable -o $(TMPOUT) -c test/build/no-unused-but-set-variable.c
  299. HAS_WORKING_NO_UNUSED_BUT_SET_VARIABLE = $(shell $(CHECK_NO_UNUSED_BUT_SET_VARIABLE_WORKS_CMD) 2> /dev/null && echo true || echo false)
  300. ifeq ($(HAS_WORKING_NO_UNUSED_BUT_SET_VARIABLE),true)
  301. W_NO_UNUSED_BUT_SET_VARIABLE=-Wno-unused-but-set-variable
  302. NO_W_NO_UNUSED_BUT_SET_VARIABLE=-Wunused-but-set-variable
  303. endif
  304. CHECK_NO_MAYBE_UNINITIALIZED_WORKS_CMD = $(CC) -std=c99 -Werror -Wno-maybe-uninitialized -o $(TMPOUT) -c test/build/no-maybe-uninitialized.c
  305. HAS_WORKING_NO_MAYBE_UNINITIALIZED = $(shell $(CHECK_NO_MAYBE_UNINITIALIZED_WORKS_CMD) 2> /dev/null && echo true || echo false)
  306. ifeq ($(HAS_WORKING_NO_MAYBE_UNINITIALIZED),true)
  307. W_NO_MAYBE_UNINITIALIZED=-Wno-maybe-uninitialized
  308. NO_W_NO_MAYBE_UNINITIALIZED=-Wmaybe-uninitialized
  309. endif
  310. CHECK_NO_UNKNOWN_WARNING_OPTION_WORKS_CMD = $(CC) -std=c99 -Werror -Wno-unknown-warning-option -o $(TMPOUT) -c test/build/no-unknown-warning-option.c
  311. HAS_WORKING_NO_UNKNOWN_WARNING_OPTION = $(shell $(CHECK_NO_UNKNOWN_WARNING_OPTION_WORKS_CMD) 2> /dev/null && echo true || echo false)
  312. ifeq ($(HAS_WORKING_NO_UNKNOWN_WARNING_OPTION),true)
  313. W_NO_UNKNOWN_WARNING_OPTION=-Wno-unknown-warning-option
  314. NO_W_NO_UNKNOWN_WARNING_OPTION=-Wunknown-warning-option
  315. endif
  316. # The HOST compiler settings are used to compile the protoc plugins.
  317. # In most cases, you won't have to change anything, but if you are
  318. # cross-compiling, you can override these variables from GNU make's
  319. # command line: make CC=cross-gcc HOST_CC=gcc
  320. HOST_CC ?= $(CC)
  321. HOST_CXX ?= $(CXX)
  322. HOST_LD ?= $(LD)
  323. HOST_LDXX ?= $(LDXX)
  324. CFLAGS += -std=c99 $(W_EXTRA_SEMI)
  325. CXXFLAGS += -std=c++11
  326. ifeq ($(SYSTEM),Darwin)
  327. CXXFLAGS += -stdlib=libc++
  328. LDFLAGS += -framework CoreFoundation
  329. endif
  330. CFLAGS += -g
  331. CPPFLAGS += -g -Wall -Wextra -DOSATOMIC_USE_INLINED=1 -Ithird_party/abseil-cpp -Ithird_party/re2 -Ithird_party/upb -Isrc/core/ext/upb-generated -Isrc/core/ext/upbdefs-generated
  332. COREFLAGS += -fno-exceptions
  333. LDFLAGS += -g
  334. CPPFLAGS += $(CPPFLAGS_$(CONFIG))
  335. CFLAGS += $(CFLAGS_$(CONFIG))
  336. CXXFLAGS += $(CXXFLAGS_$(CONFIG))
  337. DEFINES += $(DEFINES_$(CONFIG)) INSTALL_PREFIX=\"$(prefix)\"
  338. LDFLAGS += $(LDFLAGS_$(CONFIG))
  339. ifneq ($(SYSTEM),MINGW32)
  340. PIC_CPPFLAGS = -fPIC
  341. CPPFLAGS += -fPIC
  342. LDFLAGS += -fPIC
  343. endif
  344. INCLUDES = . include $(GENDIR)
  345. LDFLAGS += -Llibs/$(CONFIG)
  346. ifeq ($(SYSTEM),Darwin)
  347. ifneq ($(wildcard /usr/local/ssl/include),)
  348. INCLUDES += /usr/local/ssl/include
  349. endif
  350. ifneq ($(wildcard /opt/local/include),)
  351. INCLUDES += /opt/local/include
  352. endif
  353. ifneq ($(wildcard /usr/local/include),)
  354. INCLUDES += /usr/local/include
  355. endif
  356. LIBS = m z
  357. ifneq ($(wildcard /usr/local/ssl/lib),)
  358. LDFLAGS += -L/usr/local/ssl/lib
  359. endif
  360. ifneq ($(wildcard /opt/local/lib),)
  361. LDFLAGS += -L/opt/local/lib
  362. endif
  363. ifneq ($(wildcard /usr/local/lib),)
  364. LDFLAGS += -L/usr/local/lib
  365. endif
  366. endif
  367. ifeq ($(SYSTEM),Linux)
  368. LIBS = dl rt m pthread
  369. LDFLAGS += -pthread
  370. endif
  371. ifeq ($(SYSTEM),MINGW32)
  372. LIBS = m pthread ws2_32 dbghelp
  373. LDFLAGS += -pthread
  374. endif
  375. #
  376. # The steps for cross-compiling are as follows:
  377. # First, clone and make install of grpc using the native compilers for the host.
  378. # Also, install protoc (e.g., from a package like apt-get)
  379. # Then clone a fresh grpc for the actual cross-compiled build
  380. # Set the environment variable GRPC_CROSS_COMPILE to true
  381. # Set CC, CXX, LD, LDXX, AR, and STRIP to the cross-compiling binaries
  382. # Also set PROTOBUF_CONFIG_OPTS to indicate cross-compilation to protobuf (e.g.,
  383. # PROTOBUF_CONFIG_OPTS="--host=arm-linux --with-protoc=/usr/local/bin/protoc" )
  384. # Set HAS_PKG_CONFIG=false
  385. # To build tests, go to third_party/gflags and follow its ccmake instructions
  386. # Make sure that you enable building shared libraries and set your prefix to
  387. # something useful like /usr/local/cross
  388. # You will also need to set GRPC_CROSS_LDOPTS and GRPC_CROSS_AROPTS to hold
  389. # additional required arguments for LD and AR (examples below)
  390. # Then you can do a make from the cross-compiling fresh clone!
  391. #
  392. ifeq ($(GRPC_CROSS_COMPILE),true)
  393. LDFLAGS += $(GRPC_CROSS_LDOPTS) # e.g. -L/usr/local/lib -L/usr/local/cross/lib
  394. ARFLAGS += $(GRPC_CROSS_AROPTS) # e.g., rc --target=elf32-little
  395. USE_BUILT_PROTOC = false
  396. endif
  397. # V=1 can be used to print commands run by make
  398. ifeq ($(V),1)
  399. E = @:
  400. Q =
  401. else
  402. E = @echo
  403. Q = @
  404. endif
  405. CORE_VERSION = 12.0.0
  406. CPP_VERSION = 1.33.0-dev
  407. CSHARP_VERSION = 2.33.0-dev
  408. CPPFLAGS_NO_ARCH += $(addprefix -I, $(INCLUDES)) $(addprefix -D, $(DEFINES))
  409. CPPFLAGS += $(CPPFLAGS_NO_ARCH) $(ARCH_FLAGS)
  410. LDFLAGS += $(ARCH_FLAGS)
  411. LDLIBS += $(addprefix -l, $(LIBS))
  412. LDLIBSXX += $(addprefix -l, $(LIBSXX))
  413. CFLAGS += $(EXTRA_CFLAGS)
  414. CXXFLAGS += $(EXTRA_CXXFLAGS)
  415. CPPFLAGS += $(EXTRA_CPPFLAGS)
  416. LDFLAGS += $(EXTRA_LDFLAGS)
  417. DEFINES += $(EXTRA_DEFINES)
  418. LDLIBS += $(EXTRA_LDLIBS)
  419. HOST_CPPFLAGS += $(CPPFLAGS)
  420. HOST_CFLAGS += $(CFLAGS)
  421. HOST_CXXFLAGS += $(CXXFLAGS)
  422. HOST_LDFLAGS += $(LDFLAGS)
  423. HOST_LDLIBS += $(LDLIBS)
  424. # These are automatically computed variables.
  425. # There shouldn't be any need to change anything from now on.
  426. -include cache.mk
  427. CACHE_MK =
  428. ifeq ($(SYSTEM),MINGW32)
  429. EXECUTABLE_SUFFIX = .exe
  430. SHARED_EXT_CORE = dll
  431. SHARED_EXT_CPP = dll
  432. SHARED_EXT_CSHARP = dll
  433. SHARED_PREFIX =
  434. SHARED_VERSION_CORE = -12
  435. SHARED_VERSION_CPP = -1
  436. SHARED_VERSION_CSHARP = -2
  437. else ifeq ($(SYSTEM),Darwin)
  438. EXECUTABLE_SUFFIX =
  439. SHARED_EXT_CORE = dylib
  440. SHARED_EXT_CPP = dylib
  441. SHARED_EXT_CSHARP = dylib
  442. SHARED_PREFIX = lib
  443. SHARED_VERSION_CORE =
  444. SHARED_VERSION_CPP =
  445. SHARED_VERSION_CSHARP =
  446. else
  447. EXECUTABLE_SUFFIX =
  448. SHARED_EXT_CORE = so.$(CORE_VERSION)
  449. SHARED_EXT_CPP = so.$(CPP_VERSION)
  450. SHARED_EXT_CSHARP = so.$(CSHARP_VERSION)
  451. SHARED_PREFIX = lib
  452. SHARED_VERSION_CORE =
  453. SHARED_VERSION_CPP =
  454. SHARED_VERSION_CSHARP =
  455. endif
  456. ifeq ($(wildcard .git),)
  457. IS_GIT_FOLDER = false
  458. else
  459. IS_GIT_FOLDER = true
  460. endif
  461. # Setup zlib dependency
  462. ifeq ($(wildcard third_party/zlib/zlib.h),)
  463. HAS_EMBEDDED_ZLIB = false
  464. else
  465. HAS_EMBEDDED_ZLIB = true
  466. endif
  467. # for zlib, we support building both from submodule
  468. # and from system-installed zlib. In some builds,
  469. # embedding zlib is not desirable.
  470. # By default we use the system zlib (to match legacy behavior)
  471. EMBED_ZLIB ?= false
  472. ifeq ($(EMBED_ZLIB),true)
  473. ZLIB_DEP = $(LIBDIR)/$(CONFIG)/libz.a
  474. ZLIB_MERGE_LIBS = $(LIBDIR)/$(CONFIG)/libz.a
  475. ZLIB_MERGE_OBJS = $(LIBZ_OBJS)
  476. CPPFLAGS += -Ithird_party/zlib
  477. else
  478. LIBS += z
  479. endif
  480. # Setup c-ares dependency
  481. ifeq ($(wildcard third_party/cares/cares/ares.h),)
  482. HAS_EMBEDDED_CARES = false
  483. else
  484. HAS_EMBEDDED_CARES = true
  485. endif
  486. ifeq ($(HAS_EMBEDDED_CARES),true)
  487. EMBED_CARES ?= true
  488. else
  489. # only building with c-ares from submodule is supported
  490. DEP_MISSING += cares
  491. EMBED_CARES ?= broken
  492. endif
  493. ifeq ($(EMBED_CARES),true)
  494. CARES_DEP = $(LIBDIR)/$(CONFIG)/libares.a
  495. CARES_MERGE_OBJS = $(LIBARES_OBJS)
  496. CARES_MERGE_LIBS = $(LIBDIR)/$(CONFIG)/libares.a
  497. CPPFLAGS := -Ithird_party/cares -Ithird_party/cares/cares $(CPPFLAGS)
  498. endif
  499. # Setup address_sorting dependency
  500. ADDRESS_SORTING_DEP = $(LIBDIR)/$(CONFIG)/libaddress_sorting.a
  501. ADDRESS_SORTING_MERGE_OBJS = $(LIBADDRESS_SORTING_OBJS)
  502. ADDRESS_SORTING_MERGE_LIBS = $(LIBDIR)/$(CONFIG)/libaddress_sorting.a
  503. CPPFLAGS := -Ithird_party/address_sorting/include $(CPPFLAGS)
  504. # Setup abseil dependency
  505. GRPC_ABSEIL_DEP = $(LIBDIR)/$(CONFIG)/libgrpc_abseil.a
  506. GRPC_ABSEIL_MERGE_LIBS = $(LIBDIR)/$(CONFIG)/libgrpc_abseil.a
  507. ifeq ($(HOST_IS_X86_64),true)
  508. ABSL_RANDOM_HWAES_FLAGS = -maes -msse4
  509. else
  510. ABSL_RANDOM_HWAES_FLAGS =
  511. endif
  512. # Setup re2 dependency
  513. RE2_DEP = $(LIBDIR)/$(CONFIG)/libre2.a
  514. RE2_MERGE_OBJS = $(LIBRE2_OBJS)
  515. RE2_MERGE_LIBS = $(LIBDIR)/$(CONFIG)/libre2.a
  516. # Setup upb dependency
  517. UPB_DEP = $(LIBDIR)/$(CONFIG)/libupb.a
  518. UPB_MERGE_OBJS = $(LIBUPB_OBJS)
  519. UPB_MERGE_LIBS = $(LIBDIR)/$(CONFIG)/libupb.a
  520. # Setup boringssl dependency
  521. ifeq ($(wildcard third_party/boringssl-with-bazel/src/include/openssl/ssl.h),)
  522. HAS_EMBEDDED_OPENSSL = false
  523. else
  524. HAS_EMBEDDED_OPENSSL = true
  525. endif
  526. ifeq ($(HAS_EMBEDDED_OPENSSL),true)
  527. EMBED_OPENSSL ?= true
  528. else
  529. # only support building boringssl from submodule
  530. DEP_MISSING += openssl
  531. EMBED_OPENSSL ?= broken
  532. endif
  533. ifeq ($(EMBED_OPENSSL),true)
  534. OPENSSL_DEP += $(LIBDIR)/$(CONFIG)/libboringssl.a
  535. OPENSSL_MERGE_LIBS += $(LIBDIR)/$(CONFIG)/libboringssl.a
  536. OPENSSL_MERGE_OBJS += $(LIBBORINGSSL_OBJS)
  537. # need to prefix these to ensure overriding system libraries
  538. CPPFLAGS := -Ithird_party/boringssl-with-bazel/src/include $(CPPFLAGS)
  539. ifeq ($(DISABLE_ALPN),true)
  540. CPPFLAGS += -DTSI_OPENSSL_ALPN_SUPPORT=0
  541. LIBS_SECURE = $(OPENSSL_LIBS)
  542. endif # DISABLE_ALPN
  543. endif # EMBED_OPENSSL
  544. LDLIBS_SECURE += $(addprefix -l, $(LIBS_SECURE))
  545. # Setup protobuf dependency
  546. # we only support building protobuf from submodule
  547. HAS_SYSTEM_PROTOBUF = false
  548. HAS_PROTOC = false
  549. HAS_VALID_PROTOC = false
  550. ifeq ($(wildcard third_party/protobuf/src/google/protobuf/descriptor.pb.h),)
  551. HAS_EMBEDDED_PROTOBUF = false
  552. ifneq ($(HAS_VALID_PROTOC),true)
  553. NO_PROTOC = true
  554. endif
  555. else
  556. HAS_EMBEDDED_PROTOBUF = true
  557. endif
  558. PROTOC_PLUGINS_DIR = $(BINDIR)/$(CONFIG)
  559. PROTOC_PLUGINS_ALL = $(BINDIR)/$(CONFIG)/grpc_cpp_plugin $(BINDIR)/$(CONFIG)/grpc_csharp_plugin $(BINDIR)/$(CONFIG)/grpc_node_plugin $(BINDIR)/$(CONFIG)/grpc_objective_c_plugin $(BINDIR)/$(CONFIG)/grpc_php_plugin $(BINDIR)/$(CONFIG)/grpc_python_plugin $(BINDIR)/$(CONFIG)/grpc_ruby_plugin
  560. ifeq ($(HAS_EMBEDDED_PROTOBUF),true)
  561. PROTOBUF_DEP = $(LIBDIR)/$(CONFIG)/protobuf/libprotobuf.a
  562. CPPFLAGS := -Ithird_party/protobuf/src $(CPPFLAGS)
  563. LDFLAGS := -L$(LIBDIR)/$(CONFIG)/protobuf $(LDFLAGS)
  564. PROTOC = $(BINDIR)/$(CONFIG)/protobuf/protoc
  565. PROTOC_PLUGINS = $(PROTOC_PLUGINS_ALL)
  566. else
  567. NO_PROTOBUF = true
  568. endif
  569. LIBS_PROTOBUF = protobuf
  570. LIBS_PROTOC = protoc protobuf
  571. HOST_LDLIBS_PROTOC += $(addprefix -l, $(LIBS_PROTOC))
  572. LDLIBS_PROTOBUF += $(addprefix -l, $(LIBS_PROTOBUF))
  573. ifeq ($(MAKECMDGOALS),clean)
  574. NO_DEPS = true
  575. endif
  576. .SECONDARY = %.pb.h %.pb.cc
  577. ifeq ($(DEP_MISSING),)
  578. all: static shared plugins
  579. dep_error:
  580. @echo "You shouldn't see this message - all of your dependencies are correct."
  581. else
  582. all: dep_error git_update stop
  583. dep_error:
  584. @echo
  585. @echo "DEPENDENCY ERROR"
  586. @echo
  587. @echo "You are missing system dependencies that are essential to build grpc,"
  588. @echo "and the third_party directory doesn't have them:"
  589. @echo
  590. @echo " $(DEP_MISSING)"
  591. @echo
  592. @echo "Installing the development packages for your system will solve"
  593. @echo "this issue. Please consult INSTALL to get more information."
  594. @echo
  595. @echo "If you need information about why these tests failed, run:"
  596. @echo
  597. @echo " make run_dep_checks"
  598. @echo
  599. endif
  600. git_update:
  601. ifeq ($(IS_GIT_FOLDER),true)
  602. @echo "Additionally, since you are in a git clone, you can download the"
  603. @echo "missing dependencies in third_party by running the following command:"
  604. @echo
  605. @echo " git submodule update --init"
  606. @echo
  607. endif
  608. openssl_dep_error: openssl_dep_message git_update stop
  609. protobuf_dep_error: protobuf_dep_message git_update stop
  610. protoc_dep_error: protoc_dep_message git_update stop
  611. openssl_dep_message:
  612. @echo
  613. @echo "DEPENDENCY ERROR"
  614. @echo
  615. @echo "The target you are trying to run requires an OpenSSL implementation."
  616. @echo "Your system doesn't have one, and either the third_party directory"
  617. @echo "doesn't have it, or your compiler can't build BoringSSL."
  618. @echo
  619. @echo "Please consult BUILDING.md to get more information."
  620. @echo
  621. @echo "If you need information about why these tests failed, run:"
  622. @echo
  623. @echo " make run_dep_checks"
  624. @echo
  625. protobuf_dep_message:
  626. @echo
  627. @echo "DEPENDENCY ERROR"
  628. @echo
  629. @echo "The target you are trying to run requires protobuf 3.12.0+"
  630. @echo "Your system doesn't have it, and neither does the third_party directory."
  631. @echo
  632. @echo "Please consult BUILDING.md to get more information."
  633. @echo
  634. @echo "If you need information about why these tests failed, run:"
  635. @echo
  636. @echo " make run_dep_checks"
  637. @echo
  638. protoc_dep_message:
  639. @echo
  640. @echo "DEPENDENCY ERROR"
  641. @echo
  642. @echo "The target you are trying to run requires protobuf-compiler 3.12.0+"
  643. @echo "Your system doesn't have it, and neither does the third_party directory."
  644. @echo
  645. @echo "Please consult BUILDING.md to get more information."
  646. @echo
  647. @echo "If you need information about why these tests failed, run:"
  648. @echo
  649. @echo " make run_dep_checks"
  650. @echo
  651. systemtap_dep_error:
  652. @echo
  653. @echo "DEPENDENCY ERROR"
  654. @echo
  655. @echo "Under the '$(CONFIG)' configutation, the target you are trying "
  656. @echo "to build requires systemtap 2.7+ (on Linux) or dtrace (on other "
  657. @echo "platforms such as Solaris and *BSD). "
  658. @echo
  659. @echo "Please consult BUILDING.md to get more information."
  660. @echo
  661. install_not_supported_message:
  662. @echo
  663. @echo "Installing via 'make' is no longer supported. Use cmake or bazel instead."
  664. @echo
  665. @echo "Please consult BUILDING.md to get more information."
  666. @echo
  667. install_not_supported_error: install_not_supported_message stop
  668. stop:
  669. @false
  670. grpc_cpp_plugin: $(BINDIR)/$(CONFIG)/grpc_cpp_plugin
  671. grpc_csharp_plugin: $(BINDIR)/$(CONFIG)/grpc_csharp_plugin
  672. grpc_node_plugin: $(BINDIR)/$(CONFIG)/grpc_node_plugin
  673. grpc_objective_c_plugin: $(BINDIR)/$(CONFIG)/grpc_objective_c_plugin
  674. grpc_php_plugin: $(BINDIR)/$(CONFIG)/grpc_php_plugin
  675. grpc_python_plugin: $(BINDIR)/$(CONFIG)/grpc_python_plugin
  676. grpc_ruby_plugin: $(BINDIR)/$(CONFIG)/grpc_ruby_plugin
  677. run_dep_checks:
  678. @echo "run_dep_checks target has been deprecated."
  679. third_party/protobuf/configure:
  680. $(E) "[AUTOGEN] Preparing protobuf"
  681. $(Q)(cd third_party/protobuf ; autoreconf -f -i -Wall,no-obsolete)
  682. $(LIBDIR)/$(CONFIG)/protobuf/libprotobuf.a: third_party/protobuf/configure
  683. $(E) "[MAKE] Building protobuf"
  684. $(Q)mkdir -p $(LIBDIR)/$(CONFIG)/protobuf
  685. $(Q)(cd third_party/protobuf ; CC="$(CC)" CXX="$(CXX)" LDFLAGS="$(LDFLAGS_$(CONFIG)) -g $(PROTOBUF_LDFLAGS_EXTRA)" CPPFLAGS="$(PIC_CPPFLAGS) $(CPPFLAGS_$(CONFIG)) -g $(PROTOBUF_CPPFLAGS_EXTRA)" ./configure --disable-shared --enable-static $(PROTOBUF_CONFIG_OPTS))
  686. $(Q)$(MAKE) -C third_party/protobuf clean
  687. $(Q)$(MAKE) -C third_party/protobuf
  688. $(Q)mkdir -p $(BINDIR)/$(CONFIG)/protobuf
  689. $(Q)cp third_party/protobuf/src/.libs/libprotoc.a $(LIBDIR)/$(CONFIG)/protobuf
  690. $(Q)cp third_party/protobuf/src/.libs/libprotobuf.a $(LIBDIR)/$(CONFIG)/protobuf
  691. $(Q)cp third_party/protobuf/src/protoc $(BINDIR)/$(CONFIG)/protobuf
  692. static: static_c static_cxx
  693. static_c: cache.mk $(LIBDIR)/$(CONFIG)/libaddress_sorting.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgrpc_csharp_ext.a $(LIBDIR)/$(CONFIG)/libgrpc_unsecure.a $(LIBDIR)/$(CONFIG)/libupb.a
  694. static_cxx: cache.mk $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc++_alts.a $(LIBDIR)/$(CONFIG)/libgrpc++_error_details.a $(LIBDIR)/$(CONFIG)/libgrpc++_reflection.a $(LIBDIR)/$(CONFIG)/libgrpc++_unsecure.a $(LIBDIR)/$(CONFIG)/libgrpcpp_channelz.a
  695. static_csharp: static_c
  696. shared: shared_c shared_cxx
  697. shared_c: cache.mk $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)address_sorting$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)gpr$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc_csharp_ext$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc_unsecure$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)upb$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE)
  698. shared_cxx: cache.mk $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc++$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc++_alts$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc++_error_details$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc++_reflection$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc++_unsecure$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpcpp_channelz$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP)
  699. shared_csharp: shared_c
  700. grpc_csharp_ext: shared_csharp
  701. plugins: $(PROTOC_PLUGINS)
  702. privatelibs: privatelibs_c privatelibs_cxx
  703. privatelibs_c: $(LIBDIR)/$(CONFIG)/libre2.a $(LIBDIR)/$(CONFIG)/libz.a $(LIBDIR)/$(CONFIG)/libares.a
  704. ifeq ($(EMBED_OPENSSL),true)
  705. privatelibs_cxx:
  706. else
  707. privatelibs_cxx:
  708. endif
  709. strip: strip-static strip-shared
  710. strip-static: strip-static_c strip-static_cxx
  711. strip-shared: strip-shared_c strip-shared_cxx
  712. strip-static_c: static_c
  713. ifeq ($(CONFIG),opt)
  714. $(E) "[STRIP] Stripping libaddress_sorting.a"
  715. $(Q) $(STRIP) $(LIBDIR)/$(CONFIG)/libaddress_sorting.a
  716. $(E) "[STRIP] Stripping libgpr.a"
  717. $(Q) $(STRIP) $(LIBDIR)/$(CONFIG)/libgpr.a
  718. $(E) "[STRIP] Stripping libgrpc.a"
  719. $(Q) $(STRIP) $(LIBDIR)/$(CONFIG)/libgrpc.a
  720. $(E) "[STRIP] Stripping libgrpc_csharp_ext.a"
  721. $(Q) $(STRIP) $(LIBDIR)/$(CONFIG)/libgrpc_csharp_ext.a
  722. $(E) "[STRIP] Stripping libgrpc_unsecure.a"
  723. $(Q) $(STRIP) $(LIBDIR)/$(CONFIG)/libgrpc_unsecure.a
  724. $(E) "[STRIP] Stripping libupb.a"
  725. $(Q) $(STRIP) $(LIBDIR)/$(CONFIG)/libupb.a
  726. endif
  727. strip-static_cxx: static_cxx
  728. ifeq ($(CONFIG),opt)
  729. $(E) "[STRIP] Stripping libgrpc++.a"
  730. $(Q) $(STRIP) $(LIBDIR)/$(CONFIG)/libgrpc++.a
  731. $(E) "[STRIP] Stripping libgrpc++_alts.a"
  732. $(Q) $(STRIP) $(LIBDIR)/$(CONFIG)/libgrpc++_alts.a
  733. $(E) "[STRIP] Stripping libgrpc++_error_details.a"
  734. $(Q) $(STRIP) $(LIBDIR)/$(CONFIG)/libgrpc++_error_details.a
  735. $(E) "[STRIP] Stripping libgrpc++_reflection.a"
  736. $(Q) $(STRIP) $(LIBDIR)/$(CONFIG)/libgrpc++_reflection.a
  737. $(E) "[STRIP] Stripping libgrpc++_unsecure.a"
  738. $(Q) $(STRIP) $(LIBDIR)/$(CONFIG)/libgrpc++_unsecure.a
  739. $(E) "[STRIP] Stripping libgrpcpp_channelz.a"
  740. $(Q) $(STRIP) $(LIBDIR)/$(CONFIG)/libgrpcpp_channelz.a
  741. endif
  742. strip-shared_c: shared_c
  743. ifeq ($(CONFIG),opt)
  744. $(E) "[STRIP] Stripping $(SHARED_PREFIX)address_sorting$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE)"
  745. $(Q) $(STRIP) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)address_sorting$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE)
  746. $(E) "[STRIP] Stripping $(SHARED_PREFIX)gpr$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE)"
  747. $(Q) $(STRIP) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)gpr$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE)
  748. $(E) "[STRIP] Stripping $(SHARED_PREFIX)grpc$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE)"
  749. $(Q) $(STRIP) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE)
  750. $(E) "[STRIP] Stripping $(SHARED_PREFIX)grpc_csharp_ext$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE)"
  751. $(Q) $(STRIP) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc_csharp_ext$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE)
  752. $(E) "[STRIP] Stripping $(SHARED_PREFIX)grpc_unsecure$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE)"
  753. $(Q) $(STRIP) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc_unsecure$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE)
  754. $(E) "[STRIP] Stripping $(SHARED_PREFIX)upb$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE)"
  755. $(Q) $(STRIP) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)upb$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE)
  756. endif
  757. strip-shared_cxx: shared_cxx
  758. ifeq ($(CONFIG),opt)
  759. $(E) "[STRIP] Stripping $(SHARED_PREFIX)grpc++$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP)"
  760. $(Q) $(STRIP) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc++$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP)
  761. $(E) "[STRIP] Stripping $(SHARED_PREFIX)grpc++_alts$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP)"
  762. $(Q) $(STRIP) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc++_alts$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP)
  763. $(E) "[STRIP] Stripping $(SHARED_PREFIX)grpc++_error_details$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP)"
  764. $(Q) $(STRIP) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc++_error_details$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP)
  765. $(E) "[STRIP] Stripping $(SHARED_PREFIX)grpc++_reflection$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP)"
  766. $(Q) $(STRIP) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc++_reflection$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP)
  767. $(E) "[STRIP] Stripping $(SHARED_PREFIX)grpc++_unsecure$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP)"
  768. $(Q) $(STRIP) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc++_unsecure$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP)
  769. $(E) "[STRIP] Stripping $(SHARED_PREFIX)grpcpp_channelz$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP)"
  770. $(Q) $(STRIP) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpcpp_channelz$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP)
  771. endif
  772. strip-shared_csharp: shared_csharp
  773. ifeq ($(CONFIG),opt)
  774. endif
  775. cache.mk::
  776. $(E) "[MAKE] Generating $@"
  777. $(Q) echo "$(CACHE_MK)" | tr , '\n' >$@
  778. ifeq ($(NO_PROTOC),true)
  779. $(GENDIR)/src/proto/grpc/channelz/channelz.pb.cc: protoc_dep_error
  780. $(GENDIR)/src/proto/grpc/channelz/channelz.grpc.pb.cc: protoc_dep_error
  781. else
  782. $(GENDIR)/src/proto/grpc/channelz/channelz.pb.cc: src/proto/grpc/channelz/channelz.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS)
  783. $(E) "[PROTOC] Generating protobuf CC file from $<"
  784. $(Q) mkdir -p `dirname $@`
  785. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --cpp_out=$(GENDIR) $<
  786. $(GENDIR)/src/proto/grpc/channelz/channelz.grpc.pb.cc: src/proto/grpc/channelz/channelz.proto $(GENDIR)/src/proto/grpc/channelz/channelz.pb.cc $(PROTOBUF_DEP) $(PROTOC_PLUGINS)
  787. $(E) "[GRPC] Generating gRPC's protobuf service CC file from $<"
  788. $(Q) mkdir -p `dirname $@`
  789. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(PROTOC_PLUGINS_DIR)/grpc_cpp_plugin$(EXECUTABLE_SUFFIX) $<
  790. endif
  791. ifeq ($(NO_PROTOC),true)
  792. $(GENDIR)/src/proto/grpc/core/stats.pb.cc: protoc_dep_error
  793. $(GENDIR)/src/proto/grpc/core/stats.grpc.pb.cc: protoc_dep_error
  794. else
  795. $(GENDIR)/src/proto/grpc/core/stats.pb.cc: src/proto/grpc/core/stats.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS)
  796. $(E) "[PROTOC] Generating protobuf CC file from $<"
  797. $(Q) mkdir -p `dirname $@`
  798. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --cpp_out=$(GENDIR) $<
  799. $(GENDIR)/src/proto/grpc/core/stats.grpc.pb.cc: src/proto/grpc/core/stats.proto $(GENDIR)/src/proto/grpc/core/stats.pb.cc $(PROTOBUF_DEP) $(PROTOC_PLUGINS)
  800. $(E) "[GRPC] Generating gRPC's protobuf service CC file from $<"
  801. $(Q) mkdir -p `dirname $@`
  802. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(PROTOC_PLUGINS_DIR)/grpc_cpp_plugin$(EXECUTABLE_SUFFIX) $<
  803. endif
  804. ifeq ($(NO_PROTOC),true)
  805. $(GENDIR)/src/proto/grpc/health/v1/health.pb.cc: protoc_dep_error
  806. $(GENDIR)/src/proto/grpc/health/v1/health.grpc.pb.cc: protoc_dep_error
  807. else
  808. $(GENDIR)/src/proto/grpc/health/v1/health.pb.cc: src/proto/grpc/health/v1/health.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS)
  809. $(E) "[PROTOC] Generating protobuf CC file from $<"
  810. $(Q) mkdir -p `dirname $@`
  811. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --cpp_out=$(GENDIR) $<
  812. $(GENDIR)/src/proto/grpc/health/v1/health.grpc.pb.cc: src/proto/grpc/health/v1/health.proto $(GENDIR)/src/proto/grpc/health/v1/health.pb.cc $(PROTOBUF_DEP) $(PROTOC_PLUGINS)
  813. $(E) "[GRPC] Generating gRPC's protobuf service CC file from $<"
  814. $(Q) mkdir -p `dirname $@`
  815. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(PROTOC_PLUGINS_DIR)/grpc_cpp_plugin$(EXECUTABLE_SUFFIX) $<
  816. endif
  817. ifeq ($(NO_PROTOC),true)
  818. $(GENDIR)/src/proto/grpc/lb/v1/load_balancer.pb.cc: protoc_dep_error
  819. $(GENDIR)/src/proto/grpc/lb/v1/load_balancer.grpc.pb.cc: protoc_dep_error
  820. else
  821. $(GENDIR)/src/proto/grpc/lb/v1/load_balancer.pb.cc: src/proto/grpc/lb/v1/load_balancer.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS)
  822. $(E) "[PROTOC] Generating protobuf CC file from $<"
  823. $(Q) mkdir -p `dirname $@`
  824. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --cpp_out=$(GENDIR) $<
  825. $(GENDIR)/src/proto/grpc/lb/v1/load_balancer.grpc.pb.cc: src/proto/grpc/lb/v1/load_balancer.proto $(GENDIR)/src/proto/grpc/lb/v1/load_balancer.pb.cc $(PROTOBUF_DEP) $(PROTOC_PLUGINS)
  826. $(E) "[GRPC] Generating gRPC's protobuf service CC file from $<"
  827. $(Q) mkdir -p `dirname $@`
  828. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(PROTOC_PLUGINS_DIR)/grpc_cpp_plugin$(EXECUTABLE_SUFFIX) $<
  829. endif
  830. ifeq ($(NO_PROTOC),true)
  831. $(GENDIR)/src/proto/grpc/reflection/v1alpha/reflection.pb.cc: protoc_dep_error
  832. $(GENDIR)/src/proto/grpc/reflection/v1alpha/reflection.grpc.pb.cc: protoc_dep_error
  833. else
  834. $(GENDIR)/src/proto/grpc/reflection/v1alpha/reflection.pb.cc: src/proto/grpc/reflection/v1alpha/reflection.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS)
  835. $(E) "[PROTOC] Generating protobuf CC file from $<"
  836. $(Q) mkdir -p `dirname $@`
  837. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --cpp_out=$(GENDIR) $<
  838. $(GENDIR)/src/proto/grpc/reflection/v1alpha/reflection.grpc.pb.cc: src/proto/grpc/reflection/v1alpha/reflection.proto $(GENDIR)/src/proto/grpc/reflection/v1alpha/reflection.pb.cc $(PROTOBUF_DEP) $(PROTOC_PLUGINS)
  839. $(E) "[GRPC] Generating gRPC's protobuf service CC file from $<"
  840. $(Q) mkdir -p `dirname $@`
  841. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(PROTOC_PLUGINS_DIR)/grpc_cpp_plugin$(EXECUTABLE_SUFFIX) $<
  842. endif
  843. ifeq ($(NO_PROTOC),true)
  844. $(GENDIR)/src/proto/grpc/status/status.pb.cc: protoc_dep_error
  845. $(GENDIR)/src/proto/grpc/status/status.grpc.pb.cc: protoc_dep_error
  846. else
  847. $(GENDIR)/src/proto/grpc/status/status.pb.cc: src/proto/grpc/status/status.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS)
  848. $(E) "[PROTOC] Generating protobuf CC file from $<"
  849. $(Q) mkdir -p `dirname $@`
  850. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --cpp_out=$(GENDIR) $<
  851. $(GENDIR)/src/proto/grpc/status/status.grpc.pb.cc: src/proto/grpc/status/status.proto $(GENDIR)/src/proto/grpc/status/status.pb.cc $(PROTOBUF_DEP) $(PROTOC_PLUGINS)
  852. $(E) "[GRPC] Generating gRPC's protobuf service CC file from $<"
  853. $(Q) mkdir -p `dirname $@`
  854. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(PROTOC_PLUGINS_DIR)/grpc_cpp_plugin$(EXECUTABLE_SUFFIX) $<
  855. endif
  856. ifeq ($(NO_PROTOC),true)
  857. $(GENDIR)/src/proto/grpc/testing/benchmark_service.pb.cc: protoc_dep_error
  858. $(GENDIR)/src/proto/grpc/testing/benchmark_service.grpc.pb.cc: protoc_dep_error
  859. else
  860. $(GENDIR)/src/proto/grpc/testing/benchmark_service.pb.cc: src/proto/grpc/testing/benchmark_service.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS) $(GENDIR)/src/proto/grpc/testing/messages.pb.cc
  861. $(E) "[PROTOC] Generating protobuf CC file from $<"
  862. $(Q) mkdir -p `dirname $@`
  863. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --cpp_out=$(GENDIR) $<
  864. $(GENDIR)/src/proto/grpc/testing/benchmark_service.grpc.pb.cc: src/proto/grpc/testing/benchmark_service.proto $(GENDIR)/src/proto/grpc/testing/benchmark_service.pb.cc $(PROTOBUF_DEP) $(PROTOC_PLUGINS) $(GENDIR)/src/proto/grpc/testing/messages.pb.cc $(GENDIR)/src/proto/grpc/testing/messages.grpc.pb.cc
  865. $(E) "[GRPC] Generating gRPC's protobuf service CC file from $<"
  866. $(Q) mkdir -p `dirname $@`
  867. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(PROTOC_PLUGINS_DIR)/grpc_cpp_plugin$(EXECUTABLE_SUFFIX) $<
  868. endif
  869. ifeq ($(NO_PROTOC),true)
  870. $(GENDIR)/src/proto/grpc/testing/control.pb.cc: protoc_dep_error
  871. $(GENDIR)/src/proto/grpc/testing/control.grpc.pb.cc: protoc_dep_error
  872. else
  873. $(GENDIR)/src/proto/grpc/testing/control.pb.cc: src/proto/grpc/testing/control.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS) $(GENDIR)/src/proto/grpc/testing/payloads.pb.cc $(GENDIR)/src/proto/grpc/testing/stats.pb.cc
  874. $(E) "[PROTOC] Generating protobuf CC file from $<"
  875. $(Q) mkdir -p `dirname $@`
  876. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --cpp_out=$(GENDIR) $<
  877. $(GENDIR)/src/proto/grpc/testing/control.grpc.pb.cc: src/proto/grpc/testing/control.proto $(GENDIR)/src/proto/grpc/testing/control.pb.cc $(PROTOBUF_DEP) $(PROTOC_PLUGINS) $(GENDIR)/src/proto/grpc/testing/payloads.pb.cc $(GENDIR)/src/proto/grpc/testing/payloads.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/stats.pb.cc $(GENDIR)/src/proto/grpc/testing/stats.grpc.pb.cc
  878. $(E) "[GRPC] Generating gRPC's protobuf service CC file from $<"
  879. $(Q) mkdir -p `dirname $@`
  880. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(PROTOC_PLUGINS_DIR)/grpc_cpp_plugin$(EXECUTABLE_SUFFIX) $<
  881. endif
  882. ifeq ($(NO_PROTOC),true)
  883. $(GENDIR)/src/proto/grpc/testing/duplicate/echo_duplicate.pb.cc: protoc_dep_error
  884. $(GENDIR)/src/proto/grpc/testing/duplicate/echo_duplicate.grpc.pb.cc: protoc_dep_error
  885. else
  886. $(GENDIR)/src/proto/grpc/testing/duplicate/echo_duplicate.pb.cc: src/proto/grpc/testing/duplicate/echo_duplicate.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS) $(GENDIR)/src/proto/grpc/testing/echo_messages.pb.cc
  887. $(E) "[PROTOC] Generating protobuf CC file from $<"
  888. $(Q) mkdir -p `dirname $@`
  889. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --cpp_out=$(GENDIR) $<
  890. $(GENDIR)/src/proto/grpc/testing/duplicate/echo_duplicate.grpc.pb.cc: src/proto/grpc/testing/duplicate/echo_duplicate.proto $(GENDIR)/src/proto/grpc/testing/duplicate/echo_duplicate.pb.cc $(PROTOBUF_DEP) $(PROTOC_PLUGINS) $(GENDIR)/src/proto/grpc/testing/echo_messages.pb.cc $(GENDIR)/src/proto/grpc/testing/echo_messages.grpc.pb.cc
  891. $(E) "[GRPC] Generating gRPC's protobuf service CC file from $<"
  892. $(Q) mkdir -p `dirname $@`
  893. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(PROTOC_PLUGINS_DIR)/grpc_cpp_plugin$(EXECUTABLE_SUFFIX) $<
  894. endif
  895. ifeq ($(NO_PROTOC),true)
  896. $(GENDIR)/src/proto/grpc/testing/echo.pb.cc: protoc_dep_error
  897. $(GENDIR)/src/proto/grpc/testing/echo.grpc.pb.cc: protoc_dep_error
  898. else
  899. $(GENDIR)/src/proto/grpc/testing/echo.pb.cc: src/proto/grpc/testing/echo.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS) $(GENDIR)/src/proto/grpc/testing/echo_messages.pb.cc $(GENDIR)/src/proto/grpc/testing/simple_messages.pb.cc
  900. $(E) "[PROTOC] Generating protobuf CC file from $<"
  901. $(Q) mkdir -p `dirname $@`
  902. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --cpp_out=$(GENDIR) $<
  903. $(GENDIR)/src/proto/grpc/testing/echo.grpc.pb.cc: src/proto/grpc/testing/echo.proto $(GENDIR)/src/proto/grpc/testing/echo.pb.cc $(PROTOBUF_DEP) $(PROTOC_PLUGINS) $(GENDIR)/src/proto/grpc/testing/echo_messages.pb.cc $(GENDIR)/src/proto/grpc/testing/echo_messages.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/simple_messages.pb.cc $(GENDIR)/src/proto/grpc/testing/simple_messages.grpc.pb.cc
  904. $(E) "[GRPC] Generating gRPC's protobuf service CC file from $<"
  905. $(Q) mkdir -p `dirname $@`
  906. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --grpc_out=generate_mock_code=true:$(GENDIR) --plugin=protoc-gen-grpc=$(PROTOC_PLUGINS_DIR)/grpc_cpp_plugin$(EXECUTABLE_SUFFIX) $<
  907. endif
  908. ifeq ($(NO_PROTOC),true)
  909. $(GENDIR)/src/proto/grpc/testing/echo_messages.pb.cc: protoc_dep_error
  910. $(GENDIR)/src/proto/grpc/testing/echo_messages.grpc.pb.cc: protoc_dep_error
  911. else
  912. $(GENDIR)/src/proto/grpc/testing/echo_messages.pb.cc: src/proto/grpc/testing/echo_messages.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS)
  913. $(E) "[PROTOC] Generating protobuf CC file from $<"
  914. $(Q) mkdir -p `dirname $@`
  915. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --cpp_out=$(GENDIR) $<
  916. $(GENDIR)/src/proto/grpc/testing/echo_messages.grpc.pb.cc: src/proto/grpc/testing/echo_messages.proto $(GENDIR)/src/proto/grpc/testing/echo_messages.pb.cc $(PROTOBUF_DEP) $(PROTOC_PLUGINS)
  917. $(E) "[GRPC] Generating gRPC's protobuf service CC file from $<"
  918. $(Q) mkdir -p `dirname $@`
  919. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(PROTOC_PLUGINS_DIR)/grpc_cpp_plugin$(EXECUTABLE_SUFFIX) $<
  920. endif
  921. ifeq ($(NO_PROTOC),true)
  922. $(GENDIR)/src/proto/grpc/testing/empty.pb.cc: protoc_dep_error
  923. $(GENDIR)/src/proto/grpc/testing/empty.grpc.pb.cc: protoc_dep_error
  924. else
  925. $(GENDIR)/src/proto/grpc/testing/empty.pb.cc: src/proto/grpc/testing/empty.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS)
  926. $(E) "[PROTOC] Generating protobuf CC file from $<"
  927. $(Q) mkdir -p `dirname $@`
  928. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --cpp_out=$(GENDIR) $<
  929. $(GENDIR)/src/proto/grpc/testing/empty.grpc.pb.cc: src/proto/grpc/testing/empty.proto $(GENDIR)/src/proto/grpc/testing/empty.pb.cc $(PROTOBUF_DEP) $(PROTOC_PLUGINS)
  930. $(E) "[GRPC] Generating gRPC's protobuf service CC file from $<"
  931. $(Q) mkdir -p `dirname $@`
  932. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(PROTOC_PLUGINS_DIR)/grpc_cpp_plugin$(EXECUTABLE_SUFFIX) $<
  933. endif
  934. ifeq ($(NO_PROTOC),true)
  935. $(GENDIR)/src/proto/grpc/testing/messages.pb.cc: protoc_dep_error
  936. $(GENDIR)/src/proto/grpc/testing/messages.grpc.pb.cc: protoc_dep_error
  937. else
  938. $(GENDIR)/src/proto/grpc/testing/messages.pb.cc: src/proto/grpc/testing/messages.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS)
  939. $(E) "[PROTOC] Generating protobuf CC file from $<"
  940. $(Q) mkdir -p `dirname $@`
  941. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --cpp_out=$(GENDIR) $<
  942. $(GENDIR)/src/proto/grpc/testing/messages.grpc.pb.cc: src/proto/grpc/testing/messages.proto $(GENDIR)/src/proto/grpc/testing/messages.pb.cc $(PROTOBUF_DEP) $(PROTOC_PLUGINS)
  943. $(E) "[GRPC] Generating gRPC's protobuf service CC file from $<"
  944. $(Q) mkdir -p `dirname $@`
  945. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(PROTOC_PLUGINS_DIR)/grpc_cpp_plugin$(EXECUTABLE_SUFFIX) $<
  946. endif
  947. ifeq ($(NO_PROTOC),true)
  948. $(GENDIR)/src/proto/grpc/testing/payloads.pb.cc: protoc_dep_error
  949. $(GENDIR)/src/proto/grpc/testing/payloads.grpc.pb.cc: protoc_dep_error
  950. else
  951. $(GENDIR)/src/proto/grpc/testing/payloads.pb.cc: src/proto/grpc/testing/payloads.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS)
  952. $(E) "[PROTOC] Generating protobuf CC file from $<"
  953. $(Q) mkdir -p `dirname $@`
  954. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --cpp_out=$(GENDIR) $<
  955. $(GENDIR)/src/proto/grpc/testing/payloads.grpc.pb.cc: src/proto/grpc/testing/payloads.proto $(GENDIR)/src/proto/grpc/testing/payloads.pb.cc $(PROTOBUF_DEP) $(PROTOC_PLUGINS)
  956. $(E) "[GRPC] Generating gRPC's protobuf service CC file from $<"
  957. $(Q) mkdir -p `dirname $@`
  958. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(PROTOC_PLUGINS_DIR)/grpc_cpp_plugin$(EXECUTABLE_SUFFIX) $<
  959. endif
  960. ifeq ($(NO_PROTOC),true)
  961. $(GENDIR)/src/proto/grpc/testing/report_qps_scenario_service.pb.cc: protoc_dep_error
  962. $(GENDIR)/src/proto/grpc/testing/report_qps_scenario_service.grpc.pb.cc: protoc_dep_error
  963. else
  964. $(GENDIR)/src/proto/grpc/testing/report_qps_scenario_service.pb.cc: src/proto/grpc/testing/report_qps_scenario_service.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS) $(GENDIR)/src/proto/grpc/testing/control.pb.cc
  965. $(E) "[PROTOC] Generating protobuf CC file from $<"
  966. $(Q) mkdir -p `dirname $@`
  967. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --cpp_out=$(GENDIR) $<
  968. $(GENDIR)/src/proto/grpc/testing/report_qps_scenario_service.grpc.pb.cc: src/proto/grpc/testing/report_qps_scenario_service.proto $(GENDIR)/src/proto/grpc/testing/report_qps_scenario_service.pb.cc $(PROTOBUF_DEP) $(PROTOC_PLUGINS) $(GENDIR)/src/proto/grpc/testing/control.pb.cc $(GENDIR)/src/proto/grpc/testing/control.grpc.pb.cc
  969. $(E) "[GRPC] Generating gRPC's protobuf service CC file from $<"
  970. $(Q) mkdir -p `dirname $@`
  971. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(PROTOC_PLUGINS_DIR)/grpc_cpp_plugin$(EXECUTABLE_SUFFIX) $<
  972. endif
  973. ifeq ($(NO_PROTOC),true)
  974. $(GENDIR)/src/proto/grpc/testing/simple_messages.pb.cc: protoc_dep_error
  975. $(GENDIR)/src/proto/grpc/testing/simple_messages.grpc.pb.cc: protoc_dep_error
  976. else
  977. $(GENDIR)/src/proto/grpc/testing/simple_messages.pb.cc: src/proto/grpc/testing/simple_messages.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS)
  978. $(E) "[PROTOC] Generating protobuf CC file from $<"
  979. $(Q) mkdir -p `dirname $@`
  980. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --cpp_out=$(GENDIR) $<
  981. $(GENDIR)/src/proto/grpc/testing/simple_messages.grpc.pb.cc: src/proto/grpc/testing/simple_messages.proto $(GENDIR)/src/proto/grpc/testing/simple_messages.pb.cc $(PROTOBUF_DEP) $(PROTOC_PLUGINS)
  982. $(E) "[GRPC] Generating gRPC's protobuf service CC file from $<"
  983. $(Q) mkdir -p `dirname $@`
  984. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(PROTOC_PLUGINS_DIR)/grpc_cpp_plugin$(EXECUTABLE_SUFFIX) $<
  985. endif
  986. ifeq ($(NO_PROTOC),true)
  987. $(GENDIR)/src/proto/grpc/testing/stats.pb.cc: protoc_dep_error
  988. $(GENDIR)/src/proto/grpc/testing/stats.grpc.pb.cc: protoc_dep_error
  989. else
  990. $(GENDIR)/src/proto/grpc/testing/stats.pb.cc: src/proto/grpc/testing/stats.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS) $(GENDIR)/src/proto/grpc/core/stats.pb.cc
  991. $(E) "[PROTOC] Generating protobuf CC file from $<"
  992. $(Q) mkdir -p `dirname $@`
  993. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --cpp_out=$(GENDIR) $<
  994. $(GENDIR)/src/proto/grpc/testing/stats.grpc.pb.cc: src/proto/grpc/testing/stats.proto $(GENDIR)/src/proto/grpc/testing/stats.pb.cc $(PROTOBUF_DEP) $(PROTOC_PLUGINS) $(GENDIR)/src/proto/grpc/core/stats.pb.cc $(GENDIR)/src/proto/grpc/core/stats.grpc.pb.cc
  995. $(E) "[GRPC] Generating gRPC's protobuf service CC file from $<"
  996. $(Q) mkdir -p `dirname $@`
  997. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(PROTOC_PLUGINS_DIR)/grpc_cpp_plugin$(EXECUTABLE_SUFFIX) $<
  998. endif
  999. ifeq ($(NO_PROTOC),true)
  1000. $(GENDIR)/src/proto/grpc/testing/test.pb.cc: protoc_dep_error
  1001. $(GENDIR)/src/proto/grpc/testing/test.grpc.pb.cc: protoc_dep_error
  1002. else
  1003. $(GENDIR)/src/proto/grpc/testing/test.pb.cc: src/proto/grpc/testing/test.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS) $(GENDIR)/src/proto/grpc/testing/empty.pb.cc $(GENDIR)/src/proto/grpc/testing/messages.pb.cc
  1004. $(E) "[PROTOC] Generating protobuf CC file from $<"
  1005. $(Q) mkdir -p `dirname $@`
  1006. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --cpp_out=$(GENDIR) $<
  1007. $(GENDIR)/src/proto/grpc/testing/test.grpc.pb.cc: src/proto/grpc/testing/test.proto $(GENDIR)/src/proto/grpc/testing/test.pb.cc $(PROTOBUF_DEP) $(PROTOC_PLUGINS) $(GENDIR)/src/proto/grpc/testing/empty.pb.cc $(GENDIR)/src/proto/grpc/testing/empty.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/messages.pb.cc $(GENDIR)/src/proto/grpc/testing/messages.grpc.pb.cc
  1008. $(E) "[GRPC] Generating gRPC's protobuf service CC file from $<"
  1009. $(Q) mkdir -p `dirname $@`
  1010. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(PROTOC_PLUGINS_DIR)/grpc_cpp_plugin$(EXECUTABLE_SUFFIX) $<
  1011. endif
  1012. ifeq ($(NO_PROTOC),true)
  1013. $(GENDIR)/src/proto/grpc/testing/worker_service.pb.cc: protoc_dep_error
  1014. $(GENDIR)/src/proto/grpc/testing/worker_service.grpc.pb.cc: protoc_dep_error
  1015. else
  1016. $(GENDIR)/src/proto/grpc/testing/worker_service.pb.cc: src/proto/grpc/testing/worker_service.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS) $(GENDIR)/src/proto/grpc/testing/control.pb.cc
  1017. $(E) "[PROTOC] Generating protobuf CC file from $<"
  1018. $(Q) mkdir -p `dirname $@`
  1019. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --cpp_out=$(GENDIR) $<
  1020. $(GENDIR)/src/proto/grpc/testing/worker_service.grpc.pb.cc: src/proto/grpc/testing/worker_service.proto $(GENDIR)/src/proto/grpc/testing/worker_service.pb.cc $(PROTOBUF_DEP) $(PROTOC_PLUGINS) $(GENDIR)/src/proto/grpc/testing/control.pb.cc $(GENDIR)/src/proto/grpc/testing/control.grpc.pb.cc
  1021. $(E) "[GRPC] Generating gRPC's protobuf service CC file from $<"
  1022. $(Q) mkdir -p `dirname $@`
  1023. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(PROTOC_PLUGINS_DIR)/grpc_cpp_plugin$(EXECUTABLE_SUFFIX) $<
  1024. endif
  1025. ifeq ($(NO_PROTOC),true)
  1026. $(GENDIR)/src/proto/grpc/testing/xds/ads_for_test.pb.cc: protoc_dep_error
  1027. $(GENDIR)/src/proto/grpc/testing/xds/ads_for_test.grpc.pb.cc: protoc_dep_error
  1028. else
  1029. $(GENDIR)/src/proto/grpc/testing/xds/ads_for_test.pb.cc: src/proto/grpc/testing/xds/ads_for_test.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS) $(GENDIR)/src/proto/grpc/testing/xds/eds_for_test.pb.cc
  1030. $(E) "[PROTOC] Generating protobuf CC file from $<"
  1031. $(Q) mkdir -p `dirname $@`
  1032. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --cpp_out=$(GENDIR) $<
  1033. $(GENDIR)/src/proto/grpc/testing/xds/ads_for_test.grpc.pb.cc: src/proto/grpc/testing/xds/ads_for_test.proto $(GENDIR)/src/proto/grpc/testing/xds/ads_for_test.pb.cc $(PROTOBUF_DEP) $(PROTOC_PLUGINS) $(GENDIR)/src/proto/grpc/testing/xds/eds_for_test.pb.cc $(GENDIR)/src/proto/grpc/testing/xds/eds_for_test.grpc.pb.cc
  1034. $(E) "[GRPC] Generating gRPC's protobuf service CC file from $<"
  1035. $(Q) mkdir -p `dirname $@`
  1036. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(PROTOC_PLUGINS_DIR)/grpc_cpp_plugin$(EXECUTABLE_SUFFIX) $<
  1037. endif
  1038. ifeq ($(NO_PROTOC),true)
  1039. $(GENDIR)/src/proto/grpc/testing/xds/cds_for_test.pb.cc: protoc_dep_error
  1040. $(GENDIR)/src/proto/grpc/testing/xds/cds_for_test.grpc.pb.cc: protoc_dep_error
  1041. else
  1042. $(GENDIR)/src/proto/grpc/testing/xds/cds_for_test.pb.cc: src/proto/grpc/testing/xds/cds_for_test.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS)
  1043. $(E) "[PROTOC] Generating protobuf CC file from $<"
  1044. $(Q) mkdir -p `dirname $@`
  1045. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --cpp_out=$(GENDIR) $<
  1046. $(GENDIR)/src/proto/grpc/testing/xds/cds_for_test.grpc.pb.cc: src/proto/grpc/testing/xds/cds_for_test.proto $(GENDIR)/src/proto/grpc/testing/xds/cds_for_test.pb.cc $(PROTOBUF_DEP) $(PROTOC_PLUGINS)
  1047. $(E) "[GRPC] Generating gRPC's protobuf service CC file from $<"
  1048. $(Q) mkdir -p `dirname $@`
  1049. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(PROTOC_PLUGINS_DIR)/grpc_cpp_plugin$(EXECUTABLE_SUFFIX) $<
  1050. endif
  1051. ifeq ($(NO_PROTOC),true)
  1052. $(GENDIR)/src/proto/grpc/testing/xds/eds_for_test.pb.cc: protoc_dep_error
  1053. $(GENDIR)/src/proto/grpc/testing/xds/eds_for_test.grpc.pb.cc: protoc_dep_error
  1054. else
  1055. $(GENDIR)/src/proto/grpc/testing/xds/eds_for_test.pb.cc: src/proto/grpc/testing/xds/eds_for_test.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS)
  1056. $(E) "[PROTOC] Generating protobuf CC file from $<"
  1057. $(Q) mkdir -p `dirname $@`
  1058. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --cpp_out=$(GENDIR) $<
  1059. $(GENDIR)/src/proto/grpc/testing/xds/eds_for_test.grpc.pb.cc: src/proto/grpc/testing/xds/eds_for_test.proto $(GENDIR)/src/proto/grpc/testing/xds/eds_for_test.pb.cc $(PROTOBUF_DEP) $(PROTOC_PLUGINS)
  1060. $(E) "[GRPC] Generating gRPC's protobuf service CC file from $<"
  1061. $(Q) mkdir -p `dirname $@`
  1062. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(PROTOC_PLUGINS_DIR)/grpc_cpp_plugin$(EXECUTABLE_SUFFIX) $<
  1063. endif
  1064. ifeq ($(NO_PROTOC),true)
  1065. $(GENDIR)/src/proto/grpc/testing/xds/lds_rds_for_test.pb.cc: protoc_dep_error
  1066. $(GENDIR)/src/proto/grpc/testing/xds/lds_rds_for_test.grpc.pb.cc: protoc_dep_error
  1067. else
  1068. $(GENDIR)/src/proto/grpc/testing/xds/lds_rds_for_test.pb.cc: src/proto/grpc/testing/xds/lds_rds_for_test.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS) $(GENDIR)/src/proto/grpc/testing/xds/cds_for_test.pb.cc $(GENDIR)/src/proto/grpc/testing/xds/eds_for_test.pb.cc
  1069. $(E) "[PROTOC] Generating protobuf CC file from $<"
  1070. $(Q) mkdir -p `dirname $@`
  1071. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --cpp_out=$(GENDIR) $<
  1072. $(GENDIR)/src/proto/grpc/testing/xds/lds_rds_for_test.grpc.pb.cc: src/proto/grpc/testing/xds/lds_rds_for_test.proto $(GENDIR)/src/proto/grpc/testing/xds/lds_rds_for_test.pb.cc $(PROTOBUF_DEP) $(PROTOC_PLUGINS) $(GENDIR)/src/proto/grpc/testing/xds/cds_for_test.pb.cc $(GENDIR)/src/proto/grpc/testing/xds/cds_for_test.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/xds/eds_for_test.pb.cc $(GENDIR)/src/proto/grpc/testing/xds/eds_for_test.grpc.pb.cc
  1073. $(E) "[GRPC] Generating gRPC's protobuf service CC file from $<"
  1074. $(Q) mkdir -p `dirname $@`
  1075. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(PROTOC_PLUGINS_DIR)/grpc_cpp_plugin$(EXECUTABLE_SUFFIX) $<
  1076. endif
  1077. ifeq ($(NO_PROTOC),true)
  1078. $(GENDIR)/src/proto/grpc/testing/xds/lrs_for_test.pb.cc: protoc_dep_error
  1079. $(GENDIR)/src/proto/grpc/testing/xds/lrs_for_test.grpc.pb.cc: protoc_dep_error
  1080. else
  1081. $(GENDIR)/src/proto/grpc/testing/xds/lrs_for_test.pb.cc: src/proto/grpc/testing/xds/lrs_for_test.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS) $(GENDIR)/src/proto/grpc/testing/xds/eds_for_test.pb.cc
  1082. $(E) "[PROTOC] Generating protobuf CC file from $<"
  1083. $(Q) mkdir -p `dirname $@`
  1084. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --cpp_out=$(GENDIR) $<
  1085. $(GENDIR)/src/proto/grpc/testing/xds/lrs_for_test.grpc.pb.cc: src/proto/grpc/testing/xds/lrs_for_test.proto $(GENDIR)/src/proto/grpc/testing/xds/lrs_for_test.pb.cc $(PROTOBUF_DEP) $(PROTOC_PLUGINS) $(GENDIR)/src/proto/grpc/testing/xds/eds_for_test.pb.cc $(GENDIR)/src/proto/grpc/testing/xds/eds_for_test.grpc.pb.cc
  1086. $(E) "[GRPC] Generating gRPC's protobuf service CC file from $<"
  1087. $(Q) mkdir -p `dirname $@`
  1088. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(PROTOC_PLUGINS_DIR)/grpc_cpp_plugin$(EXECUTABLE_SUFFIX) $<
  1089. endif
  1090. ifeq ($(NO_PROTOC),true)
  1091. $(GENDIR)/src/proto/grpc/testing/xds/orca_load_report_for_test.pb.cc: protoc_dep_error
  1092. $(GENDIR)/src/proto/grpc/testing/xds/orca_load_report_for_test.grpc.pb.cc: protoc_dep_error
  1093. else
  1094. $(GENDIR)/src/proto/grpc/testing/xds/orca_load_report_for_test.pb.cc: src/proto/grpc/testing/xds/orca_load_report_for_test.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS)
  1095. $(E) "[PROTOC] Generating protobuf CC file from $<"
  1096. $(Q) mkdir -p `dirname $@`
  1097. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --cpp_out=$(GENDIR) $<
  1098. $(GENDIR)/src/proto/grpc/testing/xds/orca_load_report_for_test.grpc.pb.cc: src/proto/grpc/testing/xds/orca_load_report_for_test.proto $(GENDIR)/src/proto/grpc/testing/xds/orca_load_report_for_test.pb.cc $(PROTOBUF_DEP) $(PROTOC_PLUGINS)
  1099. $(E) "[GRPC] Generating gRPC's protobuf service CC file from $<"
  1100. $(Q) mkdir -p `dirname $@`
  1101. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(PROTOC_PLUGINS_DIR)/grpc_cpp_plugin$(EXECUTABLE_SUFFIX) $<
  1102. endif
  1103. ifeq ($(NO_PROTOC),true)
  1104. $(GENDIR)/src/proto/grpc/testing/xds/v3/address.pb.cc: protoc_dep_error
  1105. $(GENDIR)/src/proto/grpc/testing/xds/v3/address.grpc.pb.cc: protoc_dep_error
  1106. else
  1107. $(GENDIR)/src/proto/grpc/testing/xds/v3/address.pb.cc: src/proto/grpc/testing/xds/v3/address.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS)
  1108. $(E) "[PROTOC] Generating protobuf CC file from $<"
  1109. $(Q) mkdir -p `dirname $@`
  1110. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --cpp_out=$(GENDIR) $<
  1111. $(GENDIR)/src/proto/grpc/testing/xds/v3/address.grpc.pb.cc: src/proto/grpc/testing/xds/v3/address.proto $(GENDIR)/src/proto/grpc/testing/xds/v3/address.pb.cc $(PROTOBUF_DEP) $(PROTOC_PLUGINS)
  1112. $(E) "[GRPC] Generating gRPC's protobuf service CC file from $<"
  1113. $(Q) mkdir -p `dirname $@`
  1114. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(PROTOC_PLUGINS_DIR)/grpc_cpp_plugin$(EXECUTABLE_SUFFIX) $<
  1115. endif
  1116. ifeq ($(NO_PROTOC),true)
  1117. $(GENDIR)/src/proto/grpc/testing/xds/v3/ads.pb.cc: protoc_dep_error
  1118. $(GENDIR)/src/proto/grpc/testing/xds/v3/ads.grpc.pb.cc: protoc_dep_error
  1119. else
  1120. $(GENDIR)/src/proto/grpc/testing/xds/v3/ads.pb.cc: src/proto/grpc/testing/xds/v3/ads.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS) $(GENDIR)/src/proto/grpc/testing/xds/v3/discovery.pb.cc
  1121. $(E) "[PROTOC] Generating protobuf CC file from $<"
  1122. $(Q) mkdir -p `dirname $@`
  1123. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --cpp_out=$(GENDIR) $<
  1124. $(GENDIR)/src/proto/grpc/testing/xds/v3/ads.grpc.pb.cc: src/proto/grpc/testing/xds/v3/ads.proto $(GENDIR)/src/proto/grpc/testing/xds/v3/ads.pb.cc $(PROTOBUF_DEP) $(PROTOC_PLUGINS) $(GENDIR)/src/proto/grpc/testing/xds/v3/discovery.pb.cc $(GENDIR)/src/proto/grpc/testing/xds/v3/discovery.grpc.pb.cc
  1125. $(E) "[GRPC] Generating gRPC's protobuf service CC file from $<"
  1126. $(Q) mkdir -p `dirname $@`
  1127. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(PROTOC_PLUGINS_DIR)/grpc_cpp_plugin$(EXECUTABLE_SUFFIX) $<
  1128. endif
  1129. ifeq ($(NO_PROTOC),true)
  1130. $(GENDIR)/src/proto/grpc/testing/xds/v3/base.pb.cc: protoc_dep_error
  1131. $(GENDIR)/src/proto/grpc/testing/xds/v3/base.grpc.pb.cc: protoc_dep_error
  1132. else
  1133. $(GENDIR)/src/proto/grpc/testing/xds/v3/base.pb.cc: src/proto/grpc/testing/xds/v3/base.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS) $(GENDIR)/src/proto/grpc/testing/xds/v3/percent.pb.cc
  1134. $(E) "[PROTOC] Generating protobuf CC file from $<"
  1135. $(Q) mkdir -p `dirname $@`
  1136. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --cpp_out=$(GENDIR) $<
  1137. $(GENDIR)/src/proto/grpc/testing/xds/v3/base.grpc.pb.cc: src/proto/grpc/testing/xds/v3/base.proto $(GENDIR)/src/proto/grpc/testing/xds/v3/base.pb.cc $(PROTOBUF_DEP) $(PROTOC_PLUGINS) $(GENDIR)/src/proto/grpc/testing/xds/v3/percent.pb.cc $(GENDIR)/src/proto/grpc/testing/xds/v3/percent.grpc.pb.cc
  1138. $(E) "[GRPC] Generating gRPC's protobuf service CC file from $<"
  1139. $(Q) mkdir -p `dirname $@`
  1140. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(PROTOC_PLUGINS_DIR)/grpc_cpp_plugin$(EXECUTABLE_SUFFIX) $<
  1141. endif
  1142. ifeq ($(NO_PROTOC),true)
  1143. $(GENDIR)/src/proto/grpc/testing/xds/v3/cluster.pb.cc: protoc_dep_error
  1144. $(GENDIR)/src/proto/grpc/testing/xds/v3/cluster.grpc.pb.cc: protoc_dep_error
  1145. else
  1146. $(GENDIR)/src/proto/grpc/testing/xds/v3/cluster.pb.cc: src/proto/grpc/testing/xds/v3/cluster.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS) $(GENDIR)/src/proto/grpc/testing/xds/v3/config_source.pb.cc
  1147. $(E) "[PROTOC] Generating protobuf CC file from $<"
  1148. $(Q) mkdir -p `dirname $@`
  1149. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --cpp_out=$(GENDIR) $<
  1150. $(GENDIR)/src/proto/grpc/testing/xds/v3/cluster.grpc.pb.cc: src/proto/grpc/testing/xds/v3/cluster.proto $(GENDIR)/src/proto/grpc/testing/xds/v3/cluster.pb.cc $(PROTOBUF_DEP) $(PROTOC_PLUGINS) $(GENDIR)/src/proto/grpc/testing/xds/v3/config_source.pb.cc $(GENDIR)/src/proto/grpc/testing/xds/v3/config_source.grpc.pb.cc
  1151. $(E) "[GRPC] Generating gRPC's protobuf service CC file from $<"
  1152. $(Q) mkdir -p `dirname $@`
  1153. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(PROTOC_PLUGINS_DIR)/grpc_cpp_plugin$(EXECUTABLE_SUFFIX) $<
  1154. endif
  1155. ifeq ($(NO_PROTOC),true)
  1156. $(GENDIR)/src/proto/grpc/testing/xds/v3/config_source.pb.cc: protoc_dep_error
  1157. $(GENDIR)/src/proto/grpc/testing/xds/v3/config_source.grpc.pb.cc: protoc_dep_error
  1158. else
  1159. $(GENDIR)/src/proto/grpc/testing/xds/v3/config_source.pb.cc: src/proto/grpc/testing/xds/v3/config_source.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS)
  1160. $(E) "[PROTOC] Generating protobuf CC file from $<"
  1161. $(Q) mkdir -p `dirname $@`
  1162. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --cpp_out=$(GENDIR) $<
  1163. $(GENDIR)/src/proto/grpc/testing/xds/v3/config_source.grpc.pb.cc: src/proto/grpc/testing/xds/v3/config_source.proto $(GENDIR)/src/proto/grpc/testing/xds/v3/config_source.pb.cc $(PROTOBUF_DEP) $(PROTOC_PLUGINS)
  1164. $(E) "[GRPC] Generating gRPC's protobuf service CC file from $<"
  1165. $(Q) mkdir -p `dirname $@`
  1166. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(PROTOC_PLUGINS_DIR)/grpc_cpp_plugin$(EXECUTABLE_SUFFIX) $<
  1167. endif
  1168. ifeq ($(NO_PROTOC),true)
  1169. $(GENDIR)/src/proto/grpc/testing/xds/v3/discovery.pb.cc: protoc_dep_error
  1170. $(GENDIR)/src/proto/grpc/testing/xds/v3/discovery.grpc.pb.cc: protoc_dep_error
  1171. else
  1172. $(GENDIR)/src/proto/grpc/testing/xds/v3/discovery.pb.cc: src/proto/grpc/testing/xds/v3/discovery.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS) $(GENDIR)/src/proto/grpc/testing/xds/v3/base.pb.cc
  1173. $(E) "[PROTOC] Generating protobuf CC file from $<"
  1174. $(Q) mkdir -p `dirname $@`
  1175. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --cpp_out=$(GENDIR) $<
  1176. $(GENDIR)/src/proto/grpc/testing/xds/v3/discovery.grpc.pb.cc: src/proto/grpc/testing/xds/v3/discovery.proto $(GENDIR)/src/proto/grpc/testing/xds/v3/discovery.pb.cc $(PROTOBUF_DEP) $(PROTOC_PLUGINS) $(GENDIR)/src/proto/grpc/testing/xds/v3/base.pb.cc $(GENDIR)/src/proto/grpc/testing/xds/v3/base.grpc.pb.cc
  1177. $(E) "[GRPC] Generating gRPC's protobuf service CC file from $<"
  1178. $(Q) mkdir -p `dirname $@`
  1179. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(PROTOC_PLUGINS_DIR)/grpc_cpp_plugin$(EXECUTABLE_SUFFIX) $<
  1180. endif
  1181. ifeq ($(NO_PROTOC),true)
  1182. $(GENDIR)/src/proto/grpc/testing/xds/v3/endpoint.pb.cc: protoc_dep_error
  1183. $(GENDIR)/src/proto/grpc/testing/xds/v3/endpoint.grpc.pb.cc: protoc_dep_error
  1184. else
  1185. $(GENDIR)/src/proto/grpc/testing/xds/v3/endpoint.pb.cc: src/proto/grpc/testing/xds/v3/endpoint.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS) $(GENDIR)/src/proto/grpc/testing/xds/v3/address.pb.cc $(GENDIR)/src/proto/grpc/testing/xds/v3/base.pb.cc $(GENDIR)/src/proto/grpc/testing/xds/v3/percent.pb.cc
  1186. $(E) "[PROTOC] Generating protobuf CC file from $<"
  1187. $(Q) mkdir -p `dirname $@`
  1188. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --cpp_out=$(GENDIR) $<
  1189. $(GENDIR)/src/proto/grpc/testing/xds/v3/endpoint.grpc.pb.cc: src/proto/grpc/testing/xds/v3/endpoint.proto $(GENDIR)/src/proto/grpc/testing/xds/v3/endpoint.pb.cc $(PROTOBUF_DEP) $(PROTOC_PLUGINS) $(GENDIR)/src/proto/grpc/testing/xds/v3/address.pb.cc $(GENDIR)/src/proto/grpc/testing/xds/v3/address.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/xds/v3/base.pb.cc $(GENDIR)/src/proto/grpc/testing/xds/v3/base.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/xds/v3/percent.pb.cc $(GENDIR)/src/proto/grpc/testing/xds/v3/percent.grpc.pb.cc
  1190. $(E) "[GRPC] Generating gRPC's protobuf service CC file from $<"
  1191. $(Q) mkdir -p `dirname $@`
  1192. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(PROTOC_PLUGINS_DIR)/grpc_cpp_plugin$(EXECUTABLE_SUFFIX) $<
  1193. endif
  1194. ifeq ($(NO_PROTOC),true)
  1195. $(GENDIR)/src/proto/grpc/testing/xds/v3/http_connection_manager.pb.cc: protoc_dep_error
  1196. $(GENDIR)/src/proto/grpc/testing/xds/v3/http_connection_manager.grpc.pb.cc: protoc_dep_error
  1197. else
  1198. $(GENDIR)/src/proto/grpc/testing/xds/v3/http_connection_manager.pb.cc: src/proto/grpc/testing/xds/v3/http_connection_manager.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS) $(GENDIR)/src/proto/grpc/testing/xds/v3/config_source.pb.cc $(GENDIR)/src/proto/grpc/testing/xds/v3/route.pb.cc
  1199. $(E) "[PROTOC] Generating protobuf CC file from $<"
  1200. $(Q) mkdir -p `dirname $@`
  1201. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --cpp_out=$(GENDIR) $<
  1202. $(GENDIR)/src/proto/grpc/testing/xds/v3/http_connection_manager.grpc.pb.cc: src/proto/grpc/testing/xds/v3/http_connection_manager.proto $(GENDIR)/src/proto/grpc/testing/xds/v3/http_connection_manager.pb.cc $(PROTOBUF_DEP) $(PROTOC_PLUGINS) $(GENDIR)/src/proto/grpc/testing/xds/v3/config_source.pb.cc $(GENDIR)/src/proto/grpc/testing/xds/v3/config_source.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/xds/v3/route.pb.cc $(GENDIR)/src/proto/grpc/testing/xds/v3/route.grpc.pb.cc
  1203. $(E) "[GRPC] Generating gRPC's protobuf service CC file from $<"
  1204. $(Q) mkdir -p `dirname $@`
  1205. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(PROTOC_PLUGINS_DIR)/grpc_cpp_plugin$(EXECUTABLE_SUFFIX) $<
  1206. endif
  1207. ifeq ($(NO_PROTOC),true)
  1208. $(GENDIR)/src/proto/grpc/testing/xds/v3/listener.pb.cc: protoc_dep_error
  1209. $(GENDIR)/src/proto/grpc/testing/xds/v3/listener.grpc.pb.cc: protoc_dep_error
  1210. else
  1211. $(GENDIR)/src/proto/grpc/testing/xds/v3/listener.pb.cc: src/proto/grpc/testing/xds/v3/listener.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS)
  1212. $(E) "[PROTOC] Generating protobuf CC file from $<"
  1213. $(Q) mkdir -p `dirname $@`
  1214. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --cpp_out=$(GENDIR) $<
  1215. $(GENDIR)/src/proto/grpc/testing/xds/v3/listener.grpc.pb.cc: src/proto/grpc/testing/xds/v3/listener.proto $(GENDIR)/src/proto/grpc/testing/xds/v3/listener.pb.cc $(PROTOBUF_DEP) $(PROTOC_PLUGINS)
  1216. $(E) "[GRPC] Generating gRPC's protobuf service CC file from $<"
  1217. $(Q) mkdir -p `dirname $@`
  1218. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(PROTOC_PLUGINS_DIR)/grpc_cpp_plugin$(EXECUTABLE_SUFFIX) $<
  1219. endif
  1220. ifeq ($(NO_PROTOC),true)
  1221. $(GENDIR)/src/proto/grpc/testing/xds/v3/load_report.pb.cc: protoc_dep_error
  1222. $(GENDIR)/src/proto/grpc/testing/xds/v3/load_report.grpc.pb.cc: protoc_dep_error
  1223. else
  1224. $(GENDIR)/src/proto/grpc/testing/xds/v3/load_report.pb.cc: src/proto/grpc/testing/xds/v3/load_report.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS) $(GENDIR)/src/proto/grpc/testing/xds/v3/address.pb.cc $(GENDIR)/src/proto/grpc/testing/xds/v3/base.pb.cc
  1225. $(E) "[PROTOC] Generating protobuf CC file from $<"
  1226. $(Q) mkdir -p `dirname $@`
  1227. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --cpp_out=$(GENDIR) $<
  1228. $(GENDIR)/src/proto/grpc/testing/xds/v3/load_report.grpc.pb.cc: src/proto/grpc/testing/xds/v3/load_report.proto $(GENDIR)/src/proto/grpc/testing/xds/v3/load_report.pb.cc $(PROTOBUF_DEP) $(PROTOC_PLUGINS) $(GENDIR)/src/proto/grpc/testing/xds/v3/address.pb.cc $(GENDIR)/src/proto/grpc/testing/xds/v3/address.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/xds/v3/base.pb.cc $(GENDIR)/src/proto/grpc/testing/xds/v3/base.grpc.pb.cc
  1229. $(E) "[GRPC] Generating gRPC's protobuf service CC file from $<"
  1230. $(Q) mkdir -p `dirname $@`
  1231. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(PROTOC_PLUGINS_DIR)/grpc_cpp_plugin$(EXECUTABLE_SUFFIX) $<
  1232. endif
  1233. ifeq ($(NO_PROTOC),true)
  1234. $(GENDIR)/src/proto/grpc/testing/xds/v3/lrs.pb.cc: protoc_dep_error
  1235. $(GENDIR)/src/proto/grpc/testing/xds/v3/lrs.grpc.pb.cc: protoc_dep_error
  1236. else
  1237. $(GENDIR)/src/proto/grpc/testing/xds/v3/lrs.pb.cc: src/proto/grpc/testing/xds/v3/lrs.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS) $(GENDIR)/src/proto/grpc/testing/xds/v3/base.pb.cc $(GENDIR)/src/proto/grpc/testing/xds/v3/load_report.pb.cc
  1238. $(E) "[PROTOC] Generating protobuf CC file from $<"
  1239. $(Q) mkdir -p `dirname $@`
  1240. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --cpp_out=$(GENDIR) $<
  1241. $(GENDIR)/src/proto/grpc/testing/xds/v3/lrs.grpc.pb.cc: src/proto/grpc/testing/xds/v3/lrs.proto $(GENDIR)/src/proto/grpc/testing/xds/v3/lrs.pb.cc $(PROTOBUF_DEP) $(PROTOC_PLUGINS) $(GENDIR)/src/proto/grpc/testing/xds/v3/base.pb.cc $(GENDIR)/src/proto/grpc/testing/xds/v3/base.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/xds/v3/load_report.pb.cc $(GENDIR)/src/proto/grpc/testing/xds/v3/load_report.grpc.pb.cc
  1242. $(E) "[GRPC] Generating gRPC's protobuf service CC file from $<"
  1243. $(Q) mkdir -p `dirname $@`
  1244. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(PROTOC_PLUGINS_DIR)/grpc_cpp_plugin$(EXECUTABLE_SUFFIX) $<
  1245. endif
  1246. ifeq ($(NO_PROTOC),true)
  1247. $(GENDIR)/src/proto/grpc/testing/xds/v3/percent.pb.cc: protoc_dep_error
  1248. $(GENDIR)/src/proto/grpc/testing/xds/v3/percent.grpc.pb.cc: protoc_dep_error
  1249. else
  1250. $(GENDIR)/src/proto/grpc/testing/xds/v3/percent.pb.cc: src/proto/grpc/testing/xds/v3/percent.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS)
  1251. $(E) "[PROTOC] Generating protobuf CC file from $<"
  1252. $(Q) mkdir -p `dirname $@`
  1253. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --cpp_out=$(GENDIR) $<
  1254. $(GENDIR)/src/proto/grpc/testing/xds/v3/percent.grpc.pb.cc: src/proto/grpc/testing/xds/v3/percent.proto $(GENDIR)/src/proto/grpc/testing/xds/v3/percent.pb.cc $(PROTOBUF_DEP) $(PROTOC_PLUGINS)
  1255. $(E) "[GRPC] Generating gRPC's protobuf service CC file from $<"
  1256. $(Q) mkdir -p `dirname $@`
  1257. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(PROTOC_PLUGINS_DIR)/grpc_cpp_plugin$(EXECUTABLE_SUFFIX) $<
  1258. endif
  1259. ifeq ($(NO_PROTOC),true)
  1260. $(GENDIR)/src/proto/grpc/testing/xds/v3/range.pb.cc: protoc_dep_error
  1261. $(GENDIR)/src/proto/grpc/testing/xds/v3/range.grpc.pb.cc: protoc_dep_error
  1262. else
  1263. $(GENDIR)/src/proto/grpc/testing/xds/v3/range.pb.cc: src/proto/grpc/testing/xds/v3/range.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS)
  1264. $(E) "[PROTOC] Generating protobuf CC file from $<"
  1265. $(Q) mkdir -p `dirname $@`
  1266. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --cpp_out=$(GENDIR) $<
  1267. $(GENDIR)/src/proto/grpc/testing/xds/v3/range.grpc.pb.cc: src/proto/grpc/testing/xds/v3/range.proto $(GENDIR)/src/proto/grpc/testing/xds/v3/range.pb.cc $(PROTOBUF_DEP) $(PROTOC_PLUGINS)
  1268. $(E) "[GRPC] Generating gRPC's protobuf service CC file from $<"
  1269. $(Q) mkdir -p `dirname $@`
  1270. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(PROTOC_PLUGINS_DIR)/grpc_cpp_plugin$(EXECUTABLE_SUFFIX) $<
  1271. endif
  1272. ifeq ($(NO_PROTOC),true)
  1273. $(GENDIR)/src/proto/grpc/testing/xds/v3/regex.pb.cc: protoc_dep_error
  1274. $(GENDIR)/src/proto/grpc/testing/xds/v3/regex.grpc.pb.cc: protoc_dep_error
  1275. else
  1276. $(GENDIR)/src/proto/grpc/testing/xds/v3/regex.pb.cc: src/proto/grpc/testing/xds/v3/regex.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS)
  1277. $(E) "[PROTOC] Generating protobuf CC file from $<"
  1278. $(Q) mkdir -p `dirname $@`
  1279. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --cpp_out=$(GENDIR) $<
  1280. $(GENDIR)/src/proto/grpc/testing/xds/v3/regex.grpc.pb.cc: src/proto/grpc/testing/xds/v3/regex.proto $(GENDIR)/src/proto/grpc/testing/xds/v3/regex.pb.cc $(PROTOBUF_DEP) $(PROTOC_PLUGINS)
  1281. $(E) "[GRPC] Generating gRPC's protobuf service CC file from $<"
  1282. $(Q) mkdir -p `dirname $@`
  1283. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(PROTOC_PLUGINS_DIR)/grpc_cpp_plugin$(EXECUTABLE_SUFFIX) $<
  1284. endif
  1285. ifeq ($(NO_PROTOC),true)
  1286. $(GENDIR)/src/proto/grpc/testing/xds/v3/route.pb.cc: protoc_dep_error
  1287. $(GENDIR)/src/proto/grpc/testing/xds/v3/route.grpc.pb.cc: protoc_dep_error
  1288. else
  1289. $(GENDIR)/src/proto/grpc/testing/xds/v3/route.pb.cc: src/proto/grpc/testing/xds/v3/route.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS) $(GENDIR)/src/proto/grpc/testing/xds/v3/base.pb.cc $(GENDIR)/src/proto/grpc/testing/xds/v3/regex.pb.cc $(GENDIR)/src/proto/grpc/testing/xds/v3/percent.pb.cc $(GENDIR)/src/proto/grpc/testing/xds/v3/range.pb.cc
  1290. $(E) "[PROTOC] Generating protobuf CC file from $<"
  1291. $(Q) mkdir -p `dirname $@`
  1292. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --cpp_out=$(GENDIR) $<
  1293. $(GENDIR)/src/proto/grpc/testing/xds/v3/route.grpc.pb.cc: src/proto/grpc/testing/xds/v3/route.proto $(GENDIR)/src/proto/grpc/testing/xds/v3/route.pb.cc $(PROTOBUF_DEP) $(PROTOC_PLUGINS) $(GENDIR)/src/proto/grpc/testing/xds/v3/base.pb.cc $(GENDIR)/src/proto/grpc/testing/xds/v3/base.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/xds/v3/regex.pb.cc $(GENDIR)/src/proto/grpc/testing/xds/v3/regex.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/xds/v3/percent.pb.cc $(GENDIR)/src/proto/grpc/testing/xds/v3/percent.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/xds/v3/range.pb.cc $(GENDIR)/src/proto/grpc/testing/xds/v3/range.grpc.pb.cc
  1294. $(E) "[GRPC] Generating gRPC's protobuf service CC file from $<"
  1295. $(Q) mkdir -p `dirname $@`
  1296. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(PROTOC_PLUGINS_DIR)/grpc_cpp_plugin$(EXECUTABLE_SUFFIX) $<
  1297. endif
  1298. ifeq ($(NO_PROTOC),true)
  1299. $(GENDIR)/test/core/tsi/alts/fake_handshaker/handshaker.pb.cc: protoc_dep_error
  1300. $(GENDIR)/test/core/tsi/alts/fake_handshaker/handshaker.grpc.pb.cc: protoc_dep_error
  1301. else
  1302. $(GENDIR)/test/core/tsi/alts/fake_handshaker/handshaker.pb.cc: test/core/tsi/alts/fake_handshaker/handshaker.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS)
  1303. $(E) "[PROTOC] Generating protobuf CC file from $<"
  1304. $(Q) mkdir -p `dirname $@`
  1305. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --cpp_out=$(GENDIR) $<
  1306. $(GENDIR)/test/core/tsi/alts/fake_handshaker/handshaker.grpc.pb.cc: test/core/tsi/alts/fake_handshaker/handshaker.proto $(GENDIR)/test/core/tsi/alts/fake_handshaker/handshaker.pb.cc $(PROTOBUF_DEP) $(PROTOC_PLUGINS)
  1307. $(E) "[GRPC] Generating gRPC's protobuf service CC file from $<"
  1308. $(Q) mkdir -p `dirname $@`
  1309. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(PROTOC_PLUGINS_DIR)/grpc_cpp_plugin$(EXECUTABLE_SUFFIX) $<
  1310. endif
  1311. ifeq ($(NO_PROTOC),true)
  1312. $(GENDIR)/test/core/tsi/alts/fake_handshaker/transport_security_common.pb.cc: protoc_dep_error
  1313. $(GENDIR)/test/core/tsi/alts/fake_handshaker/transport_security_common.grpc.pb.cc: protoc_dep_error
  1314. else
  1315. $(GENDIR)/test/core/tsi/alts/fake_handshaker/transport_security_common.pb.cc: test/core/tsi/alts/fake_handshaker/transport_security_common.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS)
  1316. $(E) "[PROTOC] Generating protobuf CC file from $<"
  1317. $(Q) mkdir -p `dirname $@`
  1318. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --cpp_out=$(GENDIR) $<
  1319. $(GENDIR)/test/core/tsi/alts/fake_handshaker/transport_security_common.grpc.pb.cc: test/core/tsi/alts/fake_handshaker/transport_security_common.proto $(GENDIR)/test/core/tsi/alts/fake_handshaker/transport_security_common.pb.cc $(PROTOBUF_DEP) $(PROTOC_PLUGINS)
  1320. $(E) "[GRPC] Generating gRPC's protobuf service CC file from $<"
  1321. $(Q) mkdir -p `dirname $@`
  1322. $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(PROTOC_PLUGINS_DIR)/grpc_cpp_plugin$(EXECUTABLE_SUFFIX) $<
  1323. endif
  1324. ifeq ($(CONFIG),stapprof)
  1325. src/core/profiling/stap_timers.c: $(GENDIR)/src/core/profiling/stap_probes.h
  1326. ifeq ($(HAS_SYSTEMTAP),true)
  1327. $(GENDIR)/src/core/profiling/stap_probes.h: src/core/profiling/stap_probes.d
  1328. $(E) "[DTRACE] Compiling $<"
  1329. $(Q) mkdir -p `dirname $@`
  1330. $(Q) $(DTRACE) -C -h -s $< -o $@
  1331. else
  1332. $(GENDIR)/src/core/profiling/stap_probes.h: systemtap_dep_error stop
  1333. endif
  1334. endif
  1335. $(OBJDIR)/$(CONFIG)/%.o : %.c
  1336. $(E) "[C] Compiling $<"
  1337. $(Q) mkdir -p `dirname $@`
  1338. $(Q) $(CC) $(CPPFLAGS) $(CFLAGS) -MMD -MF $(addsuffix .dep, $(basename $@)) -c -o $@ $<
  1339. $(OBJDIR)/$(CONFIG)/%.o : $(GENDIR)/%.pb.cc
  1340. $(E) "[CXX] Compiling $<"
  1341. $(Q) mkdir -p `dirname $@`
  1342. $(Q) $(CXX) $(CPPFLAGS) $(CXXFLAGS) -MMD -MF $(addsuffix .dep, $(basename $@)) -c -o $@ $<
  1343. $(OBJDIR)/$(CONFIG)/src/compiler/%.o : src/compiler/%.cc
  1344. $(E) "[HOSTCXX] Compiling $<"
  1345. $(Q) mkdir -p `dirname $@`
  1346. $(Q) $(HOST_CXX) $(HOST_CXXFLAGS) $(HOST_CPPFLAGS) -MMD -MF $(addsuffix .dep, $(basename $@)) -c -o $@ $<
  1347. $(OBJDIR)/$(CONFIG)/src/core/%.o : src/core/%.cc
  1348. $(E) "[CXX] Compiling $<"
  1349. $(Q) mkdir -p `dirname $@`
  1350. $(Q) $(CXX) $(CPPFLAGS) $(CXXFLAGS) $(COREFLAGS) -MMD -MF $(addsuffix .dep, $(basename $@)) -c -o $@ $<
  1351. $(OBJDIR)/$(CONFIG)/test/core/%.o : test/core/%.cc
  1352. $(E) "[CXX] Compiling $<"
  1353. $(Q) mkdir -p `dirname $@`
  1354. $(Q) $(CXX) $(CPPFLAGS) $(CXXFLAGS) $(COREFLAGS) -MMD -MF $(addsuffix .dep, $(basename $@)) -c -o $@ $<
  1355. $(OBJDIR)/$(CONFIG)/%.o : %.cc
  1356. $(E) "[CXX] Compiling $<"
  1357. $(Q) mkdir -p `dirname $@`
  1358. $(Q) $(CXX) $(CPPFLAGS) $(CXXFLAGS) -MMD -MF $(addsuffix .dep, $(basename $@)) -c -o $@ $<
  1359. $(OBJDIR)/$(CONFIG)/%.o : %.cpp
  1360. $(E) "[CXX] Compiling $<"
  1361. $(Q) mkdir -p `dirname $@`
  1362. $(Q) $(CXX) $(CPPFLAGS) $(CXXFLAGS) -MMD -MF $(addsuffix .dep, $(basename $@)) -c -o $@ $<
  1363. install: install_not_supported_error
  1364. install_c: install_not_supported_error
  1365. install_cxx: install_not_supported_error
  1366. install_csharp: install_not_supported_error
  1367. install-static: install_not_supported_error
  1368. install-certs: install_not_supported_error
  1369. clean:
  1370. $(E) "[CLEAN] Cleaning build directories."
  1371. $(Q) $(RM) -rf $(OBJDIR) $(LIBDIR) $(BINDIR) $(GENDIR) cache.mk
  1372. # The various libraries
  1373. # start of build recipe for library "address_sorting" (generated by makelib(lib) template function)
  1374. LIBADDRESS_SORTING_SRC = \
  1375. third_party/address_sorting/address_sorting.c \
  1376. third_party/address_sorting/address_sorting_posix.c \
  1377. third_party/address_sorting/address_sorting_windows.c \
  1378. PUBLIC_HEADERS_C += \
  1379. LIBADDRESS_SORTING_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBADDRESS_SORTING_SRC))))
  1380. $(LIBDIR)/$(CONFIG)/libaddress_sorting.a: $(LIBADDRESS_SORTING_OBJS)
  1381. $(E) "[AR] Creating $@"
  1382. $(Q) mkdir -p `dirname $@`
  1383. $(Q) rm -f $(LIBDIR)/$(CONFIG)/libaddress_sorting.a
  1384. $(Q) $(AR) $(ARFLAGS) $(LIBDIR)/$(CONFIG)/libaddress_sorting.a $(LIBADDRESS_SORTING_OBJS)
  1385. ifeq ($(SYSTEM),Darwin)
  1386. $(Q) ranlib -no_warning_for_no_symbols $(LIBDIR)/$(CONFIG)/libaddress_sorting.a
  1387. endif
  1388. ifeq ($(SYSTEM),MINGW32)
  1389. $(LIBDIR)/$(CONFIG)/address_sorting$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE): $(LIBADDRESS_SORTING_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP)
  1390. $(E) "[LD] Linking $@"
  1391. $(Q) mkdir -p `dirname $@`
  1392. $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,--output-def=$(LIBDIR)/$(CONFIG)/address_sorting$(SHARED_VERSION_CORE).def -Wl,--out-implib=$(LIBDIR)/$(CONFIG)/libaddress_sorting$(SHARED_VERSION_CORE)-dll.a -o $(LIBDIR)/$(CONFIG)/address_sorting$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBADDRESS_SORTING_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBS)
  1393. else
  1394. $(LIBDIR)/$(CONFIG)/libaddress_sorting$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE): $(LIBADDRESS_SORTING_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP)
  1395. $(E) "[LD] Linking $@"
  1396. $(Q) mkdir -p `dirname $@`
  1397. ifeq ($(SYSTEM),Darwin)
  1398. $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -install_name $(SHARED_PREFIX)address_sorting$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) -dynamiclib -o $(LIBDIR)/$(CONFIG)/libaddress_sorting$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBADDRESS_SORTING_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBS)
  1399. else
  1400. $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,-soname,libaddress_sorting.so.12 -o $(LIBDIR)/$(CONFIG)/libaddress_sorting$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBADDRESS_SORTING_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBS)
  1401. $(Q) ln -sf $(SHARED_PREFIX)address_sorting$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libaddress_sorting$(SHARED_VERSION_CORE).so.12
  1402. $(Q) ln -sf $(SHARED_PREFIX)address_sorting$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libaddress_sorting$(SHARED_VERSION_CORE).so
  1403. endif
  1404. endif
  1405. ifneq ($(NO_DEPS),true)
  1406. -include $(LIBADDRESS_SORTING_OBJS:.o=.dep)
  1407. endif
  1408. # end of build recipe for library "address_sorting"
  1409. # start of build recipe for library "gpr" (generated by makelib(lib) template function)
  1410. LIBGPR_SRC = \
  1411. src/core/lib/gpr/alloc.cc \
  1412. src/core/lib/gpr/atm.cc \
  1413. src/core/lib/gpr/cpu_iphone.cc \
  1414. src/core/lib/gpr/cpu_linux.cc \
  1415. src/core/lib/gpr/cpu_posix.cc \
  1416. src/core/lib/gpr/cpu_windows.cc \
  1417. src/core/lib/gpr/env_linux.cc \
  1418. src/core/lib/gpr/env_posix.cc \
  1419. src/core/lib/gpr/env_windows.cc \
  1420. src/core/lib/gpr/log.cc \
  1421. src/core/lib/gpr/log_android.cc \
  1422. src/core/lib/gpr/log_linux.cc \
  1423. src/core/lib/gpr/log_posix.cc \
  1424. src/core/lib/gpr/log_windows.cc \
  1425. src/core/lib/gpr/murmur_hash.cc \
  1426. src/core/lib/gpr/string.cc \
  1427. src/core/lib/gpr/string_posix.cc \
  1428. src/core/lib/gpr/string_util_windows.cc \
  1429. src/core/lib/gpr/string_windows.cc \
  1430. src/core/lib/gpr/sync.cc \
  1431. src/core/lib/gpr/sync_abseil.cc \
  1432. src/core/lib/gpr/sync_posix.cc \
  1433. src/core/lib/gpr/sync_windows.cc \
  1434. src/core/lib/gpr/time.cc \
  1435. src/core/lib/gpr/time_posix.cc \
  1436. src/core/lib/gpr/time_precise.cc \
  1437. src/core/lib/gpr/time_windows.cc \
  1438. src/core/lib/gpr/tls_pthread.cc \
  1439. src/core/lib/gpr/tmpfile_msys.cc \
  1440. src/core/lib/gpr/tmpfile_posix.cc \
  1441. src/core/lib/gpr/tmpfile_windows.cc \
  1442. src/core/lib/gpr/wrap_memcpy.cc \
  1443. src/core/lib/gprpp/arena.cc \
  1444. src/core/lib/gprpp/fork.cc \
  1445. src/core/lib/gprpp/global_config_env.cc \
  1446. src/core/lib/gprpp/host_port.cc \
  1447. src/core/lib/gprpp/mpscq.cc \
  1448. src/core/lib/gprpp/thd_posix.cc \
  1449. src/core/lib/gprpp/thd_windows.cc \
  1450. src/core/lib/profiling/basic_timers.cc \
  1451. src/core/lib/profiling/stap_timers.cc \
  1452. PUBLIC_HEADERS_C += \
  1453. include/grpc/impl/codegen/atm.h \
  1454. include/grpc/impl/codegen/atm_gcc_atomic.h \
  1455. include/grpc/impl/codegen/atm_gcc_sync.h \
  1456. include/grpc/impl/codegen/atm_windows.h \
  1457. include/grpc/impl/codegen/byte_buffer.h \
  1458. include/grpc/impl/codegen/byte_buffer_reader.h \
  1459. include/grpc/impl/codegen/compression_types.h \
  1460. include/grpc/impl/codegen/connectivity_state.h \
  1461. include/grpc/impl/codegen/fork.h \
  1462. include/grpc/impl/codegen/gpr_slice.h \
  1463. include/grpc/impl/codegen/gpr_types.h \
  1464. include/grpc/impl/codegen/grpc_types.h \
  1465. include/grpc/impl/codegen/log.h \
  1466. include/grpc/impl/codegen/port_platform.h \
  1467. include/grpc/impl/codegen/propagation_bits.h \
  1468. include/grpc/impl/codegen/slice.h \
  1469. include/grpc/impl/codegen/status.h \
  1470. include/grpc/impl/codegen/sync.h \
  1471. include/grpc/impl/codegen/sync_abseil.h \
  1472. include/grpc/impl/codegen/sync_custom.h \
  1473. include/grpc/impl/codegen/sync_generic.h \
  1474. include/grpc/impl/codegen/sync_posix.h \
  1475. include/grpc/impl/codegen/sync_windows.h \
  1476. include/grpc/support/alloc.h \
  1477. include/grpc/support/atm.h \
  1478. include/grpc/support/atm_gcc_atomic.h \
  1479. include/grpc/support/atm_gcc_sync.h \
  1480. include/grpc/support/atm_windows.h \
  1481. include/grpc/support/cpu.h \
  1482. include/grpc/support/log.h \
  1483. include/grpc/support/log_windows.h \
  1484. include/grpc/support/port_platform.h \
  1485. include/grpc/support/string_util.h \
  1486. include/grpc/support/sync.h \
  1487. include/grpc/support/sync_abseil.h \
  1488. include/grpc/support/sync_custom.h \
  1489. include/grpc/support/sync_generic.h \
  1490. include/grpc/support/sync_posix.h \
  1491. include/grpc/support/sync_windows.h \
  1492. include/grpc/support/thd_id.h \
  1493. include/grpc/support/time.h \
  1494. LIBGPR_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBGPR_SRC))))
  1495. $(LIBDIR)/$(CONFIG)/libgpr.a: $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(LIBGPR_OBJS)
  1496. $(E) "[AR] Creating $@"
  1497. $(Q) mkdir -p `dirname $@`
  1498. $(Q) rm -f $(LIBDIR)/$(CONFIG)/libgpr.a
  1499. $(Q) $(AR) $(ARFLAGS) $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBGPR_OBJS)
  1500. ifeq ($(SYSTEM),Darwin)
  1501. $(Q) ranlib -no_warning_for_no_symbols $(LIBDIR)/$(CONFIG)/libgpr.a
  1502. endif
  1503. ifeq ($(SYSTEM),MINGW32)
  1504. $(LIBDIR)/$(CONFIG)/gpr$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE): $(LIBGPR_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP)
  1505. $(E) "[LD] Linking $@"
  1506. $(Q) mkdir -p `dirname $@`
  1507. $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,--output-def=$(LIBDIR)/$(CONFIG)/gpr$(SHARED_VERSION_CORE).def -Wl,--out-implib=$(LIBDIR)/$(CONFIG)/libgpr$(SHARED_VERSION_CORE)-dll.a -o $(LIBDIR)/$(CONFIG)/gpr$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBGPR_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBS)
  1508. else
  1509. $(LIBDIR)/$(CONFIG)/libgpr$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE): $(LIBGPR_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP)
  1510. $(E) "[LD] Linking $@"
  1511. $(Q) mkdir -p `dirname $@`
  1512. ifeq ($(SYSTEM),Darwin)
  1513. $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -install_name $(SHARED_PREFIX)gpr$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) -dynamiclib -o $(LIBDIR)/$(CONFIG)/libgpr$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBGPR_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBS)
  1514. else
  1515. $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,-soname,libgpr.so.12 -o $(LIBDIR)/$(CONFIG)/libgpr$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBGPR_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBS)
  1516. $(Q) ln -sf $(SHARED_PREFIX)gpr$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libgpr$(SHARED_VERSION_CORE).so.12
  1517. $(Q) ln -sf $(SHARED_PREFIX)gpr$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libgpr$(SHARED_VERSION_CORE).so
  1518. endif
  1519. endif
  1520. ifneq ($(NO_DEPS),true)
  1521. -include $(LIBGPR_OBJS:.o=.dep)
  1522. endif
  1523. # end of build recipe for library "gpr"
  1524. # start of build recipe for library "grpc" (generated by makelib(lib) template function)
  1525. LIBGRPC_SRC = \
  1526. src/core/ext/filters/census/grpc_context.cc \
  1527. src/core/ext/filters/client_channel/backend_metric.cc \
  1528. src/core/ext/filters/client_channel/backup_poller.cc \
  1529. src/core/ext/filters/client_channel/channel_connectivity.cc \
  1530. src/core/ext/filters/client_channel/client_channel.cc \
  1531. src/core/ext/filters/client_channel/client_channel_channelz.cc \
  1532. src/core/ext/filters/client_channel/client_channel_factory.cc \
  1533. src/core/ext/filters/client_channel/client_channel_plugin.cc \
  1534. src/core/ext/filters/client_channel/config_selector.cc \
  1535. src/core/ext/filters/client_channel/global_subchannel_pool.cc \
  1536. src/core/ext/filters/client_channel/health/health_check_client.cc \
  1537. src/core/ext/filters/client_channel/http_connect_handshaker.cc \
  1538. src/core/ext/filters/client_channel/http_proxy.cc \
  1539. src/core/ext/filters/client_channel/lb_policy.cc \
  1540. src/core/ext/filters/client_channel/lb_policy/address_filtering.cc \
  1541. src/core/ext/filters/client_channel/lb_policy/child_policy_handler.cc \
  1542. src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.cc \
  1543. src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc \
  1544. src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.cc \
  1545. src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel_secure.cc \
  1546. src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.cc \
  1547. src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.cc \
  1548. src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc \
  1549. src/core/ext/filters/client_channel/lb_policy/priority/priority.cc \
  1550. src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc \
  1551. src/core/ext/filters/client_channel/lb_policy/weighted_target/weighted_target.cc \
  1552. src/core/ext/filters/client_channel/lb_policy/xds/cds.cc \
  1553. src/core/ext/filters/client_channel/lb_policy/xds/eds.cc \
  1554. src/core/ext/filters/client_channel/lb_policy/xds/eds_drop.cc \
  1555. src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_manager.cc \
  1556. src/core/ext/filters/client_channel/lb_policy_registry.cc \
  1557. src/core/ext/filters/client_channel/local_subchannel_pool.cc \
  1558. src/core/ext/filters/client_channel/proxy_mapper_registry.cc \
  1559. src/core/ext/filters/client_channel/resolver.cc \
  1560. src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc \
  1561. src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.cc \
  1562. src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_libuv.cc \
  1563. src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc \
  1564. src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc \
  1565. src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc \
  1566. src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_fallback.cc \
  1567. src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_libuv.cc \
  1568. src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_posix.cc \
  1569. src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_windows.cc \
  1570. src/core/ext/filters/client_channel/resolver/dns/dns_resolver_selection.cc \
  1571. src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc \
  1572. src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc \
  1573. src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc \
  1574. src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc \
  1575. src/core/ext/filters/client_channel/resolver_registry.cc \
  1576. src/core/ext/filters/client_channel/resolver_result_parsing.cc \
  1577. src/core/ext/filters/client_channel/resolving_lb_policy.cc \
  1578. src/core/ext/filters/client_channel/retry_throttle.cc \
  1579. src/core/ext/filters/client_channel/server_address.cc \
  1580. src/core/ext/filters/client_channel/service_config.cc \
  1581. src/core/ext/filters/client_channel/service_config_channel_arg_filter.cc \
  1582. src/core/ext/filters/client_channel/service_config_parser.cc \
  1583. src/core/ext/filters/client_channel/subchannel.cc \
  1584. src/core/ext/filters/client_channel/subchannel_pool_interface.cc \
  1585. src/core/ext/filters/client_idle/client_idle_filter.cc \
  1586. src/core/ext/filters/deadline/deadline_filter.cc \
  1587. src/core/ext/filters/http/client/http_client_filter.cc \
  1588. src/core/ext/filters/http/client_authority_filter.cc \
  1589. src/core/ext/filters/http/http_filters_plugin.cc \
  1590. src/core/ext/filters/http/message_compress/message_compress_filter.cc \
  1591. src/core/ext/filters/http/message_compress/message_decompress_filter.cc \
  1592. src/core/ext/filters/http/server/http_server_filter.cc \
  1593. src/core/ext/filters/max_age/max_age_filter.cc \
  1594. src/core/ext/filters/message_size/message_size_filter.cc \
  1595. src/core/ext/filters/workarounds/workaround_cronet_compression_filter.cc \
  1596. src/core/ext/filters/workarounds/workaround_utils.cc \
  1597. src/core/ext/transport/chttp2/alpn/alpn.cc \
  1598. src/core/ext/transport/chttp2/client/authority.cc \
  1599. src/core/ext/transport/chttp2/client/chttp2_connector.cc \
  1600. src/core/ext/transport/chttp2/client/insecure/channel_create.cc \
  1601. src/core/ext/transport/chttp2/client/insecure/channel_create_posix.cc \
  1602. src/core/ext/transport/chttp2/client/secure/secure_channel_create.cc \
  1603. src/core/ext/transport/chttp2/server/chttp2_server.cc \
  1604. src/core/ext/transport/chttp2/server/insecure/server_chttp2.cc \
  1605. src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.cc \
  1606. src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.cc \
  1607. src/core/ext/transport/chttp2/transport/bin_decoder.cc \
  1608. src/core/ext/transport/chttp2/transport/bin_encoder.cc \
  1609. src/core/ext/transport/chttp2/transport/chttp2_plugin.cc \
  1610. src/core/ext/transport/chttp2/transport/chttp2_transport.cc \
  1611. src/core/ext/transport/chttp2/transport/context_list.cc \
  1612. src/core/ext/transport/chttp2/transport/flow_control.cc \
  1613. src/core/ext/transport/chttp2/transport/frame_data.cc \
  1614. src/core/ext/transport/chttp2/transport/frame_goaway.cc \
  1615. src/core/ext/transport/chttp2/transport/frame_ping.cc \
  1616. src/core/ext/transport/chttp2/transport/frame_rst_stream.cc \
  1617. src/core/ext/transport/chttp2/transport/frame_settings.cc \
  1618. src/core/ext/transport/chttp2/transport/frame_window_update.cc \
  1619. src/core/ext/transport/chttp2/transport/hpack_encoder.cc \
  1620. src/core/ext/transport/chttp2/transport/hpack_parser.cc \
  1621. src/core/ext/transport/chttp2/transport/hpack_table.cc \
  1622. src/core/ext/transport/chttp2/transport/http2_settings.cc \
  1623. src/core/ext/transport/chttp2/transport/huffsyms.cc \
  1624. src/core/ext/transport/chttp2/transport/incoming_metadata.cc \
  1625. src/core/ext/transport/chttp2/transport/parsing.cc \
  1626. src/core/ext/transport/chttp2/transport/stream_lists.cc \
  1627. src/core/ext/transport/chttp2/transport/stream_map.cc \
  1628. src/core/ext/transport/chttp2/transport/varint.cc \
  1629. src/core/ext/transport/chttp2/transport/writing.cc \
  1630. src/core/ext/transport/inproc/inproc_plugin.cc \
  1631. src/core/ext/transport/inproc/inproc_transport.cc \
  1632. src/core/ext/upb-generated/envoy/annotations/deprecation.upb.c \
  1633. src/core/ext/upb-generated/envoy/annotations/resource.upb.c \
  1634. src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.c \
  1635. src/core/ext/upb-generated/envoy/config/cluster/v3/circuit_breaker.upb.c \
  1636. src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.c \
  1637. src/core/ext/upb-generated/envoy/config/cluster/v3/filter.upb.c \
  1638. src/core/ext/upb-generated/envoy/config/cluster/v3/outlier_detection.upb.c \
  1639. src/core/ext/upb-generated/envoy/config/core/v3/address.upb.c \
  1640. src/core/ext/upb-generated/envoy/config/core/v3/backoff.upb.c \
  1641. src/core/ext/upb-generated/envoy/config/core/v3/base.upb.c \
  1642. src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.c \
  1643. src/core/ext/upb-generated/envoy/config/core/v3/event_service_config.upb.c \
  1644. src/core/ext/upb-generated/envoy/config/core/v3/extension.upb.c \
  1645. src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.c \
  1646. src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.c \
  1647. src/core/ext/upb-generated/envoy/config/core/v3/http_uri.upb.c \
  1648. src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.c \
  1649. src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.c \
  1650. src/core/ext/upb-generated/envoy/config/core/v3/socket_option.upb.c \
  1651. src/core/ext/upb-generated/envoy/config/core/v3/substitution_format_string.upb.c \
  1652. src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint.upb.c \
  1653. src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint_components.upb.c \
  1654. src/core/ext/upb-generated/envoy/config/endpoint/v3/load_report.upb.c \
  1655. src/core/ext/upb-generated/envoy/config/listener/v3/api_listener.upb.c \
  1656. src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.c \
  1657. src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.c \
  1658. src/core/ext/upb-generated/envoy/config/listener/v3/udp_listener_config.upb.c \
  1659. src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.c \
  1660. src/core/ext/upb-generated/envoy/config/route/v3/route.upb.c \
  1661. src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.c \
  1662. src/core/ext/upb-generated/envoy/config/route/v3/scoped_route.upb.c \
  1663. src/core/ext/upb-generated/envoy/config/trace/v3/http_tracer.upb.c \
  1664. src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.c \
  1665. src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/cert.upb.c \
  1666. src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.c \
  1667. src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.c \
  1668. src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls.upb.c \
  1669. src/core/ext/upb-generated/envoy/service/cluster/v3/cds.upb.c \
  1670. src/core/ext/upb-generated/envoy/service/discovery/v3/ads.upb.c \
  1671. src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.c \
  1672. src/core/ext/upb-generated/envoy/service/endpoint/v3/eds.upb.c \
  1673. src/core/ext/upb-generated/envoy/service/listener/v3/lds.upb.c \
  1674. src/core/ext/upb-generated/envoy/service/load_stats/v3/lrs.upb.c \
  1675. src/core/ext/upb-generated/envoy/service/route/v3/rds.upb.c \
  1676. src/core/ext/upb-generated/envoy/service/route/v3/srds.upb.c \
  1677. src/core/ext/upb-generated/envoy/type/matcher/v3/metadata.upb.c \
  1678. src/core/ext/upb-generated/envoy/type/matcher/v3/number.upb.c \
  1679. src/core/ext/upb-generated/envoy/type/matcher/v3/path.upb.c \
  1680. src/core/ext/upb-generated/envoy/type/matcher/v3/regex.upb.c \
  1681. src/core/ext/upb-generated/envoy/type/matcher/v3/string.upb.c \
  1682. src/core/ext/upb-generated/envoy/type/matcher/v3/value.upb.c \
  1683. src/core/ext/upb-generated/envoy/type/metadata/v3/metadata.upb.c \
  1684. src/core/ext/upb-generated/envoy/type/tracing/v3/custom_tag.upb.c \
  1685. src/core/ext/upb-generated/envoy/type/v3/http.upb.c \
  1686. src/core/ext/upb-generated/envoy/type/v3/percent.upb.c \
  1687. src/core/ext/upb-generated/envoy/type/v3/range.upb.c \
  1688. src/core/ext/upb-generated/envoy/type/v3/semantic_version.upb.c \
  1689. src/core/ext/upb-generated/google/api/annotations.upb.c \
  1690. src/core/ext/upb-generated/google/api/expr/v1alpha1/checked.upb.c \
  1691. src/core/ext/upb-generated/google/api/expr/v1alpha1/syntax.upb.c \
  1692. src/core/ext/upb-generated/google/api/http.upb.c \
  1693. src/core/ext/upb-generated/google/protobuf/any.upb.c \
  1694. src/core/ext/upb-generated/google/protobuf/descriptor.upb.c \
  1695. src/core/ext/upb-generated/google/protobuf/duration.upb.c \
  1696. src/core/ext/upb-generated/google/protobuf/empty.upb.c \
  1697. src/core/ext/upb-generated/google/protobuf/struct.upb.c \
  1698. src/core/ext/upb-generated/google/protobuf/timestamp.upb.c \
  1699. src/core/ext/upb-generated/google/protobuf/wrappers.upb.c \
  1700. src/core/ext/upb-generated/google/rpc/status.upb.c \
  1701. src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.c \
  1702. src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.c \
  1703. src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.c \
  1704. src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.c \
  1705. src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.c \
  1706. src/core/ext/upb-generated/udpa/annotations/migrate.upb.c \
  1707. src/core/ext/upb-generated/udpa/annotations/security.upb.c \
  1708. src/core/ext/upb-generated/udpa/annotations/sensitive.upb.c \
  1709. src/core/ext/upb-generated/udpa/annotations/status.upb.c \
  1710. src/core/ext/upb-generated/udpa/annotations/versioning.upb.c \
  1711. src/core/ext/upb-generated/udpa/core/v1/authority.upb.c \
  1712. src/core/ext/upb-generated/udpa/core/v1/collection_entry.upb.c \
  1713. src/core/ext/upb-generated/udpa/core/v1/context_params.upb.c \
  1714. src/core/ext/upb-generated/udpa/core/v1/resource.upb.c \
  1715. src/core/ext/upb-generated/udpa/core/v1/resource_locator.upb.c \
  1716. src/core/ext/upb-generated/udpa/core/v1/resource_name.upb.c \
  1717. src/core/ext/upb-generated/udpa/data/orca/v1/orca_load_report.upb.c \
  1718. src/core/ext/upb-generated/validate/validate.upb.c \
  1719. src/core/ext/xds/certificate_provider_registry.cc \
  1720. src/core/ext/xds/google_mesh_ca_certificate_provider_factory.cc \
  1721. src/core/ext/xds/xds_api.cc \
  1722. src/core/ext/xds/xds_bootstrap.cc \
  1723. src/core/ext/xds/xds_client.cc \
  1724. src/core/ext/xds/xds_client_stats.cc \
  1725. src/core/lib/avl/avl.cc \
  1726. src/core/lib/backoff/backoff.cc \
  1727. src/core/lib/channel/channel_args.cc \
  1728. src/core/lib/channel/channel_stack.cc \
  1729. src/core/lib/channel/channel_stack_builder.cc \
  1730. src/core/lib/channel/channel_trace.cc \
  1731. src/core/lib/channel/channelz.cc \
  1732. src/core/lib/channel/channelz_registry.cc \
  1733. src/core/lib/channel/connected_channel.cc \
  1734. src/core/lib/channel/handshaker.cc \
  1735. src/core/lib/channel/handshaker_registry.cc \
  1736. src/core/lib/channel/status_util.cc \
  1737. src/core/lib/compression/compression.cc \
  1738. src/core/lib/compression/compression_args.cc \
  1739. src/core/lib/compression/compression_internal.cc \
  1740. src/core/lib/compression/message_compress.cc \
  1741. src/core/lib/compression/stream_compression.cc \
  1742. src/core/lib/compression/stream_compression_gzip.cc \
  1743. src/core/lib/compression/stream_compression_identity.cc \
  1744. src/core/lib/debug/stats.cc \
  1745. src/core/lib/debug/stats_data.cc \
  1746. src/core/lib/debug/trace.cc \
  1747. src/core/lib/http/format_request.cc \
  1748. src/core/lib/http/httpcli.cc \
  1749. src/core/lib/http/httpcli_security_connector.cc \
  1750. src/core/lib/http/parser.cc \
  1751. src/core/lib/iomgr/buffer_list.cc \
  1752. src/core/lib/iomgr/call_combiner.cc \
  1753. src/core/lib/iomgr/cfstream_handle.cc \
  1754. src/core/lib/iomgr/combiner.cc \
  1755. src/core/lib/iomgr/dualstack_socket_posix.cc \
  1756. src/core/lib/iomgr/endpoint.cc \
  1757. src/core/lib/iomgr/endpoint_cfstream.cc \
  1758. src/core/lib/iomgr/endpoint_pair_posix.cc \
  1759. src/core/lib/iomgr/endpoint_pair_uv.cc \
  1760. src/core/lib/iomgr/endpoint_pair_windows.cc \
  1761. src/core/lib/iomgr/error.cc \
  1762. src/core/lib/iomgr/error_cfstream.cc \
  1763. src/core/lib/iomgr/ev_apple.cc \
  1764. src/core/lib/iomgr/ev_epoll1_linux.cc \
  1765. src/core/lib/iomgr/ev_epollex_linux.cc \
  1766. src/core/lib/iomgr/ev_poll_posix.cc \
  1767. src/core/lib/iomgr/ev_posix.cc \
  1768. src/core/lib/iomgr/ev_windows.cc \
  1769. src/core/lib/iomgr/exec_ctx.cc \
  1770. src/core/lib/iomgr/executor.cc \
  1771. src/core/lib/iomgr/executor/mpmcqueue.cc \
  1772. src/core/lib/iomgr/executor/threadpool.cc \
  1773. src/core/lib/iomgr/fork_posix.cc \
  1774. src/core/lib/iomgr/fork_windows.cc \
  1775. src/core/lib/iomgr/gethostname_fallback.cc \
  1776. src/core/lib/iomgr/gethostname_host_name_max.cc \
  1777. src/core/lib/iomgr/gethostname_sysconf.cc \
  1778. src/core/lib/iomgr/grpc_if_nametoindex_posix.cc \
  1779. src/core/lib/iomgr/grpc_if_nametoindex_unsupported.cc \
  1780. src/core/lib/iomgr/internal_errqueue.cc \
  1781. src/core/lib/iomgr/iocp_windows.cc \
  1782. src/core/lib/iomgr/iomgr.cc \
  1783. src/core/lib/iomgr/iomgr_custom.cc \
  1784. src/core/lib/iomgr/iomgr_internal.cc \
  1785. src/core/lib/iomgr/iomgr_posix.cc \
  1786. src/core/lib/iomgr/iomgr_posix_cfstream.cc \
  1787. src/core/lib/iomgr/iomgr_uv.cc \
  1788. src/core/lib/iomgr/iomgr_windows.cc \
  1789. src/core/lib/iomgr/is_epollexclusive_available.cc \
  1790. src/core/lib/iomgr/load_file.cc \
  1791. src/core/lib/iomgr/lockfree_event.cc \
  1792. src/core/lib/iomgr/parse_address.cc \
  1793. src/core/lib/iomgr/poller/eventmanager_libuv.cc \
  1794. src/core/lib/iomgr/polling_entity.cc \
  1795. src/core/lib/iomgr/pollset.cc \
  1796. src/core/lib/iomgr/pollset_custom.cc \
  1797. src/core/lib/iomgr/pollset_set.cc \
  1798. src/core/lib/iomgr/pollset_set_custom.cc \
  1799. src/core/lib/iomgr/pollset_set_windows.cc \
  1800. src/core/lib/iomgr/pollset_uv.cc \
  1801. src/core/lib/iomgr/pollset_windows.cc \
  1802. src/core/lib/iomgr/resolve_address.cc \
  1803. src/core/lib/iomgr/resolve_address_custom.cc \
  1804. src/core/lib/iomgr/resolve_address_posix.cc \
  1805. src/core/lib/iomgr/resolve_address_windows.cc \
  1806. src/core/lib/iomgr/resource_quota.cc \
  1807. src/core/lib/iomgr/sockaddr_utils.cc \
  1808. src/core/lib/iomgr/socket_factory_posix.cc \
  1809. src/core/lib/iomgr/socket_mutator.cc \
  1810. src/core/lib/iomgr/socket_utils_common_posix.cc \
  1811. src/core/lib/iomgr/socket_utils_linux.cc \
  1812. src/core/lib/iomgr/socket_utils_posix.cc \
  1813. src/core/lib/iomgr/socket_utils_uv.cc \
  1814. src/core/lib/iomgr/socket_utils_windows.cc \
  1815. src/core/lib/iomgr/socket_windows.cc \
  1816. src/core/lib/iomgr/tcp_client.cc \
  1817. src/core/lib/iomgr/tcp_client_cfstream.cc \
  1818. src/core/lib/iomgr/tcp_client_custom.cc \
  1819. src/core/lib/iomgr/tcp_client_posix.cc \
  1820. src/core/lib/iomgr/tcp_client_windows.cc \
  1821. src/core/lib/iomgr/tcp_custom.cc \
  1822. src/core/lib/iomgr/tcp_posix.cc \
  1823. src/core/lib/iomgr/tcp_server.cc \
  1824. src/core/lib/iomgr/tcp_server_custom.cc \
  1825. src/core/lib/iomgr/tcp_server_posix.cc \
  1826. src/core/lib/iomgr/tcp_server_utils_posix_common.cc \
  1827. src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc \
  1828. src/core/lib/iomgr/tcp_server_utils_posix_noifaddrs.cc \
  1829. src/core/lib/iomgr/tcp_server_windows.cc \
  1830. src/core/lib/iomgr/tcp_uv.cc \
  1831. src/core/lib/iomgr/tcp_windows.cc \
  1832. src/core/lib/iomgr/time_averaged_stats.cc \
  1833. src/core/lib/iomgr/timer.cc \
  1834. src/core/lib/iomgr/timer_custom.cc \
  1835. src/core/lib/iomgr/timer_generic.cc \
  1836. src/core/lib/iomgr/timer_heap.cc \
  1837. src/core/lib/iomgr/timer_manager.cc \
  1838. src/core/lib/iomgr/timer_uv.cc \
  1839. src/core/lib/iomgr/udp_server.cc \
  1840. src/core/lib/iomgr/unix_sockets_posix.cc \
  1841. src/core/lib/iomgr/unix_sockets_posix_noop.cc \
  1842. src/core/lib/iomgr/wakeup_fd_eventfd.cc \
  1843. src/core/lib/iomgr/wakeup_fd_nospecial.cc \
  1844. src/core/lib/iomgr/wakeup_fd_pipe.cc \
  1845. src/core/lib/iomgr/wakeup_fd_posix.cc \
  1846. src/core/lib/iomgr/work_serializer.cc \
  1847. src/core/lib/json/json_reader.cc \
  1848. src/core/lib/json/json_util.cc \
  1849. src/core/lib/json/json_writer.cc \
  1850. src/core/lib/security/authorization/authorization_engine.cc \
  1851. src/core/lib/security/authorization/evaluate_args.cc \
  1852. src/core/lib/security/context/security_context.cc \
  1853. src/core/lib/security/credentials/alts/alts_credentials.cc \
  1854. src/core/lib/security/credentials/alts/check_gcp_environment.cc \
  1855. src/core/lib/security/credentials/alts/check_gcp_environment_linux.cc \
  1856. src/core/lib/security/credentials/alts/check_gcp_environment_no_op.cc \
  1857. src/core/lib/security/credentials/alts/check_gcp_environment_windows.cc \
  1858. src/core/lib/security/credentials/alts/grpc_alts_credentials_client_options.cc \
  1859. src/core/lib/security/credentials/alts/grpc_alts_credentials_options.cc \
  1860. src/core/lib/security/credentials/alts/grpc_alts_credentials_server_options.cc \
  1861. src/core/lib/security/credentials/composite/composite_credentials.cc \
  1862. src/core/lib/security/credentials/credentials.cc \
  1863. src/core/lib/security/credentials/credentials_metadata.cc \
  1864. src/core/lib/security/credentials/fake/fake_credentials.cc \
  1865. src/core/lib/security/credentials/google_default/credentials_generic.cc \
  1866. src/core/lib/security/credentials/google_default/google_default_credentials.cc \
  1867. src/core/lib/security/credentials/iam/iam_credentials.cc \
  1868. src/core/lib/security/credentials/jwt/json_token.cc \
  1869. src/core/lib/security/credentials/jwt/jwt_credentials.cc \
  1870. src/core/lib/security/credentials/jwt/jwt_verifier.cc \
  1871. src/core/lib/security/credentials/local/local_credentials.cc \
  1872. src/core/lib/security/credentials/oauth2/oauth2_credentials.cc \
  1873. src/core/lib/security/credentials/plugin/plugin_credentials.cc \
  1874. src/core/lib/security/credentials/ssl/ssl_credentials.cc \
  1875. src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.cc \
  1876. src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc \
  1877. src/core/lib/security/credentials/tls/tls_credentials.cc \
  1878. src/core/lib/security/credentials/xds/xds_credentials.cc \
  1879. src/core/lib/security/security_connector/alts/alts_security_connector.cc \
  1880. src/core/lib/security/security_connector/fake/fake_security_connector.cc \
  1881. src/core/lib/security/security_connector/load_system_roots_fallback.cc \
  1882. src/core/lib/security/security_connector/load_system_roots_linux.cc \
  1883. src/core/lib/security/security_connector/local/local_security_connector.cc \
  1884. src/core/lib/security/security_connector/security_connector.cc \
  1885. src/core/lib/security/security_connector/ssl/ssl_security_connector.cc \
  1886. src/core/lib/security/security_connector/ssl_utils.cc \
  1887. src/core/lib/security/security_connector/ssl_utils_config.cc \
  1888. src/core/lib/security/security_connector/tls/tls_security_connector.cc \
  1889. src/core/lib/security/transport/client_auth_filter.cc \
  1890. src/core/lib/security/transport/secure_endpoint.cc \
  1891. src/core/lib/security/transport/security_handshaker.cc \
  1892. src/core/lib/security/transport/server_auth_filter.cc \
  1893. src/core/lib/security/transport/tsi_error.cc \
  1894. src/core/lib/security/util/json_util.cc \
  1895. src/core/lib/slice/b64.cc \
  1896. src/core/lib/slice/percent_encoding.cc \
  1897. src/core/lib/slice/slice.cc \
  1898. src/core/lib/slice/slice_buffer.cc \
  1899. src/core/lib/slice/slice_intern.cc \
  1900. src/core/lib/slice/slice_string_helpers.cc \
  1901. src/core/lib/surface/api_trace.cc \
  1902. src/core/lib/surface/byte_buffer.cc \
  1903. src/core/lib/surface/byte_buffer_reader.cc \
  1904. src/core/lib/surface/call.cc \
  1905. src/core/lib/surface/call_details.cc \
  1906. src/core/lib/surface/call_log_batch.cc \
  1907. src/core/lib/surface/channel.cc \
  1908. src/core/lib/surface/channel_init.cc \
  1909. src/core/lib/surface/channel_ping.cc \
  1910. src/core/lib/surface/channel_stack_type.cc \
  1911. src/core/lib/surface/completion_queue.cc \
  1912. src/core/lib/surface/completion_queue_factory.cc \
  1913. src/core/lib/surface/event_string.cc \
  1914. src/core/lib/surface/init.cc \
  1915. src/core/lib/surface/init_secure.cc \
  1916. src/core/lib/surface/lame_client.cc \
  1917. src/core/lib/surface/metadata_array.cc \
  1918. src/core/lib/surface/server.cc \
  1919. src/core/lib/surface/validate_metadata.cc \
  1920. src/core/lib/surface/version.cc \
  1921. src/core/lib/transport/authority_override.cc \
  1922. src/core/lib/transport/bdp_estimator.cc \
  1923. src/core/lib/transport/byte_stream.cc \
  1924. src/core/lib/transport/connectivity_state.cc \
  1925. src/core/lib/transport/error_utils.cc \
  1926. src/core/lib/transport/metadata.cc \
  1927. src/core/lib/transport/metadata_batch.cc \
  1928. src/core/lib/transport/pid_controller.cc \
  1929. src/core/lib/transport/static_metadata.cc \
  1930. src/core/lib/transport/status_conversion.cc \
  1931. src/core/lib/transport/status_metadata.cc \
  1932. src/core/lib/transport/timeout_encoding.cc \
  1933. src/core/lib/transport/transport.cc \
  1934. src/core/lib/transport/transport_op_string.cc \
  1935. src/core/lib/uri/uri_parser.cc \
  1936. src/core/plugin_registry/grpc_plugin_registry.cc \
  1937. src/core/tsi/alts/crypt/aes_gcm.cc \
  1938. src/core/tsi/alts/crypt/gsec.cc \
  1939. src/core/tsi/alts/frame_protector/alts_counter.cc \
  1940. src/core/tsi/alts/frame_protector/alts_crypter.cc \
  1941. src/core/tsi/alts/frame_protector/alts_frame_protector.cc \
  1942. src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.cc \
  1943. src/core/tsi/alts/frame_protector/alts_seal_privacy_integrity_crypter.cc \
  1944. src/core/tsi/alts/frame_protector/alts_unseal_privacy_integrity_crypter.cc \
  1945. src/core/tsi/alts/frame_protector/frame_handler.cc \
  1946. src/core/tsi/alts/handshaker/alts_handshaker_client.cc \
  1947. src/core/tsi/alts/handshaker/alts_shared_resource.cc \
  1948. src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc \
  1949. src/core/tsi/alts/handshaker/alts_tsi_utils.cc \
  1950. src/core/tsi/alts/handshaker/transport_security_common_api.cc \
  1951. src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.cc \
  1952. src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.cc \
  1953. src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.cc \
  1954. src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.cc \
  1955. src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc \
  1956. src/core/tsi/fake_transport_security.cc \
  1957. src/core/tsi/local_transport_security.cc \
  1958. src/core/tsi/ssl/session_cache/ssl_session_boringssl.cc \
  1959. src/core/tsi/ssl/session_cache/ssl_session_cache.cc \
  1960. src/core/tsi/ssl/session_cache/ssl_session_openssl.cc \
  1961. src/core/tsi/ssl_transport_security.cc \
  1962. src/core/tsi/transport_security.cc \
  1963. src/core/tsi/transport_security_grpc.cc \
  1964. PUBLIC_HEADERS_C += \
  1965. include/grpc/byte_buffer.h \
  1966. include/grpc/byte_buffer_reader.h \
  1967. include/grpc/census.h \
  1968. include/grpc/compression.h \
  1969. include/grpc/fork.h \
  1970. include/grpc/grpc.h \
  1971. include/grpc/grpc_posix.h \
  1972. include/grpc/grpc_security.h \
  1973. include/grpc/grpc_security_constants.h \
  1974. include/grpc/load_reporting.h \
  1975. include/grpc/slice.h \
  1976. include/grpc/slice_buffer.h \
  1977. include/grpc/status.h \
  1978. include/grpc/support/workaround_list.h \
  1979. LIBGRPC_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBGRPC_SRC))))
  1980. ifeq ($(NO_SECURE),true)
  1981. # You can't build secure libraries if you don't have OpenSSL.
  1982. $(LIBDIR)/$(CONFIG)/libgrpc.a: openssl_dep_error
  1983. $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE): openssl_dep_error
  1984. else
  1985. $(LIBDIR)/$(CONFIG)/libgrpc.a: $(ZLIB_DEP) $(OPENSSL_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(LIBGRPC_OBJS) $(LIBGPR_OBJS) $(LIBGRPC_ABSEIL_OBJS) $(ZLIB_MERGE_OBJS) $(CARES_MERGE_OBJS) $(ADDRESS_SORTING_MERGE_OBJS) $(RE2_MERGE_OBJS) $(UPB_MERGE_OBJS) $(OPENSSL_MERGE_OBJS)
  1986. $(E) "[AR] Creating $@"
  1987. $(Q) mkdir -p `dirname $@`
  1988. $(Q) rm -f $(LIBDIR)/$(CONFIG)/libgrpc.a
  1989. $(Q) $(AR) $(ARFLAGS) $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBGRPC_OBJS) $(LIBGPR_OBJS) $(LIBGRPC_ABSEIL_OBJS) $(ZLIB_MERGE_OBJS) $(CARES_MERGE_OBJS) $(ADDRESS_SORTING_MERGE_OBJS) $(RE2_MERGE_OBJS) $(UPB_MERGE_OBJS) $(OPENSSL_MERGE_OBJS)
  1990. ifeq ($(SYSTEM),Darwin)
  1991. $(Q) ranlib -no_warning_for_no_symbols $(LIBDIR)/$(CONFIG)/libgrpc.a
  1992. endif
  1993. ifeq ($(SYSTEM),MINGW32)
  1994. $(LIBDIR)/$(CONFIG)/grpc$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE): $(LIBGRPC_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libaddress_sorting.a $(LIBDIR)/$(CONFIG)/libupb.a $(OPENSSL_DEP)
  1995. $(E) "[LD] Linking $@"
  1996. $(Q) mkdir -p `dirname $@`
  1997. $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,--output-def=$(LIBDIR)/$(CONFIG)/grpc$(SHARED_VERSION_CORE).def -Wl,--out-implib=$(LIBDIR)/$(CONFIG)/libgrpc$(SHARED_VERSION_CORE)-dll.a -o $(LIBDIR)/$(CONFIG)/grpc$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBGRPC_OBJS) $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libaddress_sorting.a $(LIBDIR)/$(CONFIG)/libupb.a $(OPENSSL_MERGE_LIBS) $(LDLIBS_SECURE) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBS)
  1998. else
  1999. $(LIBDIR)/$(CONFIG)/libgrpc$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE): $(LIBGRPC_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libaddress_sorting.a $(LIBDIR)/$(CONFIG)/libupb.a $(OPENSSL_DEP)
  2000. $(E) "[LD] Linking $@"
  2001. $(Q) mkdir -p `dirname $@`
  2002. ifeq ($(SYSTEM),Darwin)
  2003. $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -install_name $(SHARED_PREFIX)grpc$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) -dynamiclib -o $(LIBDIR)/$(CONFIG)/libgrpc$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBGRPC_OBJS) $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libaddress_sorting.a $(LIBDIR)/$(CONFIG)/libupb.a $(OPENSSL_MERGE_LIBS) $(LDLIBS_SECURE) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBS)
  2004. else
  2005. $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,-soname,libgrpc.so.12 -o $(LIBDIR)/$(CONFIG)/libgrpc$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBGRPC_OBJS) $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libaddress_sorting.a $(LIBDIR)/$(CONFIG)/libupb.a $(OPENSSL_MERGE_LIBS) $(LDLIBS_SECURE) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBS)
  2006. $(Q) ln -sf $(SHARED_PREFIX)grpc$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libgrpc$(SHARED_VERSION_CORE).so.12
  2007. $(Q) ln -sf $(SHARED_PREFIX)grpc$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libgrpc$(SHARED_VERSION_CORE).so
  2008. endif
  2009. endif
  2010. endif
  2011. ifneq ($(NO_SECURE),true)
  2012. ifneq ($(NO_DEPS),true)
  2013. -include $(LIBGRPC_OBJS:.o=.dep)
  2014. endif
  2015. endif
  2016. # end of build recipe for library "grpc"
  2017. # start of build recipe for library "grpc_csharp_ext" (generated by makelib(lib) template function)
  2018. LIBGRPC_CSHARP_EXT_SRC = \
  2019. src/csharp/ext/grpc_csharp_ext.c \
  2020. PUBLIC_HEADERS_C += \
  2021. LIBGRPC_CSHARP_EXT_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBGRPC_CSHARP_EXT_SRC))))
  2022. ifeq ($(NO_SECURE),true)
  2023. # You can't build secure libraries if you don't have OpenSSL.
  2024. $(LIBDIR)/$(CONFIG)/libgrpc_csharp_ext.a: openssl_dep_error
  2025. $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc_csharp_ext$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE): openssl_dep_error
  2026. else
  2027. $(LIBDIR)/$(CONFIG)/libgrpc_csharp_ext.a: $(ZLIB_DEP) $(OPENSSL_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(LIBGRPC_CSHARP_EXT_OBJS)
  2028. $(E) "[AR] Creating $@"
  2029. $(Q) mkdir -p `dirname $@`
  2030. $(Q) rm -f $(LIBDIR)/$(CONFIG)/libgrpc_csharp_ext.a
  2031. $(Q) $(AR) $(ARFLAGS) $(LIBDIR)/$(CONFIG)/libgrpc_csharp_ext.a $(LIBGRPC_CSHARP_EXT_OBJS)
  2032. ifeq ($(SYSTEM),Darwin)
  2033. $(Q) ranlib -no_warning_for_no_symbols $(LIBDIR)/$(CONFIG)/libgrpc_csharp_ext.a
  2034. endif
  2035. ifeq ($(SYSTEM),MINGW32)
  2036. $(LIBDIR)/$(CONFIG)/grpc_csharp_ext$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE): $(LIBGRPC_CSHARP_EXT_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libaddress_sorting.a $(LIBDIR)/$(CONFIG)/libupb.a $(OPENSSL_DEP)
  2037. $(E) "[LD] Linking $@"
  2038. $(Q) mkdir -p `dirname $@`
  2039. $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,--output-def=$(LIBDIR)/$(CONFIG)/grpc_csharp_ext$(SHARED_VERSION_CORE).def -Wl,--out-implib=$(LIBDIR)/$(CONFIG)/libgrpc_csharp_ext$(SHARED_VERSION_CORE)-dll.a -o $(LIBDIR)/$(CONFIG)/grpc_csharp_ext$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBGRPC_CSHARP_EXT_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libaddress_sorting.a $(LIBDIR)/$(CONFIG)/libupb.a $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBS)
  2040. else
  2041. $(LIBDIR)/$(CONFIG)/libgrpc_csharp_ext$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE): $(LIBGRPC_CSHARP_EXT_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libaddress_sorting.a $(LIBDIR)/$(CONFIG)/libupb.a $(OPENSSL_DEP)
  2042. $(E) "[LD] Linking $@"
  2043. $(Q) mkdir -p `dirname $@`
  2044. ifeq ($(SYSTEM),Darwin)
  2045. $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -install_name $(SHARED_PREFIX)grpc_csharp_ext$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) -dynamiclib -o $(LIBDIR)/$(CONFIG)/libgrpc_csharp_ext$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBGRPC_CSHARP_EXT_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libaddress_sorting.a $(LIBDIR)/$(CONFIG)/libupb.a $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBS)
  2046. else
  2047. $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,-soname,libgrpc_csharp_ext.so.12 -o $(LIBDIR)/$(CONFIG)/libgrpc_csharp_ext$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBGRPC_CSHARP_EXT_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libaddress_sorting.a $(LIBDIR)/$(CONFIG)/libupb.a $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBS)
  2048. $(Q) ln -sf $(SHARED_PREFIX)grpc_csharp_ext$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libgrpc_csharp_ext$(SHARED_VERSION_CORE).so.12
  2049. $(Q) ln -sf $(SHARED_PREFIX)grpc_csharp_ext$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libgrpc_csharp_ext$(SHARED_VERSION_CORE).so
  2050. endif
  2051. endif
  2052. endif
  2053. ifneq ($(NO_SECURE),true)
  2054. ifneq ($(NO_DEPS),true)
  2055. -include $(LIBGRPC_CSHARP_EXT_OBJS:.o=.dep)
  2056. endif
  2057. endif
  2058. # end of build recipe for library "grpc_csharp_ext"
  2059. # start of build recipe for library "grpc_unsecure" (generated by makelib(lib) template function)
  2060. LIBGRPC_UNSECURE_SRC = \
  2061. src/core/ext/filters/census/grpc_context.cc \
  2062. src/core/ext/filters/client_channel/backend_metric.cc \
  2063. src/core/ext/filters/client_channel/backup_poller.cc \
  2064. src/core/ext/filters/client_channel/channel_connectivity.cc \
  2065. src/core/ext/filters/client_channel/client_channel.cc \
  2066. src/core/ext/filters/client_channel/client_channel_channelz.cc \
  2067. src/core/ext/filters/client_channel/client_channel_factory.cc \
  2068. src/core/ext/filters/client_channel/client_channel_plugin.cc \
  2069. src/core/ext/filters/client_channel/config_selector.cc \
  2070. src/core/ext/filters/client_channel/global_subchannel_pool.cc \
  2071. src/core/ext/filters/client_channel/health/health_check_client.cc \
  2072. src/core/ext/filters/client_channel/http_connect_handshaker.cc \
  2073. src/core/ext/filters/client_channel/http_proxy.cc \
  2074. src/core/ext/filters/client_channel/lb_policy.cc \
  2075. src/core/ext/filters/client_channel/lb_policy/address_filtering.cc \
  2076. src/core/ext/filters/client_channel/lb_policy/child_policy_handler.cc \
  2077. src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.cc \
  2078. src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc \
  2079. src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.cc \
  2080. src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel.cc \
  2081. src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.cc \
  2082. src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.cc \
  2083. src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc \
  2084. src/core/ext/filters/client_channel/lb_policy/priority/priority.cc \
  2085. src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc \
  2086. src/core/ext/filters/client_channel/lb_policy/weighted_target/weighted_target.cc \
  2087. src/core/ext/filters/client_channel/lb_policy_registry.cc \
  2088. src/core/ext/filters/client_channel/local_subchannel_pool.cc \
  2089. src/core/ext/filters/client_channel/proxy_mapper_registry.cc \
  2090. src/core/ext/filters/client_channel/resolver.cc \
  2091. src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc \
  2092. src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.cc \
  2093. src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_libuv.cc \
  2094. src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc \
  2095. src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc \
  2096. src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc \
  2097. src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_fallback.cc \
  2098. src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_libuv.cc \
  2099. src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_posix.cc \
  2100. src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_windows.cc \
  2101. src/core/ext/filters/client_channel/resolver/dns/dns_resolver_selection.cc \
  2102. src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc \
  2103. src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc \
  2104. src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc \
  2105. src/core/ext/filters/client_channel/resolver_registry.cc \
  2106. src/core/ext/filters/client_channel/resolver_result_parsing.cc \
  2107. src/core/ext/filters/client_channel/resolving_lb_policy.cc \
  2108. src/core/ext/filters/client_channel/retry_throttle.cc \
  2109. src/core/ext/filters/client_channel/server_address.cc \
  2110. src/core/ext/filters/client_channel/service_config.cc \
  2111. src/core/ext/filters/client_channel/service_config_channel_arg_filter.cc \
  2112. src/core/ext/filters/client_channel/service_config_parser.cc \
  2113. src/core/ext/filters/client_channel/subchannel.cc \
  2114. src/core/ext/filters/client_channel/subchannel_pool_interface.cc \
  2115. src/core/ext/filters/client_idle/client_idle_filter.cc \
  2116. src/core/ext/filters/deadline/deadline_filter.cc \
  2117. src/core/ext/filters/http/client/http_client_filter.cc \
  2118. src/core/ext/filters/http/client_authority_filter.cc \
  2119. src/core/ext/filters/http/http_filters_plugin.cc \
  2120. src/core/ext/filters/http/message_compress/message_compress_filter.cc \
  2121. src/core/ext/filters/http/message_compress/message_decompress_filter.cc \
  2122. src/core/ext/filters/http/server/http_server_filter.cc \
  2123. src/core/ext/filters/max_age/max_age_filter.cc \
  2124. src/core/ext/filters/message_size/message_size_filter.cc \
  2125. src/core/ext/filters/workarounds/workaround_cronet_compression_filter.cc \
  2126. src/core/ext/filters/workarounds/workaround_utils.cc \
  2127. src/core/ext/transport/chttp2/alpn/alpn.cc \
  2128. src/core/ext/transport/chttp2/client/authority.cc \
  2129. src/core/ext/transport/chttp2/client/chttp2_connector.cc \
  2130. src/core/ext/transport/chttp2/client/insecure/channel_create.cc \
  2131. src/core/ext/transport/chttp2/client/insecure/channel_create_posix.cc \
  2132. src/core/ext/transport/chttp2/server/chttp2_server.cc \
  2133. src/core/ext/transport/chttp2/server/insecure/server_chttp2.cc \
  2134. src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.cc \
  2135. src/core/ext/transport/chttp2/transport/bin_decoder.cc \
  2136. src/core/ext/transport/chttp2/transport/bin_encoder.cc \
  2137. src/core/ext/transport/chttp2/transport/chttp2_plugin.cc \
  2138. src/core/ext/transport/chttp2/transport/chttp2_transport.cc \
  2139. src/core/ext/transport/chttp2/transport/context_list.cc \
  2140. src/core/ext/transport/chttp2/transport/flow_control.cc \
  2141. src/core/ext/transport/chttp2/transport/frame_data.cc \
  2142. src/core/ext/transport/chttp2/transport/frame_goaway.cc \
  2143. src/core/ext/transport/chttp2/transport/frame_ping.cc \
  2144. src/core/ext/transport/chttp2/transport/frame_rst_stream.cc \
  2145. src/core/ext/transport/chttp2/transport/frame_settings.cc \
  2146. src/core/ext/transport/chttp2/transport/frame_window_update.cc \
  2147. src/core/ext/transport/chttp2/transport/hpack_encoder.cc \
  2148. src/core/ext/transport/chttp2/transport/hpack_parser.cc \
  2149. src/core/ext/transport/chttp2/transport/hpack_table.cc \
  2150. src/core/ext/transport/chttp2/transport/http2_settings.cc \
  2151. src/core/ext/transport/chttp2/transport/huffsyms.cc \
  2152. src/core/ext/transport/chttp2/transport/incoming_metadata.cc \
  2153. src/core/ext/transport/chttp2/transport/parsing.cc \
  2154. src/core/ext/transport/chttp2/transport/stream_lists.cc \
  2155. src/core/ext/transport/chttp2/transport/stream_map.cc \
  2156. src/core/ext/transport/chttp2/transport/varint.cc \
  2157. src/core/ext/transport/chttp2/transport/writing.cc \
  2158. src/core/ext/transport/inproc/inproc_plugin.cc \
  2159. src/core/ext/transport/inproc/inproc_transport.cc \
  2160. src/core/ext/upb-generated/google/api/annotations.upb.c \
  2161. src/core/ext/upb-generated/google/api/expr/v1alpha1/checked.upb.c \
  2162. src/core/ext/upb-generated/google/api/expr/v1alpha1/syntax.upb.c \
  2163. src/core/ext/upb-generated/google/api/http.upb.c \
  2164. src/core/ext/upb-generated/google/protobuf/any.upb.c \
  2165. src/core/ext/upb-generated/google/protobuf/descriptor.upb.c \
  2166. src/core/ext/upb-generated/google/protobuf/duration.upb.c \
  2167. src/core/ext/upb-generated/google/protobuf/empty.upb.c \
  2168. src/core/ext/upb-generated/google/protobuf/struct.upb.c \
  2169. src/core/ext/upb-generated/google/protobuf/timestamp.upb.c \
  2170. src/core/ext/upb-generated/google/protobuf/wrappers.upb.c \
  2171. src/core/ext/upb-generated/google/rpc/status.upb.c \
  2172. src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.c \
  2173. src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.c \
  2174. src/core/ext/upb-generated/udpa/data/orca/v1/orca_load_report.upb.c \
  2175. src/core/ext/upb-generated/validate/validate.upb.c \
  2176. src/core/lib/avl/avl.cc \
  2177. src/core/lib/backoff/backoff.cc \
  2178. src/core/lib/channel/channel_args.cc \
  2179. src/core/lib/channel/channel_stack.cc \
  2180. src/core/lib/channel/channel_stack_builder.cc \
  2181. src/core/lib/channel/channel_trace.cc \
  2182. src/core/lib/channel/channelz.cc \
  2183. src/core/lib/channel/channelz_registry.cc \
  2184. src/core/lib/channel/connected_channel.cc \
  2185. src/core/lib/channel/handshaker.cc \
  2186. src/core/lib/channel/handshaker_registry.cc \
  2187. src/core/lib/channel/status_util.cc \
  2188. src/core/lib/compression/compression.cc \
  2189. src/core/lib/compression/compression_args.cc \
  2190. src/core/lib/compression/compression_internal.cc \
  2191. src/core/lib/compression/message_compress.cc \
  2192. src/core/lib/compression/stream_compression.cc \
  2193. src/core/lib/compression/stream_compression_gzip.cc \
  2194. src/core/lib/compression/stream_compression_identity.cc \
  2195. src/core/lib/debug/stats.cc \
  2196. src/core/lib/debug/stats_data.cc \
  2197. src/core/lib/debug/trace.cc \
  2198. src/core/lib/http/format_request.cc \
  2199. src/core/lib/http/httpcli.cc \
  2200. src/core/lib/http/parser.cc \
  2201. src/core/lib/iomgr/buffer_list.cc \
  2202. src/core/lib/iomgr/call_combiner.cc \
  2203. src/core/lib/iomgr/cfstream_handle.cc \
  2204. src/core/lib/iomgr/combiner.cc \
  2205. src/core/lib/iomgr/dualstack_socket_posix.cc \
  2206. src/core/lib/iomgr/endpoint.cc \
  2207. src/core/lib/iomgr/endpoint_cfstream.cc \
  2208. src/core/lib/iomgr/endpoint_pair_posix.cc \
  2209. src/core/lib/iomgr/endpoint_pair_uv.cc \
  2210. src/core/lib/iomgr/endpoint_pair_windows.cc \
  2211. src/core/lib/iomgr/error.cc \
  2212. src/core/lib/iomgr/error_cfstream.cc \
  2213. src/core/lib/iomgr/ev_apple.cc \
  2214. src/core/lib/iomgr/ev_epoll1_linux.cc \
  2215. src/core/lib/iomgr/ev_epollex_linux.cc \
  2216. src/core/lib/iomgr/ev_poll_posix.cc \
  2217. src/core/lib/iomgr/ev_posix.cc \
  2218. src/core/lib/iomgr/ev_windows.cc \
  2219. src/core/lib/iomgr/exec_ctx.cc \
  2220. src/core/lib/iomgr/executor.cc \
  2221. src/core/lib/iomgr/executor/mpmcqueue.cc \
  2222. src/core/lib/iomgr/executor/threadpool.cc \
  2223. src/core/lib/iomgr/fork_posix.cc \
  2224. src/core/lib/iomgr/fork_windows.cc \
  2225. src/core/lib/iomgr/gethostname_fallback.cc \
  2226. src/core/lib/iomgr/gethostname_host_name_max.cc \
  2227. src/core/lib/iomgr/gethostname_sysconf.cc \
  2228. src/core/lib/iomgr/grpc_if_nametoindex_posix.cc \
  2229. src/core/lib/iomgr/grpc_if_nametoindex_unsupported.cc \
  2230. src/core/lib/iomgr/internal_errqueue.cc \
  2231. src/core/lib/iomgr/iocp_windows.cc \
  2232. src/core/lib/iomgr/iomgr.cc \
  2233. src/core/lib/iomgr/iomgr_custom.cc \
  2234. src/core/lib/iomgr/iomgr_internal.cc \
  2235. src/core/lib/iomgr/iomgr_posix.cc \
  2236. src/core/lib/iomgr/iomgr_posix_cfstream.cc \
  2237. src/core/lib/iomgr/iomgr_uv.cc \
  2238. src/core/lib/iomgr/iomgr_windows.cc \
  2239. src/core/lib/iomgr/is_epollexclusive_available.cc \
  2240. src/core/lib/iomgr/load_file.cc \
  2241. src/core/lib/iomgr/lockfree_event.cc \
  2242. src/core/lib/iomgr/parse_address.cc \
  2243. src/core/lib/iomgr/poller/eventmanager_libuv.cc \
  2244. src/core/lib/iomgr/polling_entity.cc \
  2245. src/core/lib/iomgr/pollset.cc \
  2246. src/core/lib/iomgr/pollset_custom.cc \
  2247. src/core/lib/iomgr/pollset_set.cc \
  2248. src/core/lib/iomgr/pollset_set_custom.cc \
  2249. src/core/lib/iomgr/pollset_set_windows.cc \
  2250. src/core/lib/iomgr/pollset_uv.cc \
  2251. src/core/lib/iomgr/pollset_windows.cc \
  2252. src/core/lib/iomgr/resolve_address.cc \
  2253. src/core/lib/iomgr/resolve_address_custom.cc \
  2254. src/core/lib/iomgr/resolve_address_posix.cc \
  2255. src/core/lib/iomgr/resolve_address_windows.cc \
  2256. src/core/lib/iomgr/resource_quota.cc \
  2257. src/core/lib/iomgr/sockaddr_utils.cc \
  2258. src/core/lib/iomgr/socket_factory_posix.cc \
  2259. src/core/lib/iomgr/socket_mutator.cc \
  2260. src/core/lib/iomgr/socket_utils_common_posix.cc \
  2261. src/core/lib/iomgr/socket_utils_linux.cc \
  2262. src/core/lib/iomgr/socket_utils_posix.cc \
  2263. src/core/lib/iomgr/socket_utils_uv.cc \
  2264. src/core/lib/iomgr/socket_utils_windows.cc \
  2265. src/core/lib/iomgr/socket_windows.cc \
  2266. src/core/lib/iomgr/tcp_client.cc \
  2267. src/core/lib/iomgr/tcp_client_cfstream.cc \
  2268. src/core/lib/iomgr/tcp_client_custom.cc \
  2269. src/core/lib/iomgr/tcp_client_posix.cc \
  2270. src/core/lib/iomgr/tcp_client_windows.cc \
  2271. src/core/lib/iomgr/tcp_custom.cc \
  2272. src/core/lib/iomgr/tcp_posix.cc \
  2273. src/core/lib/iomgr/tcp_server.cc \
  2274. src/core/lib/iomgr/tcp_server_custom.cc \
  2275. src/core/lib/iomgr/tcp_server_posix.cc \
  2276. src/core/lib/iomgr/tcp_server_utils_posix_common.cc \
  2277. src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc \
  2278. src/core/lib/iomgr/tcp_server_utils_posix_noifaddrs.cc \
  2279. src/core/lib/iomgr/tcp_server_windows.cc \
  2280. src/core/lib/iomgr/tcp_uv.cc \
  2281. src/core/lib/iomgr/tcp_windows.cc \
  2282. src/core/lib/iomgr/time_averaged_stats.cc \
  2283. src/core/lib/iomgr/timer.cc \
  2284. src/core/lib/iomgr/timer_custom.cc \
  2285. src/core/lib/iomgr/timer_generic.cc \
  2286. src/core/lib/iomgr/timer_heap.cc \
  2287. src/core/lib/iomgr/timer_manager.cc \
  2288. src/core/lib/iomgr/timer_uv.cc \
  2289. src/core/lib/iomgr/udp_server.cc \
  2290. src/core/lib/iomgr/unix_sockets_posix.cc \
  2291. src/core/lib/iomgr/unix_sockets_posix_noop.cc \
  2292. src/core/lib/iomgr/wakeup_fd_eventfd.cc \
  2293. src/core/lib/iomgr/wakeup_fd_nospecial.cc \
  2294. src/core/lib/iomgr/wakeup_fd_pipe.cc \
  2295. src/core/lib/iomgr/wakeup_fd_posix.cc \
  2296. src/core/lib/iomgr/work_serializer.cc \
  2297. src/core/lib/json/json_reader.cc \
  2298. src/core/lib/json/json_util.cc \
  2299. src/core/lib/json/json_writer.cc \
  2300. src/core/lib/slice/b64.cc \
  2301. src/core/lib/slice/percent_encoding.cc \
  2302. src/core/lib/slice/slice.cc \
  2303. src/core/lib/slice/slice_buffer.cc \
  2304. src/core/lib/slice/slice_intern.cc \
  2305. src/core/lib/slice/slice_string_helpers.cc \
  2306. src/core/lib/surface/api_trace.cc \
  2307. src/core/lib/surface/byte_buffer.cc \
  2308. src/core/lib/surface/byte_buffer_reader.cc \
  2309. src/core/lib/surface/call.cc \
  2310. src/core/lib/surface/call_details.cc \
  2311. src/core/lib/surface/call_log_batch.cc \
  2312. src/core/lib/surface/channel.cc \
  2313. src/core/lib/surface/channel_init.cc \
  2314. src/core/lib/surface/channel_ping.cc \
  2315. src/core/lib/surface/channel_stack_type.cc \
  2316. src/core/lib/surface/completion_queue.cc \
  2317. src/core/lib/surface/completion_queue_factory.cc \
  2318. src/core/lib/surface/event_string.cc \
  2319. src/core/lib/surface/init.cc \
  2320. src/core/lib/surface/init_unsecure.cc \
  2321. src/core/lib/surface/lame_client.cc \
  2322. src/core/lib/surface/metadata_array.cc \
  2323. src/core/lib/surface/server.cc \
  2324. src/core/lib/surface/validate_metadata.cc \
  2325. src/core/lib/surface/version.cc \
  2326. src/core/lib/transport/authority_override.cc \
  2327. src/core/lib/transport/bdp_estimator.cc \
  2328. src/core/lib/transport/byte_stream.cc \
  2329. src/core/lib/transport/connectivity_state.cc \
  2330. src/core/lib/transport/error_utils.cc \
  2331. src/core/lib/transport/metadata.cc \
  2332. src/core/lib/transport/metadata_batch.cc \
  2333. src/core/lib/transport/pid_controller.cc \
  2334. src/core/lib/transport/static_metadata.cc \
  2335. src/core/lib/transport/status_conversion.cc \
  2336. src/core/lib/transport/status_metadata.cc \
  2337. src/core/lib/transport/timeout_encoding.cc \
  2338. src/core/lib/transport/transport.cc \
  2339. src/core/lib/transport/transport_op_string.cc \
  2340. src/core/lib/uri/uri_parser.cc \
  2341. src/core/plugin_registry/grpc_unsecure_plugin_registry.cc \
  2342. PUBLIC_HEADERS_C += \
  2343. include/grpc/byte_buffer.h \
  2344. include/grpc/byte_buffer_reader.h \
  2345. include/grpc/census.h \
  2346. include/grpc/compression.h \
  2347. include/grpc/fork.h \
  2348. include/grpc/grpc.h \
  2349. include/grpc/grpc_posix.h \
  2350. include/grpc/grpc_security_constants.h \
  2351. include/grpc/load_reporting.h \
  2352. include/grpc/slice.h \
  2353. include/grpc/slice_buffer.h \
  2354. include/grpc/status.h \
  2355. include/grpc/support/workaround_list.h \
  2356. LIBGRPC_UNSECURE_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBGRPC_UNSECURE_SRC))))
  2357. $(LIBDIR)/$(CONFIG)/libgrpc_unsecure.a: $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(LIBGRPC_UNSECURE_OBJS) $(LIBGPR_OBJS) $(LIBGRPC_ABSEIL_OBJS) $(ZLIB_MERGE_OBJS) $(CARES_MERGE_OBJS) $(ADDRESS_SORTING_MERGE_OBJS) $(RE2_MERGE_OBJS) $(UPB_MERGE_OBJS)
  2358. $(E) "[AR] Creating $@"
  2359. $(Q) mkdir -p `dirname $@`
  2360. $(Q) rm -f $(LIBDIR)/$(CONFIG)/libgrpc_unsecure.a
  2361. $(Q) $(AR) $(ARFLAGS) $(LIBDIR)/$(CONFIG)/libgrpc_unsecure.a $(LIBGRPC_UNSECURE_OBJS) $(LIBGPR_OBJS) $(LIBGRPC_ABSEIL_OBJS) $(ZLIB_MERGE_OBJS) $(CARES_MERGE_OBJS) $(ADDRESS_SORTING_MERGE_OBJS) $(RE2_MERGE_OBJS) $(UPB_MERGE_OBJS)
  2362. ifeq ($(SYSTEM),Darwin)
  2363. $(Q) ranlib -no_warning_for_no_symbols $(LIBDIR)/$(CONFIG)/libgrpc_unsecure.a
  2364. endif
  2365. ifeq ($(SYSTEM),MINGW32)
  2366. $(LIBDIR)/$(CONFIG)/grpc_unsecure$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE): $(LIBGRPC_UNSECURE_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libaddress_sorting.a $(LIBDIR)/$(CONFIG)/libupb.a
  2367. $(E) "[LD] Linking $@"
  2368. $(Q) mkdir -p `dirname $@`
  2369. $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,--output-def=$(LIBDIR)/$(CONFIG)/grpc_unsecure$(SHARED_VERSION_CORE).def -Wl,--out-implib=$(LIBDIR)/$(CONFIG)/libgrpc_unsecure$(SHARED_VERSION_CORE)-dll.a -o $(LIBDIR)/$(CONFIG)/grpc_unsecure$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBGRPC_UNSECURE_OBJS) $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libaddress_sorting.a $(LIBDIR)/$(CONFIG)/libupb.a $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBS)
  2370. else
  2371. $(LIBDIR)/$(CONFIG)/libgrpc_unsecure$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE): $(LIBGRPC_UNSECURE_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libaddress_sorting.a $(LIBDIR)/$(CONFIG)/libupb.a
  2372. $(E) "[LD] Linking $@"
  2373. $(Q) mkdir -p `dirname $@`
  2374. ifeq ($(SYSTEM),Darwin)
  2375. $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -install_name $(SHARED_PREFIX)grpc_unsecure$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) -dynamiclib -o $(LIBDIR)/$(CONFIG)/libgrpc_unsecure$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBGRPC_UNSECURE_OBJS) $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libaddress_sorting.a $(LIBDIR)/$(CONFIG)/libupb.a $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBS)
  2376. else
  2377. $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,-soname,libgrpc_unsecure.so.12 -o $(LIBDIR)/$(CONFIG)/libgrpc_unsecure$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBGRPC_UNSECURE_OBJS) $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libaddress_sorting.a $(LIBDIR)/$(CONFIG)/libupb.a $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBS)
  2378. $(Q) ln -sf $(SHARED_PREFIX)grpc_unsecure$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libgrpc_unsecure$(SHARED_VERSION_CORE).so.12
  2379. $(Q) ln -sf $(SHARED_PREFIX)grpc_unsecure$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libgrpc_unsecure$(SHARED_VERSION_CORE).so
  2380. endif
  2381. endif
  2382. ifneq ($(NO_DEPS),true)
  2383. -include $(LIBGRPC_UNSECURE_OBJS:.o=.dep)
  2384. endif
  2385. # end of build recipe for library "grpc_unsecure"
  2386. # start of build recipe for library "grpc++" (generated by makelib(lib) template function)
  2387. LIBGRPC++_SRC = \
  2388. src/cpp/client/channel_cc.cc \
  2389. src/cpp/client/client_callback.cc \
  2390. src/cpp/client/client_context.cc \
  2391. src/cpp/client/client_interceptor.cc \
  2392. src/cpp/client/create_channel.cc \
  2393. src/cpp/client/create_channel_internal.cc \
  2394. src/cpp/client/create_channel_posix.cc \
  2395. src/cpp/client/credentials_cc.cc \
  2396. src/cpp/client/insecure_credentials.cc \
  2397. src/cpp/client/secure_credentials.cc \
  2398. src/cpp/codegen/codegen_init.cc \
  2399. src/cpp/common/alarm.cc \
  2400. src/cpp/common/auth_property_iterator.cc \
  2401. src/cpp/common/channel_arguments.cc \
  2402. src/cpp/common/channel_filter.cc \
  2403. src/cpp/common/completion_queue_cc.cc \
  2404. src/cpp/common/core_codegen.cc \
  2405. src/cpp/common/resource_quota_cc.cc \
  2406. src/cpp/common/rpc_method.cc \
  2407. src/cpp/common/secure_auth_context.cc \
  2408. src/cpp/common/secure_channel_arguments.cc \
  2409. src/cpp/common/secure_create_auth_context.cc \
  2410. src/cpp/common/tls_credentials_options.cc \
  2411. src/cpp/common/tls_credentials_options_util.cc \
  2412. src/cpp/common/validate_service_config.cc \
  2413. src/cpp/common/version_cc.cc \
  2414. src/cpp/server/async_generic_service.cc \
  2415. src/cpp/server/channel_argument_option.cc \
  2416. src/cpp/server/create_default_thread_pool.cc \
  2417. src/cpp/server/dynamic_thread_pool.cc \
  2418. src/cpp/server/external_connection_acceptor_impl.cc \
  2419. src/cpp/server/health/default_health_check_service.cc \
  2420. src/cpp/server/health/health_check_service.cc \
  2421. src/cpp/server/health/health_check_service_server_builder_option.cc \
  2422. src/cpp/server/insecure_server_credentials.cc \
  2423. src/cpp/server/secure_server_credentials.cc \
  2424. src/cpp/server/server_builder.cc \
  2425. src/cpp/server/server_callback.cc \
  2426. src/cpp/server/server_cc.cc \
  2427. src/cpp/server/server_context.cc \
  2428. src/cpp/server/server_credentials.cc \
  2429. src/cpp/server/server_posix.cc \
  2430. src/cpp/thread_manager/thread_manager.cc \
  2431. src/cpp/util/byte_buffer_cc.cc \
  2432. src/cpp/util/status.cc \
  2433. src/cpp/util/string_ref.cc \
  2434. src/cpp/util/time_cc.cc \
  2435. PUBLIC_HEADERS_CXX += \
  2436. include/grpc++/alarm.h \
  2437. include/grpc++/channel.h \
  2438. include/grpc++/client_context.h \
  2439. include/grpc++/completion_queue.h \
  2440. include/grpc++/create_channel.h \
  2441. include/grpc++/create_channel_posix.h \
  2442. include/grpc++/ext/health_check_service_server_builder_option.h \
  2443. include/grpc++/generic/async_generic_service.h \
  2444. include/grpc++/generic/generic_stub.h \
  2445. include/grpc++/grpc++.h \
  2446. include/grpc++/health_check_service_interface.h \
  2447. include/grpc++/impl/call.h \
  2448. include/grpc++/impl/channel_argument_option.h \
  2449. include/grpc++/impl/client_unary_call.h \
  2450. include/grpc++/impl/codegen/async_stream.h \
  2451. include/grpc++/impl/codegen/async_unary_call.h \
  2452. include/grpc++/impl/codegen/byte_buffer.h \
  2453. include/grpc++/impl/codegen/call.h \
  2454. include/grpc++/impl/codegen/call_hook.h \
  2455. include/grpc++/impl/codegen/channel_interface.h \
  2456. include/grpc++/impl/codegen/client_context.h \
  2457. include/grpc++/impl/codegen/client_unary_call.h \
  2458. include/grpc++/impl/codegen/completion_queue.h \
  2459. include/grpc++/impl/codegen/completion_queue_tag.h \
  2460. include/grpc++/impl/codegen/config.h \
  2461. include/grpc++/impl/codegen/config_protobuf.h \
  2462. include/grpc++/impl/codegen/core_codegen.h \
  2463. include/grpc++/impl/codegen/core_codegen_interface.h \
  2464. include/grpc++/impl/codegen/create_auth_context.h \
  2465. include/grpc++/impl/codegen/grpc_library.h \
  2466. include/grpc++/impl/codegen/metadata_map.h \
  2467. include/grpc++/impl/codegen/method_handler_impl.h \
  2468. include/grpc++/impl/codegen/proto_utils.h \
  2469. include/grpc++/impl/codegen/rpc_method.h \
  2470. include/grpc++/impl/codegen/rpc_service_method.h \
  2471. include/grpc++/impl/codegen/security/auth_context.h \
  2472. include/grpc++/impl/codegen/serialization_traits.h \
  2473. include/grpc++/impl/codegen/server_context.h \
  2474. include/grpc++/impl/codegen/server_interface.h \
  2475. include/grpc++/impl/codegen/service_type.h \
  2476. include/grpc++/impl/codegen/slice.h \
  2477. include/grpc++/impl/codegen/status.h \
  2478. include/grpc++/impl/codegen/status_code_enum.h \
  2479. include/grpc++/impl/codegen/string_ref.h \
  2480. include/grpc++/impl/codegen/stub_options.h \
  2481. include/grpc++/impl/codegen/sync_stream.h \
  2482. include/grpc++/impl/codegen/time.h \
  2483. include/grpc++/impl/grpc_library.h \
  2484. include/grpc++/impl/method_handler_impl.h \
  2485. include/grpc++/impl/rpc_method.h \
  2486. include/grpc++/impl/rpc_service_method.h \
  2487. include/grpc++/impl/serialization_traits.h \
  2488. include/grpc++/impl/server_builder_option.h \
  2489. include/grpc++/impl/server_builder_plugin.h \
  2490. include/grpc++/impl/server_initializer.h \
  2491. include/grpc++/impl/service_type.h \
  2492. include/grpc++/resource_quota.h \
  2493. include/grpc++/security/auth_context.h \
  2494. include/grpc++/security/auth_metadata_processor.h \
  2495. include/grpc++/security/credentials.h \
  2496. include/grpc++/security/server_credentials.h \
  2497. include/grpc++/server.h \
  2498. include/grpc++/server_builder.h \
  2499. include/grpc++/server_context.h \
  2500. include/grpc++/server_posix.h \
  2501. include/grpc++/support/async_stream.h \
  2502. include/grpc++/support/async_unary_call.h \
  2503. include/grpc++/support/byte_buffer.h \
  2504. include/grpc++/support/channel_arguments.h \
  2505. include/grpc++/support/config.h \
  2506. include/grpc++/support/slice.h \
  2507. include/grpc++/support/status.h \
  2508. include/grpc++/support/status_code_enum.h \
  2509. include/grpc++/support/string_ref.h \
  2510. include/grpc++/support/stub_options.h \
  2511. include/grpc++/support/sync_stream.h \
  2512. include/grpc++/support/time.h \
  2513. include/grpcpp/alarm.h \
  2514. include/grpcpp/alarm_impl.h \
  2515. include/grpcpp/channel.h \
  2516. include/grpcpp/client_context.h \
  2517. include/grpcpp/completion_queue.h \
  2518. include/grpcpp/create_channel.h \
  2519. include/grpcpp/create_channel_posix.h \
  2520. include/grpcpp/ext/health_check_service_server_builder_option.h \
  2521. include/grpcpp/generic/async_generic_service.h \
  2522. include/grpcpp/generic/generic_stub.h \
  2523. include/grpcpp/grpcpp.h \
  2524. include/grpcpp/health_check_service_interface.h \
  2525. include/grpcpp/impl/call.h \
  2526. include/grpcpp/impl/channel_argument_option.h \
  2527. include/grpcpp/impl/client_unary_call.h \
  2528. include/grpcpp/impl/codegen/async_generic_service.h \
  2529. include/grpcpp/impl/codegen/async_stream.h \
  2530. include/grpcpp/impl/codegen/async_unary_call.h \
  2531. include/grpcpp/impl/codegen/byte_buffer.h \
  2532. include/grpcpp/impl/codegen/call.h \
  2533. include/grpcpp/impl/codegen/call_hook.h \
  2534. include/grpcpp/impl/codegen/call_op_set.h \
  2535. include/grpcpp/impl/codegen/call_op_set_interface.h \
  2536. include/grpcpp/impl/codegen/callback_common.h \
  2537. include/grpcpp/impl/codegen/channel_interface.h \
  2538. include/grpcpp/impl/codegen/client_callback.h \
  2539. include/grpcpp/impl/codegen/client_context.h \
  2540. include/grpcpp/impl/codegen/client_interceptor.h \
  2541. include/grpcpp/impl/codegen/client_unary_call.h \
  2542. include/grpcpp/impl/codegen/completion_queue.h \
  2543. include/grpcpp/impl/codegen/completion_queue_tag.h \
  2544. include/grpcpp/impl/codegen/config.h \
  2545. include/grpcpp/impl/codegen/config_protobuf.h \
  2546. include/grpcpp/impl/codegen/core_codegen.h \
  2547. include/grpcpp/impl/codegen/core_codegen_interface.h \
  2548. include/grpcpp/impl/codegen/create_auth_context.h \
  2549. include/grpcpp/impl/codegen/delegating_channel.h \
  2550. include/grpcpp/impl/codegen/grpc_library.h \
  2551. include/grpcpp/impl/codegen/intercepted_channel.h \
  2552. include/grpcpp/impl/codegen/interceptor.h \
  2553. include/grpcpp/impl/codegen/interceptor_common.h \
  2554. include/grpcpp/impl/codegen/message_allocator.h \
  2555. include/grpcpp/impl/codegen/metadata_map.h \
  2556. include/grpcpp/impl/codegen/method_handler.h \
  2557. include/grpcpp/impl/codegen/proto_buffer_reader.h \
  2558. include/grpcpp/impl/codegen/proto_buffer_writer.h \
  2559. include/grpcpp/impl/codegen/proto_utils.h \
  2560. include/grpcpp/impl/codegen/rpc_method.h \
  2561. include/grpcpp/impl/codegen/rpc_service_method.h \
  2562. include/grpcpp/impl/codegen/security/auth_context.h \
  2563. include/grpcpp/impl/codegen/serialization_traits.h \
  2564. include/grpcpp/impl/codegen/server_callback.h \
  2565. include/grpcpp/impl/codegen/server_callback_handlers.h \
  2566. include/grpcpp/impl/codegen/server_context.h \
  2567. include/grpcpp/impl/codegen/server_interceptor.h \
  2568. include/grpcpp/impl/codegen/server_interface.h \
  2569. include/grpcpp/impl/codegen/service_type.h \
  2570. include/grpcpp/impl/codegen/slice.h \
  2571. include/grpcpp/impl/codegen/status.h \
  2572. include/grpcpp/impl/codegen/status_code_enum.h \
  2573. include/grpcpp/impl/codegen/string_ref.h \
  2574. include/grpcpp/impl/codegen/stub_options.h \
  2575. include/grpcpp/impl/codegen/sync.h \
  2576. include/grpcpp/impl/codegen/sync_stream.h \
  2577. include/grpcpp/impl/codegen/time.h \
  2578. include/grpcpp/impl/grpc_library.h \
  2579. include/grpcpp/impl/method_handler_impl.h \
  2580. include/grpcpp/impl/rpc_method.h \
  2581. include/grpcpp/impl/rpc_service_method.h \
  2582. include/grpcpp/impl/serialization_traits.h \
  2583. include/grpcpp/impl/server_builder_option.h \
  2584. include/grpcpp/impl/server_builder_option_impl.h \
  2585. include/grpcpp/impl/server_builder_plugin.h \
  2586. include/grpcpp/impl/server_initializer.h \
  2587. include/grpcpp/impl/server_initializer_impl.h \
  2588. include/grpcpp/impl/service_type.h \
  2589. include/grpcpp/resource_quota.h \
  2590. include/grpcpp/security/auth_context.h \
  2591. include/grpcpp/security/auth_metadata_processor.h \
  2592. include/grpcpp/security/credentials.h \
  2593. include/grpcpp/security/server_credentials.h \
  2594. include/grpcpp/security/tls_credentials_options.h \
  2595. include/grpcpp/server.h \
  2596. include/grpcpp/server_builder.h \
  2597. include/grpcpp/server_context.h \
  2598. include/grpcpp/server_posix.h \
  2599. include/grpcpp/support/async_stream.h \
  2600. include/grpcpp/support/async_unary_call.h \
  2601. include/grpcpp/support/byte_buffer.h \
  2602. include/grpcpp/support/channel_arguments.h \
  2603. include/grpcpp/support/client_callback.h \
  2604. include/grpcpp/support/client_interceptor.h \
  2605. include/grpcpp/support/config.h \
  2606. include/grpcpp/support/interceptor.h \
  2607. include/grpcpp/support/message_allocator.h \
  2608. include/grpcpp/support/method_handler.h \
  2609. include/grpcpp/support/proto_buffer_reader.h \
  2610. include/grpcpp/support/proto_buffer_writer.h \
  2611. include/grpcpp/support/server_callback.h \
  2612. include/grpcpp/support/server_interceptor.h \
  2613. include/grpcpp/support/slice.h \
  2614. include/grpcpp/support/status.h \
  2615. include/grpcpp/support/status_code_enum.h \
  2616. include/grpcpp/support/string_ref.h \
  2617. include/grpcpp/support/stub_options.h \
  2618. include/grpcpp/support/sync_stream.h \
  2619. include/grpcpp/support/time.h \
  2620. include/grpcpp/support/validate_service_config.h \
  2621. LIBGRPC++_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBGRPC++_SRC))))
  2622. ifeq ($(NO_SECURE),true)
  2623. # You can't build secure libraries if you don't have OpenSSL.
  2624. $(LIBDIR)/$(CONFIG)/libgrpc++.a: openssl_dep_error
  2625. $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc++$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP): openssl_dep_error
  2626. else
  2627. ifeq ($(NO_PROTOBUF),true)
  2628. # You can't build a C++ library if you don't have protobuf - a bit overreached, but still okay.
  2629. $(LIBDIR)/$(CONFIG)/libgrpc++.a: protobuf_dep_error
  2630. $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc++$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP): protobuf_dep_error
  2631. else
  2632. $(LIBDIR)/$(CONFIG)/libgrpc++.a: $(ZLIB_DEP) $(OPENSSL_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(PROTOBUF_DEP) $(LIBGRPC++_OBJS) $(LIBGPR_OBJS) $(LIBGRPC_ABSEIL_OBJS) $(ZLIB_MERGE_OBJS) $(CARES_MERGE_OBJS) $(ADDRESS_SORTING_MERGE_OBJS) $(RE2_MERGE_OBJS) $(UPB_MERGE_OBJS)
  2633. $(E) "[AR] Creating $@"
  2634. $(Q) mkdir -p `dirname $@`
  2635. $(Q) rm -f $(LIBDIR)/$(CONFIG)/libgrpc++.a
  2636. $(Q) $(AR) $(ARFLAGS) $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBGRPC++_OBJS) $(LIBGPR_OBJS) $(LIBGRPC_ABSEIL_OBJS) $(ZLIB_MERGE_OBJS) $(CARES_MERGE_OBJS) $(ADDRESS_SORTING_MERGE_OBJS) $(RE2_MERGE_OBJS) $(UPB_MERGE_OBJS)
  2637. ifeq ($(SYSTEM),Darwin)
  2638. $(Q) ranlib -no_warning_for_no_symbols $(LIBDIR)/$(CONFIG)/libgrpc++.a
  2639. endif
  2640. ifeq ($(SYSTEM),MINGW32)
  2641. $(LIBDIR)/$(CONFIG)/grpc++$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP): $(LIBGRPC++_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(PROTOBUF_DEP) $(LIBDIR)/$(CONFIG)/grpc$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/gpr$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/address_sorting$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/upb$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(OPENSSL_DEP)
  2642. $(E) "[LD] Linking $@"
  2643. $(Q) mkdir -p `dirname $@`
  2644. $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,--output-def=$(LIBDIR)/$(CONFIG)/grpc++$(SHARED_VERSION_CPP).def -Wl,--out-implib=$(LIBDIR)/$(CONFIG)/libgrpc++$(SHARED_VERSION_CPP)-dll.a -o $(LIBDIR)/$(CONFIG)/grpc++$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBGRPC++_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) -lgrpc$(SHARED_VERSION_CORE)-dll -lgpr$(SHARED_VERSION_CORE)-dll -laddress_sorting$(SHARED_VERSION_CORE)-dll -lupb$(SHARED_VERSION_CORE)-dll
  2645. else
  2646. $(LIBDIR)/$(CONFIG)/libgrpc++$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP): $(LIBGRPC++_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(PROTOBUF_DEP) $(LIBDIR)/$(CONFIG)/libgrpc.$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libgpr.$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libaddress_sorting.$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libupb.$(SHARED_EXT_CORE) $(OPENSSL_DEP)
  2647. $(E) "[LD] Linking $@"
  2648. $(Q) mkdir -p `dirname $@`
  2649. ifeq ($(SYSTEM),Darwin)
  2650. $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -install_name $(SHARED_PREFIX)grpc++$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) -dynamiclib -o $(LIBDIR)/$(CONFIG)/libgrpc++$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBGRPC++_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) -lgrpc -lgpr -laddress_sorting -lupb
  2651. else
  2652. $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,-soname,libgrpc++.so.1 -o $(LIBDIR)/$(CONFIG)/libgrpc++$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBGRPC++_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) -lgrpc -lgpr -laddress_sorting -lupb
  2653. $(Q) ln -sf $(SHARED_PREFIX)grpc++$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBDIR)/$(CONFIG)/libgrpc++$(SHARED_VERSION_CPP).so.1
  2654. $(Q) ln -sf $(SHARED_PREFIX)grpc++$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBDIR)/$(CONFIG)/libgrpc++$(SHARED_VERSION_CPP).so
  2655. endif
  2656. endif
  2657. endif
  2658. endif
  2659. ifneq ($(NO_SECURE),true)
  2660. ifneq ($(NO_DEPS),true)
  2661. -include $(LIBGRPC++_OBJS:.o=.dep)
  2662. endif
  2663. endif
  2664. # end of build recipe for library "grpc++"
  2665. # start of build recipe for library "grpc++_alts" (generated by makelib(lib) template function)
  2666. LIBGRPC++_ALTS_SRC = \
  2667. src/cpp/common/alts_context.cc \
  2668. src/cpp/common/alts_util.cc \
  2669. PUBLIC_HEADERS_CXX += \
  2670. include/grpcpp/security/alts_context.h \
  2671. include/grpcpp/security/alts_util.h \
  2672. LIBGRPC++_ALTS_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBGRPC++_ALTS_SRC))))
  2673. ifeq ($(NO_SECURE),true)
  2674. # You can't build secure libraries if you don't have OpenSSL.
  2675. $(LIBDIR)/$(CONFIG)/libgrpc++_alts.a: openssl_dep_error
  2676. $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc++_alts$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP): openssl_dep_error
  2677. else
  2678. ifeq ($(NO_PROTOBUF),true)
  2679. # You can't build a C++ library if you don't have protobuf - a bit overreached, but still okay.
  2680. $(LIBDIR)/$(CONFIG)/libgrpc++_alts.a: protobuf_dep_error
  2681. $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc++_alts$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP): protobuf_dep_error
  2682. else
  2683. $(LIBDIR)/$(CONFIG)/libgrpc++_alts.a: $(ZLIB_DEP) $(OPENSSL_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(PROTOBUF_DEP) $(LIBGRPC++_ALTS_OBJS) $(LIBGPR_OBJS) $(LIBGRPC_ABSEIL_OBJS) $(ZLIB_MERGE_OBJS) $(CARES_MERGE_OBJS) $(ADDRESS_SORTING_MERGE_OBJS) $(RE2_MERGE_OBJS) $(UPB_MERGE_OBJS)
  2684. $(E) "[AR] Creating $@"
  2685. $(Q) mkdir -p `dirname $@`
  2686. $(Q) rm -f $(LIBDIR)/$(CONFIG)/libgrpc++_alts.a
  2687. $(Q) $(AR) $(ARFLAGS) $(LIBDIR)/$(CONFIG)/libgrpc++_alts.a $(LIBGRPC++_ALTS_OBJS) $(LIBGPR_OBJS) $(LIBGRPC_ABSEIL_OBJS) $(ZLIB_MERGE_OBJS) $(CARES_MERGE_OBJS) $(ADDRESS_SORTING_MERGE_OBJS) $(RE2_MERGE_OBJS) $(UPB_MERGE_OBJS)
  2688. ifeq ($(SYSTEM),Darwin)
  2689. $(Q) ranlib -no_warning_for_no_symbols $(LIBDIR)/$(CONFIG)/libgrpc++_alts.a
  2690. endif
  2691. ifeq ($(SYSTEM),MINGW32)
  2692. $(LIBDIR)/$(CONFIG)/grpc++_alts$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP): $(LIBGRPC++_ALTS_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(PROTOBUF_DEP) $(LIBDIR)/$(CONFIG)/grpc++$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBDIR)/$(CONFIG)/grpc$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/gpr$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/address_sorting$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/upb$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(OPENSSL_DEP)
  2693. $(E) "[LD] Linking $@"
  2694. $(Q) mkdir -p `dirname $@`
  2695. $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,--output-def=$(LIBDIR)/$(CONFIG)/grpc++_alts$(SHARED_VERSION_CPP).def -Wl,--out-implib=$(LIBDIR)/$(CONFIG)/libgrpc++_alts$(SHARED_VERSION_CPP)-dll.a -o $(LIBDIR)/$(CONFIG)/grpc++_alts$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBGRPC++_ALTS_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) -lgrpc++$(SHARED_VERSION_CPP)-dll -lgrpc$(SHARED_VERSION_CORE)-dll -lgpr$(SHARED_VERSION_CORE)-dll -laddress_sorting$(SHARED_VERSION_CORE)-dll -lupb$(SHARED_VERSION_CORE)-dll
  2696. else
  2697. $(LIBDIR)/$(CONFIG)/libgrpc++_alts$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP): $(LIBGRPC++_ALTS_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(PROTOBUF_DEP) $(LIBDIR)/$(CONFIG)/libgrpc++.$(SHARED_EXT_CPP) $(LIBDIR)/$(CONFIG)/libgrpc.$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libgpr.$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libaddress_sorting.$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libupb.$(SHARED_EXT_CORE) $(OPENSSL_DEP)
  2698. $(E) "[LD] Linking $@"
  2699. $(Q) mkdir -p `dirname $@`
  2700. ifeq ($(SYSTEM),Darwin)
  2701. $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -install_name $(SHARED_PREFIX)grpc++_alts$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) -dynamiclib -o $(LIBDIR)/$(CONFIG)/libgrpc++_alts$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBGRPC++_ALTS_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) -lgrpc++ -lgrpc -lgpr -laddress_sorting -lupb
  2702. else
  2703. $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,-soname,libgrpc++_alts.so.1 -o $(LIBDIR)/$(CONFIG)/libgrpc++_alts$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBGRPC++_ALTS_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) -lgrpc++ -lgrpc -lgpr -laddress_sorting -lupb
  2704. $(Q) ln -sf $(SHARED_PREFIX)grpc++_alts$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBDIR)/$(CONFIG)/libgrpc++_alts$(SHARED_VERSION_CPP).so.1
  2705. $(Q) ln -sf $(SHARED_PREFIX)grpc++_alts$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBDIR)/$(CONFIG)/libgrpc++_alts$(SHARED_VERSION_CPP).so
  2706. endif
  2707. endif
  2708. endif
  2709. endif
  2710. ifneq ($(NO_SECURE),true)
  2711. ifneq ($(NO_DEPS),true)
  2712. -include $(LIBGRPC++_ALTS_OBJS:.o=.dep)
  2713. endif
  2714. endif
  2715. # end of build recipe for library "grpc++_alts"
  2716. # start of build recipe for library "grpc++_error_details" (generated by makelib(lib) template function)
  2717. LIBGRPC++_ERROR_DETAILS_SRC = \
  2718. $(GENDIR)/src/proto/grpc/status/status.pb.cc $(GENDIR)/src/proto/grpc/status/status.grpc.pb.cc \
  2719. src/cpp/util/error_details.cc \
  2720. PUBLIC_HEADERS_CXX += \
  2721. include/grpc++/support/error_details.h \
  2722. include/grpcpp/support/error_details.h \
  2723. LIBGRPC++_ERROR_DETAILS_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBGRPC++_ERROR_DETAILS_SRC))))
  2724. ifeq ($(NO_SECURE),true)
  2725. # You can't build secure libraries if you don't have OpenSSL.
  2726. $(LIBDIR)/$(CONFIG)/libgrpc++_error_details.a: openssl_dep_error
  2727. $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc++_error_details$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP): openssl_dep_error
  2728. else
  2729. ifeq ($(NO_PROTOBUF),true)
  2730. # You can't build a C++ library if you don't have protobuf - a bit overreached, but still okay.
  2731. $(LIBDIR)/$(CONFIG)/libgrpc++_error_details.a: protobuf_dep_error
  2732. $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc++_error_details$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP): protobuf_dep_error
  2733. else
  2734. $(LIBDIR)/$(CONFIG)/libgrpc++_error_details.a: $(ZLIB_DEP) $(OPENSSL_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(PROTOBUF_DEP) $(LIBGRPC++_ERROR_DETAILS_OBJS)
  2735. $(E) "[AR] Creating $@"
  2736. $(Q) mkdir -p `dirname $@`
  2737. $(Q) rm -f $(LIBDIR)/$(CONFIG)/libgrpc++_error_details.a
  2738. $(Q) $(AR) $(ARFLAGS) $(LIBDIR)/$(CONFIG)/libgrpc++_error_details.a $(LIBGRPC++_ERROR_DETAILS_OBJS)
  2739. ifeq ($(SYSTEM),Darwin)
  2740. $(Q) ranlib -no_warning_for_no_symbols $(LIBDIR)/$(CONFIG)/libgrpc++_error_details.a
  2741. endif
  2742. ifeq ($(SYSTEM),MINGW32)
  2743. $(LIBDIR)/$(CONFIG)/grpc++_error_details$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP): $(LIBGRPC++_ERROR_DETAILS_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(PROTOBUF_DEP) $(LIBDIR)/$(CONFIG)/grpc++$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBDIR)/$(CONFIG)/grpc$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/gpr$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/address_sorting$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/upb$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(OPENSSL_DEP)
  2744. $(E) "[LD] Linking $@"
  2745. $(Q) mkdir -p `dirname $@`
  2746. $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,--output-def=$(LIBDIR)/$(CONFIG)/grpc++_error_details$(SHARED_VERSION_CPP).def -Wl,--out-implib=$(LIBDIR)/$(CONFIG)/libgrpc++_error_details$(SHARED_VERSION_CPP)-dll.a -o $(LIBDIR)/$(CONFIG)/grpc++_error_details$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBGRPC++_ERROR_DETAILS_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) -lgrpc++$(SHARED_VERSION_CPP)-dll -lgrpc$(SHARED_VERSION_CORE)-dll -lgpr$(SHARED_VERSION_CORE)-dll -laddress_sorting$(SHARED_VERSION_CORE)-dll -lupb$(SHARED_VERSION_CORE)-dll
  2747. else
  2748. $(LIBDIR)/$(CONFIG)/libgrpc++_error_details$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP): $(LIBGRPC++_ERROR_DETAILS_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(PROTOBUF_DEP) $(LIBDIR)/$(CONFIG)/libgrpc++.$(SHARED_EXT_CPP) $(LIBDIR)/$(CONFIG)/libgrpc.$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libgpr.$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libaddress_sorting.$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libupb.$(SHARED_EXT_CORE) $(OPENSSL_DEP)
  2749. $(E) "[LD] Linking $@"
  2750. $(Q) mkdir -p `dirname $@`
  2751. ifeq ($(SYSTEM),Darwin)
  2752. $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -install_name $(SHARED_PREFIX)grpc++_error_details$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) -dynamiclib -o $(LIBDIR)/$(CONFIG)/libgrpc++_error_details$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBGRPC++_ERROR_DETAILS_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) -lgrpc++ -lgrpc -lgpr -laddress_sorting -lupb
  2753. else
  2754. $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,-soname,libgrpc++_error_details.so.1 -o $(LIBDIR)/$(CONFIG)/libgrpc++_error_details$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBGRPC++_ERROR_DETAILS_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) -lgrpc++ -lgrpc -lgpr -laddress_sorting -lupb
  2755. $(Q) ln -sf $(SHARED_PREFIX)grpc++_error_details$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBDIR)/$(CONFIG)/libgrpc++_error_details$(SHARED_VERSION_CPP).so.1
  2756. $(Q) ln -sf $(SHARED_PREFIX)grpc++_error_details$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBDIR)/$(CONFIG)/libgrpc++_error_details$(SHARED_VERSION_CPP).so
  2757. endif
  2758. endif
  2759. endif
  2760. endif
  2761. ifneq ($(NO_SECURE),true)
  2762. ifneq ($(NO_DEPS),true)
  2763. -include $(LIBGRPC++_ERROR_DETAILS_OBJS:.o=.dep)
  2764. endif
  2765. endif
  2766. $(OBJDIR)/$(CONFIG)/src/cpp/util/error_details.o: $(GENDIR)/src/proto/grpc/status/status.pb.cc $(GENDIR)/src/proto/grpc/status/status.grpc.pb.cc
  2767. # end of build recipe for library "grpc++_error_details"
  2768. # start of build recipe for library "grpc++_reflection" (generated by makelib(lib) template function)
  2769. LIBGRPC++_REFLECTION_SRC = \
  2770. $(GENDIR)/src/proto/grpc/reflection/v1alpha/reflection.pb.cc $(GENDIR)/src/proto/grpc/reflection/v1alpha/reflection.grpc.pb.cc \
  2771. src/cpp/ext/proto_server_reflection.cc \
  2772. src/cpp/ext/proto_server_reflection_plugin.cc \
  2773. PUBLIC_HEADERS_CXX += \
  2774. include/grpc++/ext/proto_server_reflection_plugin.h \
  2775. include/grpcpp/ext/proto_server_reflection_plugin.h \
  2776. LIBGRPC++_REFLECTION_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBGRPC++_REFLECTION_SRC))))
  2777. ifeq ($(NO_SECURE),true)
  2778. # You can't build secure libraries if you don't have OpenSSL.
  2779. $(LIBDIR)/$(CONFIG)/libgrpc++_reflection.a: openssl_dep_error
  2780. $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc++_reflection$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP): openssl_dep_error
  2781. else
  2782. ifeq ($(NO_PROTOBUF),true)
  2783. # You can't build a C++ library if you don't have protobuf - a bit overreached, but still okay.
  2784. $(LIBDIR)/$(CONFIG)/libgrpc++_reflection.a: protobuf_dep_error
  2785. $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc++_reflection$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP): protobuf_dep_error
  2786. else
  2787. $(LIBDIR)/$(CONFIG)/libgrpc++_reflection.a: $(ZLIB_DEP) $(OPENSSL_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(PROTOBUF_DEP) $(LIBGRPC++_REFLECTION_OBJS)
  2788. $(E) "[AR] Creating $@"
  2789. $(Q) mkdir -p `dirname $@`
  2790. $(Q) rm -f $(LIBDIR)/$(CONFIG)/libgrpc++_reflection.a
  2791. $(Q) $(AR) $(ARFLAGS) $(LIBDIR)/$(CONFIG)/libgrpc++_reflection.a $(LIBGRPC++_REFLECTION_OBJS)
  2792. ifeq ($(SYSTEM),Darwin)
  2793. $(Q) ranlib -no_warning_for_no_symbols $(LIBDIR)/$(CONFIG)/libgrpc++_reflection.a
  2794. endif
  2795. ifeq ($(SYSTEM),MINGW32)
  2796. $(LIBDIR)/$(CONFIG)/grpc++_reflection$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP): $(LIBGRPC++_REFLECTION_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(PROTOBUF_DEP) $(LIBDIR)/$(CONFIG)/grpc++$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBDIR)/$(CONFIG)/grpc$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/gpr$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/address_sorting$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/upb$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(OPENSSL_DEP)
  2797. $(E) "[LD] Linking $@"
  2798. $(Q) mkdir -p `dirname $@`
  2799. $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,--output-def=$(LIBDIR)/$(CONFIG)/grpc++_reflection$(SHARED_VERSION_CPP).def -Wl,--out-implib=$(LIBDIR)/$(CONFIG)/libgrpc++_reflection$(SHARED_VERSION_CPP)-dll.a -o $(LIBDIR)/$(CONFIG)/grpc++_reflection$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBGRPC++_REFLECTION_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) -lgrpc++$(SHARED_VERSION_CPP)-dll -lgrpc$(SHARED_VERSION_CORE)-dll -lgpr$(SHARED_VERSION_CORE)-dll -laddress_sorting$(SHARED_VERSION_CORE)-dll -lupb$(SHARED_VERSION_CORE)-dll
  2800. else
  2801. $(LIBDIR)/$(CONFIG)/libgrpc++_reflection$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP): $(LIBGRPC++_REFLECTION_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(PROTOBUF_DEP) $(LIBDIR)/$(CONFIG)/libgrpc++.$(SHARED_EXT_CPP) $(LIBDIR)/$(CONFIG)/libgrpc.$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libgpr.$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libaddress_sorting.$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libupb.$(SHARED_EXT_CORE) $(OPENSSL_DEP)
  2802. $(E) "[LD] Linking $@"
  2803. $(Q) mkdir -p `dirname $@`
  2804. ifeq ($(SYSTEM),Darwin)
  2805. $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -install_name $(SHARED_PREFIX)grpc++_reflection$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) -dynamiclib -o $(LIBDIR)/$(CONFIG)/libgrpc++_reflection$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBGRPC++_REFLECTION_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) -lgrpc++ -lgrpc -lgpr -laddress_sorting -lupb
  2806. else
  2807. $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,-soname,libgrpc++_reflection.so.1 -o $(LIBDIR)/$(CONFIG)/libgrpc++_reflection$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBGRPC++_REFLECTION_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) -lgrpc++ -lgrpc -lgpr -laddress_sorting -lupb
  2808. $(Q) ln -sf $(SHARED_PREFIX)grpc++_reflection$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBDIR)/$(CONFIG)/libgrpc++_reflection$(SHARED_VERSION_CPP).so.1
  2809. $(Q) ln -sf $(SHARED_PREFIX)grpc++_reflection$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBDIR)/$(CONFIG)/libgrpc++_reflection$(SHARED_VERSION_CPP).so
  2810. endif
  2811. endif
  2812. endif
  2813. endif
  2814. ifneq ($(NO_SECURE),true)
  2815. ifneq ($(NO_DEPS),true)
  2816. -include $(LIBGRPC++_REFLECTION_OBJS:.o=.dep)
  2817. endif
  2818. endif
  2819. $(OBJDIR)/$(CONFIG)/src/cpp/ext/proto_server_reflection.o: $(GENDIR)/src/proto/grpc/reflection/v1alpha/reflection.pb.cc $(GENDIR)/src/proto/grpc/reflection/v1alpha/reflection.grpc.pb.cc
  2820. $(OBJDIR)/$(CONFIG)/src/cpp/ext/proto_server_reflection_plugin.o: $(GENDIR)/src/proto/grpc/reflection/v1alpha/reflection.pb.cc $(GENDIR)/src/proto/grpc/reflection/v1alpha/reflection.grpc.pb.cc
  2821. # end of build recipe for library "grpc++_reflection"
  2822. # start of build recipe for library "grpc++_unsecure" (generated by makelib(lib) template function)
  2823. LIBGRPC++_UNSECURE_SRC = \
  2824. src/cpp/client/channel_cc.cc \
  2825. src/cpp/client/client_callback.cc \
  2826. src/cpp/client/client_context.cc \
  2827. src/cpp/client/client_interceptor.cc \
  2828. src/cpp/client/create_channel.cc \
  2829. src/cpp/client/create_channel_internal.cc \
  2830. src/cpp/client/create_channel_posix.cc \
  2831. src/cpp/client/credentials_cc.cc \
  2832. src/cpp/client/insecure_credentials.cc \
  2833. src/cpp/codegen/codegen_init.cc \
  2834. src/cpp/common/alarm.cc \
  2835. src/cpp/common/channel_arguments.cc \
  2836. src/cpp/common/channel_filter.cc \
  2837. src/cpp/common/completion_queue_cc.cc \
  2838. src/cpp/common/core_codegen.cc \
  2839. src/cpp/common/insecure_create_auth_context.cc \
  2840. src/cpp/common/resource_quota_cc.cc \
  2841. src/cpp/common/rpc_method.cc \
  2842. src/cpp/common/validate_service_config.cc \
  2843. src/cpp/common/version_cc.cc \
  2844. src/cpp/server/async_generic_service.cc \
  2845. src/cpp/server/channel_argument_option.cc \
  2846. src/cpp/server/create_default_thread_pool.cc \
  2847. src/cpp/server/dynamic_thread_pool.cc \
  2848. src/cpp/server/external_connection_acceptor_impl.cc \
  2849. src/cpp/server/health/default_health_check_service.cc \
  2850. src/cpp/server/health/health_check_service.cc \
  2851. src/cpp/server/health/health_check_service_server_builder_option.cc \
  2852. src/cpp/server/insecure_server_credentials.cc \
  2853. src/cpp/server/server_builder.cc \
  2854. src/cpp/server/server_callback.cc \
  2855. src/cpp/server/server_cc.cc \
  2856. src/cpp/server/server_context.cc \
  2857. src/cpp/server/server_credentials.cc \
  2858. src/cpp/server/server_posix.cc \
  2859. src/cpp/thread_manager/thread_manager.cc \
  2860. src/cpp/util/byte_buffer_cc.cc \
  2861. src/cpp/util/status.cc \
  2862. src/cpp/util/string_ref.cc \
  2863. src/cpp/util/time_cc.cc \
  2864. PUBLIC_HEADERS_CXX += \
  2865. include/grpc++/alarm.h \
  2866. include/grpc++/channel.h \
  2867. include/grpc++/client_context.h \
  2868. include/grpc++/completion_queue.h \
  2869. include/grpc++/create_channel.h \
  2870. include/grpc++/create_channel_posix.h \
  2871. include/grpc++/ext/health_check_service_server_builder_option.h \
  2872. include/grpc++/generic/async_generic_service.h \
  2873. include/grpc++/generic/generic_stub.h \
  2874. include/grpc++/grpc++.h \
  2875. include/grpc++/health_check_service_interface.h \
  2876. include/grpc++/impl/call.h \
  2877. include/grpc++/impl/channel_argument_option.h \
  2878. include/grpc++/impl/client_unary_call.h \
  2879. include/grpc++/impl/codegen/async_stream.h \
  2880. include/grpc++/impl/codegen/async_unary_call.h \
  2881. include/grpc++/impl/codegen/byte_buffer.h \
  2882. include/grpc++/impl/codegen/call.h \
  2883. include/grpc++/impl/codegen/call_hook.h \
  2884. include/grpc++/impl/codegen/channel_interface.h \
  2885. include/grpc++/impl/codegen/client_context.h \
  2886. include/grpc++/impl/codegen/client_unary_call.h \
  2887. include/grpc++/impl/codegen/completion_queue.h \
  2888. include/grpc++/impl/codegen/completion_queue_tag.h \
  2889. include/grpc++/impl/codegen/config.h \
  2890. include/grpc++/impl/codegen/config_protobuf.h \
  2891. include/grpc++/impl/codegen/core_codegen.h \
  2892. include/grpc++/impl/codegen/core_codegen_interface.h \
  2893. include/grpc++/impl/codegen/create_auth_context.h \
  2894. include/grpc++/impl/codegen/grpc_library.h \
  2895. include/grpc++/impl/codegen/metadata_map.h \
  2896. include/grpc++/impl/codegen/method_handler_impl.h \
  2897. include/grpc++/impl/codegen/proto_utils.h \
  2898. include/grpc++/impl/codegen/rpc_method.h \
  2899. include/grpc++/impl/codegen/rpc_service_method.h \
  2900. include/grpc++/impl/codegen/security/auth_context.h \
  2901. include/grpc++/impl/codegen/serialization_traits.h \
  2902. include/grpc++/impl/codegen/server_context.h \
  2903. include/grpc++/impl/codegen/server_interface.h \
  2904. include/grpc++/impl/codegen/service_type.h \
  2905. include/grpc++/impl/codegen/slice.h \
  2906. include/grpc++/impl/codegen/status.h \
  2907. include/grpc++/impl/codegen/status_code_enum.h \
  2908. include/grpc++/impl/codegen/string_ref.h \
  2909. include/grpc++/impl/codegen/stub_options.h \
  2910. include/grpc++/impl/codegen/sync_stream.h \
  2911. include/grpc++/impl/codegen/time.h \
  2912. include/grpc++/impl/grpc_library.h \
  2913. include/grpc++/impl/method_handler_impl.h \
  2914. include/grpc++/impl/rpc_method.h \
  2915. include/grpc++/impl/rpc_service_method.h \
  2916. include/grpc++/impl/serialization_traits.h \
  2917. include/grpc++/impl/server_builder_option.h \
  2918. include/grpc++/impl/server_builder_plugin.h \
  2919. include/grpc++/impl/server_initializer.h \
  2920. include/grpc++/impl/service_type.h \
  2921. include/grpc++/resource_quota.h \
  2922. include/grpc++/security/auth_context.h \
  2923. include/grpc++/security/auth_metadata_processor.h \
  2924. include/grpc++/security/credentials.h \
  2925. include/grpc++/security/server_credentials.h \
  2926. include/grpc++/server.h \
  2927. include/grpc++/server_builder.h \
  2928. include/grpc++/server_context.h \
  2929. include/grpc++/server_posix.h \
  2930. include/grpc++/support/async_stream.h \
  2931. include/grpc++/support/async_unary_call.h \
  2932. include/grpc++/support/byte_buffer.h \
  2933. include/grpc++/support/channel_arguments.h \
  2934. include/grpc++/support/config.h \
  2935. include/grpc++/support/slice.h \
  2936. include/grpc++/support/status.h \
  2937. include/grpc++/support/status_code_enum.h \
  2938. include/grpc++/support/string_ref.h \
  2939. include/grpc++/support/stub_options.h \
  2940. include/grpc++/support/sync_stream.h \
  2941. include/grpc++/support/time.h \
  2942. include/grpcpp/alarm.h \
  2943. include/grpcpp/alarm_impl.h \
  2944. include/grpcpp/channel.h \
  2945. include/grpcpp/client_context.h \
  2946. include/grpcpp/completion_queue.h \
  2947. include/grpcpp/create_channel.h \
  2948. include/grpcpp/create_channel_posix.h \
  2949. include/grpcpp/ext/health_check_service_server_builder_option.h \
  2950. include/grpcpp/generic/async_generic_service.h \
  2951. include/grpcpp/generic/generic_stub.h \
  2952. include/grpcpp/grpcpp.h \
  2953. include/grpcpp/health_check_service_interface.h \
  2954. include/grpcpp/impl/call.h \
  2955. include/grpcpp/impl/channel_argument_option.h \
  2956. include/grpcpp/impl/client_unary_call.h \
  2957. include/grpcpp/impl/codegen/async_generic_service.h \
  2958. include/grpcpp/impl/codegen/async_stream.h \
  2959. include/grpcpp/impl/codegen/async_unary_call.h \
  2960. include/grpcpp/impl/codegen/byte_buffer.h \
  2961. include/grpcpp/impl/codegen/call.h \
  2962. include/grpcpp/impl/codegen/call_hook.h \
  2963. include/grpcpp/impl/codegen/call_op_set.h \
  2964. include/grpcpp/impl/codegen/call_op_set_interface.h \
  2965. include/grpcpp/impl/codegen/callback_common.h \
  2966. include/grpcpp/impl/codegen/channel_interface.h \
  2967. include/grpcpp/impl/codegen/client_callback.h \
  2968. include/grpcpp/impl/codegen/client_context.h \
  2969. include/grpcpp/impl/codegen/client_interceptor.h \
  2970. include/grpcpp/impl/codegen/client_unary_call.h \
  2971. include/grpcpp/impl/codegen/completion_queue.h \
  2972. include/grpcpp/impl/codegen/completion_queue_tag.h \
  2973. include/grpcpp/impl/codegen/config.h \
  2974. include/grpcpp/impl/codegen/config_protobuf.h \
  2975. include/grpcpp/impl/codegen/core_codegen.h \
  2976. include/grpcpp/impl/codegen/core_codegen_interface.h \
  2977. include/grpcpp/impl/codegen/create_auth_context.h \
  2978. include/grpcpp/impl/codegen/delegating_channel.h \
  2979. include/grpcpp/impl/codegen/grpc_library.h \
  2980. include/grpcpp/impl/codegen/intercepted_channel.h \
  2981. include/grpcpp/impl/codegen/interceptor.h \
  2982. include/grpcpp/impl/codegen/interceptor_common.h \
  2983. include/grpcpp/impl/codegen/message_allocator.h \
  2984. include/grpcpp/impl/codegen/metadata_map.h \
  2985. include/grpcpp/impl/codegen/method_handler.h \
  2986. include/grpcpp/impl/codegen/proto_buffer_reader.h \
  2987. include/grpcpp/impl/codegen/proto_buffer_writer.h \
  2988. include/grpcpp/impl/codegen/proto_utils.h \
  2989. include/grpcpp/impl/codegen/rpc_method.h \
  2990. include/grpcpp/impl/codegen/rpc_service_method.h \
  2991. include/grpcpp/impl/codegen/security/auth_context.h \
  2992. include/grpcpp/impl/codegen/serialization_traits.h \
  2993. include/grpcpp/impl/codegen/server_callback.h \
  2994. include/grpcpp/impl/codegen/server_callback_handlers.h \
  2995. include/grpcpp/impl/codegen/server_context.h \
  2996. include/grpcpp/impl/codegen/server_interceptor.h \
  2997. include/grpcpp/impl/codegen/server_interface.h \
  2998. include/grpcpp/impl/codegen/service_type.h \
  2999. include/grpcpp/impl/codegen/slice.h \
  3000. include/grpcpp/impl/codegen/status.h \
  3001. include/grpcpp/impl/codegen/status_code_enum.h \
  3002. include/grpcpp/impl/codegen/string_ref.h \
  3003. include/grpcpp/impl/codegen/stub_options.h \
  3004. include/grpcpp/impl/codegen/sync.h \
  3005. include/grpcpp/impl/codegen/sync_stream.h \
  3006. include/grpcpp/impl/codegen/time.h \
  3007. include/grpcpp/impl/grpc_library.h \
  3008. include/grpcpp/impl/method_handler_impl.h \
  3009. include/grpcpp/impl/rpc_method.h \
  3010. include/grpcpp/impl/rpc_service_method.h \
  3011. include/grpcpp/impl/serialization_traits.h \
  3012. include/grpcpp/impl/server_builder_option.h \
  3013. include/grpcpp/impl/server_builder_option_impl.h \
  3014. include/grpcpp/impl/server_builder_plugin.h \
  3015. include/grpcpp/impl/server_initializer.h \
  3016. include/grpcpp/impl/server_initializer_impl.h \
  3017. include/grpcpp/impl/service_type.h \
  3018. include/grpcpp/resource_quota.h \
  3019. include/grpcpp/security/auth_context.h \
  3020. include/grpcpp/security/auth_metadata_processor.h \
  3021. include/grpcpp/security/credentials.h \
  3022. include/grpcpp/security/server_credentials.h \
  3023. include/grpcpp/security/tls_credentials_options.h \
  3024. include/grpcpp/server.h \
  3025. include/grpcpp/server_builder.h \
  3026. include/grpcpp/server_context.h \
  3027. include/grpcpp/server_posix.h \
  3028. include/grpcpp/support/async_stream.h \
  3029. include/grpcpp/support/async_unary_call.h \
  3030. include/grpcpp/support/byte_buffer.h \
  3031. include/grpcpp/support/channel_arguments.h \
  3032. include/grpcpp/support/client_callback.h \
  3033. include/grpcpp/support/client_interceptor.h \
  3034. include/grpcpp/support/config.h \
  3035. include/grpcpp/support/interceptor.h \
  3036. include/grpcpp/support/message_allocator.h \
  3037. include/grpcpp/support/method_handler.h \
  3038. include/grpcpp/support/proto_buffer_reader.h \
  3039. include/grpcpp/support/proto_buffer_writer.h \
  3040. include/grpcpp/support/server_callback.h \
  3041. include/grpcpp/support/server_interceptor.h \
  3042. include/grpcpp/support/slice.h \
  3043. include/grpcpp/support/status.h \
  3044. include/grpcpp/support/status_code_enum.h \
  3045. include/grpcpp/support/string_ref.h \
  3046. include/grpcpp/support/stub_options.h \
  3047. include/grpcpp/support/sync_stream.h \
  3048. include/grpcpp/support/time.h \
  3049. include/grpcpp/support/validate_service_config.h \
  3050. LIBGRPC++_UNSECURE_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBGRPC++_UNSECURE_SRC))))
  3051. ifeq ($(NO_PROTOBUF),true)
  3052. # You can't build a C++ library if you don't have protobuf - a bit overreached, but still okay.
  3053. $(LIBDIR)/$(CONFIG)/libgrpc++_unsecure.a: protobuf_dep_error
  3054. $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc++_unsecure$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP): protobuf_dep_error
  3055. else
  3056. $(LIBDIR)/$(CONFIG)/libgrpc++_unsecure.a: $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(PROTOBUF_DEP) $(LIBGRPC++_UNSECURE_OBJS) $(LIBGPR_OBJS) $(LIBGRPC_ABSEIL_OBJS) $(ZLIB_MERGE_OBJS) $(CARES_MERGE_OBJS) $(ADDRESS_SORTING_MERGE_OBJS) $(RE2_MERGE_OBJS) $(UPB_MERGE_OBJS)
  3057. $(E) "[AR] Creating $@"
  3058. $(Q) mkdir -p `dirname $@`
  3059. $(Q) rm -f $(LIBDIR)/$(CONFIG)/libgrpc++_unsecure.a
  3060. $(Q) $(AR) $(ARFLAGS) $(LIBDIR)/$(CONFIG)/libgrpc++_unsecure.a $(LIBGRPC++_UNSECURE_OBJS) $(LIBGPR_OBJS) $(LIBGRPC_ABSEIL_OBJS) $(ZLIB_MERGE_OBJS) $(CARES_MERGE_OBJS) $(ADDRESS_SORTING_MERGE_OBJS) $(RE2_MERGE_OBJS) $(UPB_MERGE_OBJS)
  3061. ifeq ($(SYSTEM),Darwin)
  3062. $(Q) ranlib -no_warning_for_no_symbols $(LIBDIR)/$(CONFIG)/libgrpc++_unsecure.a
  3063. endif
  3064. ifeq ($(SYSTEM),MINGW32)
  3065. $(LIBDIR)/$(CONFIG)/grpc++_unsecure$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP): $(LIBGRPC++_UNSECURE_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(PROTOBUF_DEP) $(LIBDIR)/$(CONFIG)/grpc_unsecure$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/gpr$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/address_sorting$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/upb$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE)
  3066. $(E) "[LD] Linking $@"
  3067. $(Q) mkdir -p `dirname $@`
  3068. $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,--output-def=$(LIBDIR)/$(CONFIG)/grpc++_unsecure$(SHARED_VERSION_CPP).def -Wl,--out-implib=$(LIBDIR)/$(CONFIG)/libgrpc++_unsecure$(SHARED_VERSION_CPP)-dll.a -o $(LIBDIR)/$(CONFIG)/grpc++_unsecure$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBGRPC++_UNSECURE_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) -lgrpc_unsecure$(SHARED_VERSION_CORE)-dll -lgpr$(SHARED_VERSION_CORE)-dll -laddress_sorting$(SHARED_VERSION_CORE)-dll -lupb$(SHARED_VERSION_CORE)-dll
  3069. else
  3070. $(LIBDIR)/$(CONFIG)/libgrpc++_unsecure$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP): $(LIBGRPC++_UNSECURE_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(PROTOBUF_DEP) $(LIBDIR)/$(CONFIG)/libgrpc_unsecure.$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libgpr.$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libaddress_sorting.$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libupb.$(SHARED_EXT_CORE)
  3071. $(E) "[LD] Linking $@"
  3072. $(Q) mkdir -p `dirname $@`
  3073. ifeq ($(SYSTEM),Darwin)
  3074. $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -install_name $(SHARED_PREFIX)grpc++_unsecure$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) -dynamiclib -o $(LIBDIR)/$(CONFIG)/libgrpc++_unsecure$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBGRPC++_UNSECURE_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) -lgrpc_unsecure -lgpr -laddress_sorting -lupb
  3075. else
  3076. $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,-soname,libgrpc++_unsecure.so.1 -o $(LIBDIR)/$(CONFIG)/libgrpc++_unsecure$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBGRPC++_UNSECURE_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) -lgrpc_unsecure -lgpr -laddress_sorting -lupb
  3077. $(Q) ln -sf $(SHARED_PREFIX)grpc++_unsecure$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBDIR)/$(CONFIG)/libgrpc++_unsecure$(SHARED_VERSION_CPP).so.1
  3078. $(Q) ln -sf $(SHARED_PREFIX)grpc++_unsecure$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBDIR)/$(CONFIG)/libgrpc++_unsecure$(SHARED_VERSION_CPP).so
  3079. endif
  3080. endif
  3081. endif
  3082. ifneq ($(NO_DEPS),true)
  3083. -include $(LIBGRPC++_UNSECURE_OBJS:.o=.dep)
  3084. endif
  3085. # end of build recipe for library "grpc++_unsecure"
  3086. # start of build recipe for library "grpc_plugin_support" (generated by makelib(lib) template function)
  3087. LIBGRPC_PLUGIN_SUPPORT_SRC = \
  3088. src/compiler/cpp_generator.cc \
  3089. src/compiler/csharp_generator.cc \
  3090. src/compiler/node_generator.cc \
  3091. src/compiler/objective_c_generator.cc \
  3092. src/compiler/php_generator.cc \
  3093. src/compiler/python_generator.cc \
  3094. src/compiler/ruby_generator.cc \
  3095. PUBLIC_HEADERS_CXX += \
  3096. include/grpc++/impl/codegen/config_protobuf.h \
  3097. include/grpcpp/impl/codegen/config_protobuf.h \
  3098. LIBGRPC_PLUGIN_SUPPORT_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBGRPC_PLUGIN_SUPPORT_SRC))))
  3099. ifeq ($(NO_PROTOBUF),true)
  3100. # You can't build a C++ library if you don't have protobuf - a bit overreached, but still okay.
  3101. $(LIBDIR)/$(CONFIG)/libgrpc_plugin_support.a: protobuf_dep_error
  3102. else
  3103. $(LIBDIR)/$(CONFIG)/libgrpc_plugin_support.a: $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(PROTOBUF_DEP) $(LIBGRPC_PLUGIN_SUPPORT_OBJS)
  3104. $(E) "[AR] Creating $@"
  3105. $(Q) mkdir -p `dirname $@`
  3106. $(Q) rm -f $(LIBDIR)/$(CONFIG)/libgrpc_plugin_support.a
  3107. $(Q) $(AR) $(ARFLAGS) $(LIBDIR)/$(CONFIG)/libgrpc_plugin_support.a $(LIBGRPC_PLUGIN_SUPPORT_OBJS)
  3108. ifeq ($(SYSTEM),Darwin)
  3109. $(Q) ranlib -no_warning_for_no_symbols $(LIBDIR)/$(CONFIG)/libgrpc_plugin_support.a
  3110. endif
  3111. endif
  3112. ifneq ($(NO_DEPS),true)
  3113. -include $(LIBGRPC_PLUGIN_SUPPORT_OBJS:.o=.dep)
  3114. endif
  3115. # end of build recipe for library "grpc_plugin_support"
  3116. # start of build recipe for library "grpcpp_channelz" (generated by makelib(lib) template function)
  3117. LIBGRPCPP_CHANNELZ_SRC = \
  3118. $(GENDIR)/src/proto/grpc/channelz/channelz.pb.cc $(GENDIR)/src/proto/grpc/channelz/channelz.grpc.pb.cc \
  3119. src/cpp/server/channelz/channelz_service.cc \
  3120. src/cpp/server/channelz/channelz_service_plugin.cc \
  3121. PUBLIC_HEADERS_CXX += \
  3122. include/grpcpp/ext/channelz_service_plugin.h \
  3123. include/grpcpp/ext/channelz_service_plugin_impl.h \
  3124. LIBGRPCPP_CHANNELZ_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBGRPCPP_CHANNELZ_SRC))))
  3125. ifeq ($(NO_SECURE),true)
  3126. # You can't build secure libraries if you don't have OpenSSL.
  3127. $(LIBDIR)/$(CONFIG)/libgrpcpp_channelz.a: openssl_dep_error
  3128. $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpcpp_channelz$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP): openssl_dep_error
  3129. else
  3130. ifeq ($(NO_PROTOBUF),true)
  3131. # You can't build a C++ library if you don't have protobuf - a bit overreached, but still okay.
  3132. $(LIBDIR)/$(CONFIG)/libgrpcpp_channelz.a: protobuf_dep_error
  3133. $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpcpp_channelz$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP): protobuf_dep_error
  3134. else
  3135. $(LIBDIR)/$(CONFIG)/libgrpcpp_channelz.a: $(ZLIB_DEP) $(OPENSSL_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(PROTOBUF_DEP) $(LIBGRPCPP_CHANNELZ_OBJS)
  3136. $(E) "[AR] Creating $@"
  3137. $(Q) mkdir -p `dirname $@`
  3138. $(Q) rm -f $(LIBDIR)/$(CONFIG)/libgrpcpp_channelz.a
  3139. $(Q) $(AR) $(ARFLAGS) $(LIBDIR)/$(CONFIG)/libgrpcpp_channelz.a $(LIBGRPCPP_CHANNELZ_OBJS)
  3140. ifeq ($(SYSTEM),Darwin)
  3141. $(Q) ranlib -no_warning_for_no_symbols $(LIBDIR)/$(CONFIG)/libgrpcpp_channelz.a
  3142. endif
  3143. ifeq ($(SYSTEM),MINGW32)
  3144. $(LIBDIR)/$(CONFIG)/grpcpp_channelz$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP): $(LIBGRPCPP_CHANNELZ_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(PROTOBUF_DEP) $(LIBDIR)/$(CONFIG)/grpc++$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBDIR)/$(CONFIG)/grpc$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/gpr$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/address_sorting$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/upb$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(OPENSSL_DEP)
  3145. $(E) "[LD] Linking $@"
  3146. $(Q) mkdir -p `dirname $@`
  3147. $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,--output-def=$(LIBDIR)/$(CONFIG)/grpcpp_channelz$(SHARED_VERSION_CPP).def -Wl,--out-implib=$(LIBDIR)/$(CONFIG)/libgrpcpp_channelz$(SHARED_VERSION_CPP)-dll.a -o $(LIBDIR)/$(CONFIG)/grpcpp_channelz$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBGRPCPP_CHANNELZ_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) -lgrpc++$(SHARED_VERSION_CPP)-dll -lgrpc$(SHARED_VERSION_CORE)-dll -lgpr$(SHARED_VERSION_CORE)-dll -laddress_sorting$(SHARED_VERSION_CORE)-dll -lupb$(SHARED_VERSION_CORE)-dll
  3148. else
  3149. $(LIBDIR)/$(CONFIG)/libgrpcpp_channelz$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP): $(LIBGRPCPP_CHANNELZ_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(PROTOBUF_DEP) $(LIBDIR)/$(CONFIG)/libgrpc++.$(SHARED_EXT_CPP) $(LIBDIR)/$(CONFIG)/libgrpc.$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libgpr.$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libaddress_sorting.$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libupb.$(SHARED_EXT_CORE) $(OPENSSL_DEP)
  3150. $(E) "[LD] Linking $@"
  3151. $(Q) mkdir -p `dirname $@`
  3152. ifeq ($(SYSTEM),Darwin)
  3153. $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -install_name $(SHARED_PREFIX)grpcpp_channelz$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) -dynamiclib -o $(LIBDIR)/$(CONFIG)/libgrpcpp_channelz$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBGRPCPP_CHANNELZ_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) -lgrpc++ -lgrpc -lgpr -laddress_sorting -lupb
  3154. else
  3155. $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,-soname,libgrpcpp_channelz.so.1 -o $(LIBDIR)/$(CONFIG)/libgrpcpp_channelz$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBGRPCPP_CHANNELZ_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) -lgrpc++ -lgrpc -lgpr -laddress_sorting -lupb
  3156. $(Q) ln -sf $(SHARED_PREFIX)grpcpp_channelz$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBDIR)/$(CONFIG)/libgrpcpp_channelz$(SHARED_VERSION_CPP).so.1
  3157. $(Q) ln -sf $(SHARED_PREFIX)grpcpp_channelz$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBDIR)/$(CONFIG)/libgrpcpp_channelz$(SHARED_VERSION_CPP).so
  3158. endif
  3159. endif
  3160. endif
  3161. endif
  3162. ifneq ($(NO_SECURE),true)
  3163. ifneq ($(NO_DEPS),true)
  3164. -include $(LIBGRPCPP_CHANNELZ_OBJS:.o=.dep)
  3165. endif
  3166. endif
  3167. $(OBJDIR)/$(CONFIG)/src/cpp/server/channelz/channelz_service.o: $(GENDIR)/src/proto/grpc/channelz/channelz.pb.cc $(GENDIR)/src/proto/grpc/channelz/channelz.grpc.pb.cc
  3168. $(OBJDIR)/$(CONFIG)/src/cpp/server/channelz/channelz_service_plugin.o: $(GENDIR)/src/proto/grpc/channelz/channelz.pb.cc $(GENDIR)/src/proto/grpc/channelz/channelz.grpc.pb.cc
  3169. # end of build recipe for library "grpcpp_channelz"
  3170. # start of build recipe for library "boringssl" (generated by makelib(lib) template function)
  3171. LIBBORINGSSL_SRC = \
  3172. third_party/boringssl-with-bazel/err_data.c \
  3173. third_party/boringssl-with-bazel/src/crypto/asn1/a_bitstr.c \
  3174. third_party/boringssl-with-bazel/src/crypto/asn1/a_bool.c \
  3175. third_party/boringssl-with-bazel/src/crypto/asn1/a_d2i_fp.c \
  3176. third_party/boringssl-with-bazel/src/crypto/asn1/a_dup.c \
  3177. third_party/boringssl-with-bazel/src/crypto/asn1/a_enum.c \
  3178. third_party/boringssl-with-bazel/src/crypto/asn1/a_gentm.c \
  3179. third_party/boringssl-with-bazel/src/crypto/asn1/a_i2d_fp.c \
  3180. third_party/boringssl-with-bazel/src/crypto/asn1/a_int.c \
  3181. third_party/boringssl-with-bazel/src/crypto/asn1/a_mbstr.c \
  3182. third_party/boringssl-with-bazel/src/crypto/asn1/a_object.c \
  3183. third_party/boringssl-with-bazel/src/crypto/asn1/a_octet.c \
  3184. third_party/boringssl-with-bazel/src/crypto/asn1/a_print.c \
  3185. third_party/boringssl-with-bazel/src/crypto/asn1/a_strnid.c \
  3186. third_party/boringssl-with-bazel/src/crypto/asn1/a_time.c \
  3187. third_party/boringssl-with-bazel/src/crypto/asn1/a_type.c \
  3188. third_party/boringssl-with-bazel/src/crypto/asn1/a_utctm.c \
  3189. third_party/boringssl-with-bazel/src/crypto/asn1/a_utf8.c \
  3190. third_party/boringssl-with-bazel/src/crypto/asn1/asn1_lib.c \
  3191. third_party/boringssl-with-bazel/src/crypto/asn1/asn1_par.c \
  3192. third_party/boringssl-with-bazel/src/crypto/asn1/asn_pack.c \
  3193. third_party/boringssl-with-bazel/src/crypto/asn1/f_enum.c \
  3194. third_party/boringssl-with-bazel/src/crypto/asn1/f_int.c \
  3195. third_party/boringssl-with-bazel/src/crypto/asn1/f_string.c \
  3196. third_party/boringssl-with-bazel/src/crypto/asn1/tasn_dec.c \
  3197. third_party/boringssl-with-bazel/src/crypto/asn1/tasn_enc.c \
  3198. third_party/boringssl-with-bazel/src/crypto/asn1/tasn_fre.c \
  3199. third_party/boringssl-with-bazel/src/crypto/asn1/tasn_new.c \
  3200. third_party/boringssl-with-bazel/src/crypto/asn1/tasn_typ.c \
  3201. third_party/boringssl-with-bazel/src/crypto/asn1/tasn_utl.c \
  3202. third_party/boringssl-with-bazel/src/crypto/asn1/time_support.c \
  3203. third_party/boringssl-with-bazel/src/crypto/base64/base64.c \
  3204. third_party/boringssl-with-bazel/src/crypto/bio/bio.c \
  3205. third_party/boringssl-with-bazel/src/crypto/bio/bio_mem.c \
  3206. third_party/boringssl-with-bazel/src/crypto/bio/connect.c \
  3207. third_party/boringssl-with-bazel/src/crypto/bio/fd.c \
  3208. third_party/boringssl-with-bazel/src/crypto/bio/file.c \
  3209. third_party/boringssl-with-bazel/src/crypto/bio/hexdump.c \
  3210. third_party/boringssl-with-bazel/src/crypto/bio/pair.c \
  3211. third_party/boringssl-with-bazel/src/crypto/bio/printf.c \
  3212. third_party/boringssl-with-bazel/src/crypto/bio/socket.c \
  3213. third_party/boringssl-with-bazel/src/crypto/bio/socket_helper.c \
  3214. third_party/boringssl-with-bazel/src/crypto/bn_extra/bn_asn1.c \
  3215. third_party/boringssl-with-bazel/src/crypto/bn_extra/convert.c \
  3216. third_party/boringssl-with-bazel/src/crypto/buf/buf.c \
  3217. third_party/boringssl-with-bazel/src/crypto/bytestring/asn1_compat.c \
  3218. third_party/boringssl-with-bazel/src/crypto/bytestring/ber.c \
  3219. third_party/boringssl-with-bazel/src/crypto/bytestring/cbb.c \
  3220. third_party/boringssl-with-bazel/src/crypto/bytestring/cbs.c \
  3221. third_party/boringssl-with-bazel/src/crypto/bytestring/unicode.c \
  3222. third_party/boringssl-with-bazel/src/crypto/chacha/chacha.c \
  3223. third_party/boringssl-with-bazel/src/crypto/cipher_extra/cipher_extra.c \
  3224. third_party/boringssl-with-bazel/src/crypto/cipher_extra/derive_key.c \
  3225. third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_aesccm.c \
  3226. third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_aesctrhmac.c \
  3227. third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_aesgcmsiv.c \
  3228. third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_chacha20poly1305.c \
  3229. third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_null.c \
  3230. third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_rc2.c \
  3231. third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_rc4.c \
  3232. third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_tls.c \
  3233. third_party/boringssl-with-bazel/src/crypto/cipher_extra/tls_cbc.c \
  3234. third_party/boringssl-with-bazel/src/crypto/cmac/cmac.c \
  3235. third_party/boringssl-with-bazel/src/crypto/conf/conf.c \
  3236. third_party/boringssl-with-bazel/src/crypto/cpu-aarch64-fuchsia.c \
  3237. third_party/boringssl-with-bazel/src/crypto/cpu-aarch64-linux.c \
  3238. third_party/boringssl-with-bazel/src/crypto/cpu-arm-linux.c \
  3239. third_party/boringssl-with-bazel/src/crypto/cpu-arm.c \
  3240. third_party/boringssl-with-bazel/src/crypto/cpu-intel.c \
  3241. third_party/boringssl-with-bazel/src/crypto/cpu-ppc64le.c \
  3242. third_party/boringssl-with-bazel/src/crypto/crypto.c \
  3243. third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519.c \
  3244. third_party/boringssl-with-bazel/src/crypto/curve25519/spake25519.c \
  3245. third_party/boringssl-with-bazel/src/crypto/dh/check.c \
  3246. third_party/boringssl-with-bazel/src/crypto/dh/dh.c \
  3247. third_party/boringssl-with-bazel/src/crypto/dh/dh_asn1.c \
  3248. third_party/boringssl-with-bazel/src/crypto/dh/params.c \
  3249. third_party/boringssl-with-bazel/src/crypto/digest_extra/digest_extra.c \
  3250. third_party/boringssl-with-bazel/src/crypto/dsa/dsa.c \
  3251. third_party/boringssl-with-bazel/src/crypto/dsa/dsa_asn1.c \
  3252. third_party/boringssl-with-bazel/src/crypto/ec_extra/ec_asn1.c \
  3253. third_party/boringssl-with-bazel/src/crypto/ec_extra/ec_derive.c \
  3254. third_party/boringssl-with-bazel/src/crypto/ec_extra/hash_to_curve.c \
  3255. third_party/boringssl-with-bazel/src/crypto/ecdh_extra/ecdh_extra.c \
  3256. third_party/boringssl-with-bazel/src/crypto/ecdsa_extra/ecdsa_asn1.c \
  3257. third_party/boringssl-with-bazel/src/crypto/engine/engine.c \
  3258. third_party/boringssl-with-bazel/src/crypto/err/err.c \
  3259. third_party/boringssl-with-bazel/src/crypto/evp/digestsign.c \
  3260. third_party/boringssl-with-bazel/src/crypto/evp/evp.c \
  3261. third_party/boringssl-with-bazel/src/crypto/evp/evp_asn1.c \
  3262. third_party/boringssl-with-bazel/src/crypto/evp/evp_ctx.c \
  3263. third_party/boringssl-with-bazel/src/crypto/evp/p_dsa_asn1.c \
  3264. third_party/boringssl-with-bazel/src/crypto/evp/p_ec.c \
  3265. third_party/boringssl-with-bazel/src/crypto/evp/p_ec_asn1.c \
  3266. third_party/boringssl-with-bazel/src/crypto/evp/p_ed25519.c \
  3267. third_party/boringssl-with-bazel/src/crypto/evp/p_ed25519_asn1.c \
  3268. third_party/boringssl-with-bazel/src/crypto/evp/p_rsa.c \
  3269. third_party/boringssl-with-bazel/src/crypto/evp/p_rsa_asn1.c \
  3270. third_party/boringssl-with-bazel/src/crypto/evp/p_x25519.c \
  3271. third_party/boringssl-with-bazel/src/crypto/evp/p_x25519_asn1.c \
  3272. third_party/boringssl-with-bazel/src/crypto/evp/pbkdf.c \
  3273. third_party/boringssl-with-bazel/src/crypto/evp/print.c \
  3274. third_party/boringssl-with-bazel/src/crypto/evp/scrypt.c \
  3275. third_party/boringssl-with-bazel/src/crypto/evp/sign.c \
  3276. third_party/boringssl-with-bazel/src/crypto/ex_data.c \
  3277. third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm.c \
  3278. third_party/boringssl-with-bazel/src/crypto/fipsmodule/fips_shared_support.c \
  3279. third_party/boringssl-with-bazel/src/crypto/fipsmodule/is_fips.c \
  3280. third_party/boringssl-with-bazel/src/crypto/hkdf/hkdf.c \
  3281. third_party/boringssl-with-bazel/src/crypto/hpke/hpke.c \
  3282. third_party/boringssl-with-bazel/src/crypto/hrss/hrss.c \
  3283. third_party/boringssl-with-bazel/src/crypto/lhash/lhash.c \
  3284. third_party/boringssl-with-bazel/src/crypto/mem.c \
  3285. third_party/boringssl-with-bazel/src/crypto/obj/obj.c \
  3286. third_party/boringssl-with-bazel/src/crypto/obj/obj_xref.c \
  3287. third_party/boringssl-with-bazel/src/crypto/pem/pem_all.c \
  3288. third_party/boringssl-with-bazel/src/crypto/pem/pem_info.c \
  3289. third_party/boringssl-with-bazel/src/crypto/pem/pem_lib.c \
  3290. third_party/boringssl-with-bazel/src/crypto/pem/pem_oth.c \
  3291. third_party/boringssl-with-bazel/src/crypto/pem/pem_pk8.c \
  3292. third_party/boringssl-with-bazel/src/crypto/pem/pem_pkey.c \
  3293. third_party/boringssl-with-bazel/src/crypto/pem/pem_x509.c \
  3294. third_party/boringssl-with-bazel/src/crypto/pem/pem_xaux.c \
  3295. third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7.c \
  3296. third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7_x509.c \
  3297. third_party/boringssl-with-bazel/src/crypto/pkcs8/p5_pbev2.c \
  3298. third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8.c \
  3299. third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8_x509.c \
  3300. third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305.c \
  3301. third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305_arm.c \
  3302. third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305_vec.c \
  3303. third_party/boringssl-with-bazel/src/crypto/pool/pool.c \
  3304. third_party/boringssl-with-bazel/src/crypto/rand_extra/deterministic.c \
  3305. third_party/boringssl-with-bazel/src/crypto/rand_extra/forkunsafe.c \
  3306. third_party/boringssl-with-bazel/src/crypto/rand_extra/fuchsia.c \
  3307. third_party/boringssl-with-bazel/src/crypto/rand_extra/rand_extra.c \
  3308. third_party/boringssl-with-bazel/src/crypto/rand_extra/windows.c \
  3309. third_party/boringssl-with-bazel/src/crypto/rc4/rc4.c \
  3310. third_party/boringssl-with-bazel/src/crypto/refcount_c11.c \
  3311. third_party/boringssl-with-bazel/src/crypto/refcount_lock.c \
  3312. third_party/boringssl-with-bazel/src/crypto/rsa_extra/rsa_asn1.c \
  3313. third_party/boringssl-with-bazel/src/crypto/rsa_extra/rsa_print.c \
  3314. third_party/boringssl-with-bazel/src/crypto/siphash/siphash.c \
  3315. third_party/boringssl-with-bazel/src/crypto/stack/stack.c \
  3316. third_party/boringssl-with-bazel/src/crypto/thread.c \
  3317. third_party/boringssl-with-bazel/src/crypto/thread_none.c \
  3318. third_party/boringssl-with-bazel/src/crypto/thread_pthread.c \
  3319. third_party/boringssl-with-bazel/src/crypto/thread_win.c \
  3320. third_party/boringssl-with-bazel/src/crypto/trust_token/pmbtoken.c \
  3321. third_party/boringssl-with-bazel/src/crypto/trust_token/trust_token.c \
  3322. third_party/boringssl-with-bazel/src/crypto/x509/a_digest.c \
  3323. third_party/boringssl-with-bazel/src/crypto/x509/a_sign.c \
  3324. third_party/boringssl-with-bazel/src/crypto/x509/a_strex.c \
  3325. third_party/boringssl-with-bazel/src/crypto/x509/a_verify.c \
  3326. third_party/boringssl-with-bazel/src/crypto/x509/algorithm.c \
  3327. third_party/boringssl-with-bazel/src/crypto/x509/asn1_gen.c \
  3328. third_party/boringssl-with-bazel/src/crypto/x509/by_dir.c \
  3329. third_party/boringssl-with-bazel/src/crypto/x509/by_file.c \
  3330. third_party/boringssl-with-bazel/src/crypto/x509/i2d_pr.c \
  3331. third_party/boringssl-with-bazel/src/crypto/x509/rsa_pss.c \
  3332. third_party/boringssl-with-bazel/src/crypto/x509/t_crl.c \
  3333. third_party/boringssl-with-bazel/src/crypto/x509/t_req.c \
  3334. third_party/boringssl-with-bazel/src/crypto/x509/t_x509.c \
  3335. third_party/boringssl-with-bazel/src/crypto/x509/t_x509a.c \
  3336. third_party/boringssl-with-bazel/src/crypto/x509/x509.c \
  3337. third_party/boringssl-with-bazel/src/crypto/x509/x509_att.c \
  3338. third_party/boringssl-with-bazel/src/crypto/x509/x509_cmp.c \
  3339. third_party/boringssl-with-bazel/src/crypto/x509/x509_d2.c \
  3340. third_party/boringssl-with-bazel/src/crypto/x509/x509_def.c \
  3341. third_party/boringssl-with-bazel/src/crypto/x509/x509_ext.c \
  3342. third_party/boringssl-with-bazel/src/crypto/x509/x509_lu.c \
  3343. third_party/boringssl-with-bazel/src/crypto/x509/x509_obj.c \
  3344. third_party/boringssl-with-bazel/src/crypto/x509/x509_r2x.c \
  3345. third_party/boringssl-with-bazel/src/crypto/x509/x509_req.c \
  3346. third_party/boringssl-with-bazel/src/crypto/x509/x509_set.c \
  3347. third_party/boringssl-with-bazel/src/crypto/x509/x509_trs.c \
  3348. third_party/boringssl-with-bazel/src/crypto/x509/x509_txt.c \
  3349. third_party/boringssl-with-bazel/src/crypto/x509/x509_v3.c \
  3350. third_party/boringssl-with-bazel/src/crypto/x509/x509_vfy.c \
  3351. third_party/boringssl-with-bazel/src/crypto/x509/x509_vpm.c \
  3352. third_party/boringssl-with-bazel/src/crypto/x509/x509cset.c \
  3353. third_party/boringssl-with-bazel/src/crypto/x509/x509name.c \
  3354. third_party/boringssl-with-bazel/src/crypto/x509/x509rset.c \
  3355. third_party/boringssl-with-bazel/src/crypto/x509/x509spki.c \
  3356. third_party/boringssl-with-bazel/src/crypto/x509/x_algor.c \
  3357. third_party/boringssl-with-bazel/src/crypto/x509/x_all.c \
  3358. third_party/boringssl-with-bazel/src/crypto/x509/x_attrib.c \
  3359. third_party/boringssl-with-bazel/src/crypto/x509/x_crl.c \
  3360. third_party/boringssl-with-bazel/src/crypto/x509/x_exten.c \
  3361. third_party/boringssl-with-bazel/src/crypto/x509/x_info.c \
  3362. third_party/boringssl-with-bazel/src/crypto/x509/x_name.c \
  3363. third_party/boringssl-with-bazel/src/crypto/x509/x_pkey.c \
  3364. third_party/boringssl-with-bazel/src/crypto/x509/x_pubkey.c \
  3365. third_party/boringssl-with-bazel/src/crypto/x509/x_req.c \
  3366. third_party/boringssl-with-bazel/src/crypto/x509/x_sig.c \
  3367. third_party/boringssl-with-bazel/src/crypto/x509/x_spki.c \
  3368. third_party/boringssl-with-bazel/src/crypto/x509/x_val.c \
  3369. third_party/boringssl-with-bazel/src/crypto/x509/x_x509.c \
  3370. third_party/boringssl-with-bazel/src/crypto/x509/x_x509a.c \
  3371. third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_cache.c \
  3372. third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_data.c \
  3373. third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_lib.c \
  3374. third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_map.c \
  3375. third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_node.c \
  3376. third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_tree.c \
  3377. third_party/boringssl-with-bazel/src/crypto/x509v3/v3_akey.c \
  3378. third_party/boringssl-with-bazel/src/crypto/x509v3/v3_akeya.c \
  3379. third_party/boringssl-with-bazel/src/crypto/x509v3/v3_alt.c \
  3380. third_party/boringssl-with-bazel/src/crypto/x509v3/v3_bcons.c \
  3381. third_party/boringssl-with-bazel/src/crypto/x509v3/v3_bitst.c \
  3382. third_party/boringssl-with-bazel/src/crypto/x509v3/v3_conf.c \
  3383. third_party/boringssl-with-bazel/src/crypto/x509v3/v3_cpols.c \
  3384. third_party/boringssl-with-bazel/src/crypto/x509v3/v3_crld.c \
  3385. third_party/boringssl-with-bazel/src/crypto/x509v3/v3_enum.c \
  3386. third_party/boringssl-with-bazel/src/crypto/x509v3/v3_extku.c \
  3387. third_party/boringssl-with-bazel/src/crypto/x509v3/v3_genn.c \
  3388. third_party/boringssl-with-bazel/src/crypto/x509v3/v3_ia5.c \
  3389. third_party/boringssl-with-bazel/src/crypto/x509v3/v3_info.c \
  3390. third_party/boringssl-with-bazel/src/crypto/x509v3/v3_int.c \
  3391. third_party/boringssl-with-bazel/src/crypto/x509v3/v3_lib.c \
  3392. third_party/boringssl-with-bazel/src/crypto/x509v3/v3_ncons.c \
  3393. third_party/boringssl-with-bazel/src/crypto/x509v3/v3_ocsp.c \
  3394. third_party/boringssl-with-bazel/src/crypto/x509v3/v3_pci.c \
  3395. third_party/boringssl-with-bazel/src/crypto/x509v3/v3_pcia.c \
  3396. third_party/boringssl-with-bazel/src/crypto/x509v3/v3_pcons.c \
  3397. third_party/boringssl-with-bazel/src/crypto/x509v3/v3_pmaps.c \
  3398. third_party/boringssl-with-bazel/src/crypto/x509v3/v3_prn.c \
  3399. third_party/boringssl-with-bazel/src/crypto/x509v3/v3_purp.c \
  3400. third_party/boringssl-with-bazel/src/crypto/x509v3/v3_skey.c \
  3401. third_party/boringssl-with-bazel/src/crypto/x509v3/v3_utl.c \
  3402. third_party/boringssl-with-bazel/src/ssl/bio_ssl.cc \
  3403. third_party/boringssl-with-bazel/src/ssl/d1_both.cc \
  3404. third_party/boringssl-with-bazel/src/ssl/d1_lib.cc \
  3405. third_party/boringssl-with-bazel/src/ssl/d1_pkt.cc \
  3406. third_party/boringssl-with-bazel/src/ssl/d1_srtp.cc \
  3407. third_party/boringssl-with-bazel/src/ssl/dtls_method.cc \
  3408. third_party/boringssl-with-bazel/src/ssl/dtls_record.cc \
  3409. third_party/boringssl-with-bazel/src/ssl/handoff.cc \
  3410. third_party/boringssl-with-bazel/src/ssl/handshake.cc \
  3411. third_party/boringssl-with-bazel/src/ssl/handshake_client.cc \
  3412. third_party/boringssl-with-bazel/src/ssl/handshake_server.cc \
  3413. third_party/boringssl-with-bazel/src/ssl/s3_both.cc \
  3414. third_party/boringssl-with-bazel/src/ssl/s3_lib.cc \
  3415. third_party/boringssl-with-bazel/src/ssl/s3_pkt.cc \
  3416. third_party/boringssl-with-bazel/src/ssl/ssl_aead_ctx.cc \
  3417. third_party/boringssl-with-bazel/src/ssl/ssl_asn1.cc \
  3418. third_party/boringssl-with-bazel/src/ssl/ssl_buffer.cc \
  3419. third_party/boringssl-with-bazel/src/ssl/ssl_cert.cc \
  3420. third_party/boringssl-with-bazel/src/ssl/ssl_cipher.cc \
  3421. third_party/boringssl-with-bazel/src/ssl/ssl_file.cc \
  3422. third_party/boringssl-with-bazel/src/ssl/ssl_key_share.cc \
  3423. third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc \
  3424. third_party/boringssl-with-bazel/src/ssl/ssl_privkey.cc \
  3425. third_party/boringssl-with-bazel/src/ssl/ssl_session.cc \
  3426. third_party/boringssl-with-bazel/src/ssl/ssl_stat.cc \
  3427. third_party/boringssl-with-bazel/src/ssl/ssl_transcript.cc \
  3428. third_party/boringssl-with-bazel/src/ssl/ssl_versions.cc \
  3429. third_party/boringssl-with-bazel/src/ssl/ssl_x509.cc \
  3430. third_party/boringssl-with-bazel/src/ssl/t1_enc.cc \
  3431. third_party/boringssl-with-bazel/src/ssl/t1_lib.cc \
  3432. third_party/boringssl-with-bazel/src/ssl/tls13_both.cc \
  3433. third_party/boringssl-with-bazel/src/ssl/tls13_client.cc \
  3434. third_party/boringssl-with-bazel/src/ssl/tls13_enc.cc \
  3435. third_party/boringssl-with-bazel/src/ssl/tls13_server.cc \
  3436. third_party/boringssl-with-bazel/src/ssl/tls_method.cc \
  3437. third_party/boringssl-with-bazel/src/ssl/tls_record.cc \
  3438. PUBLIC_HEADERS_C += \
  3439. LIBBORINGSSL_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBBORINGSSL_SRC))))
  3440. $(LIBBORINGSSL_OBJS): CPPFLAGS += -Ithird_party/boringssl-with-bazel/src/include -fvisibility=hidden -DOPENSSL_NO_ASM -D_GNU_SOURCE -DWIN32_LEAN_AND_MEAN -D_HAS_EXCEPTIONS=0 -DNOMINMAX
  3441. $(LIBBORINGSSL_OBJS): CXXFLAGS += -fno-exceptions
  3442. $(LIBBORINGSSL_OBJS): CFLAGS += -g
  3443. $(LIBDIR)/$(CONFIG)/libboringssl.a: $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(LIBBORINGSSL_OBJS)
  3444. $(E) "[AR] Creating $@"
  3445. $(Q) mkdir -p `dirname $@`
  3446. $(Q) rm -f $(LIBDIR)/$(CONFIG)/libboringssl.a
  3447. $(Q) $(AR) $(ARFLAGS) $(LIBDIR)/$(CONFIG)/libboringssl.a $(LIBBORINGSSL_OBJS)
  3448. ifeq ($(SYSTEM),Darwin)
  3449. $(Q) ranlib -no_warning_for_no_symbols $(LIBDIR)/$(CONFIG)/libboringssl.a
  3450. endif
  3451. ifneq ($(NO_DEPS),true)
  3452. -include $(LIBBORINGSSL_OBJS:.o=.dep)
  3453. endif
  3454. # end of build recipe for library "boringssl"
  3455. # start of build recipe for library "re2" (generated by makelib(lib) template function)
  3456. LIBRE2_SRC = \
  3457. third_party/re2/re2/bitstate.cc \
  3458. third_party/re2/re2/compile.cc \
  3459. third_party/re2/re2/dfa.cc \
  3460. third_party/re2/re2/filtered_re2.cc \
  3461. third_party/re2/re2/mimics_pcre.cc \
  3462. third_party/re2/re2/nfa.cc \
  3463. third_party/re2/re2/onepass.cc \
  3464. third_party/re2/re2/parse.cc \
  3465. third_party/re2/re2/perl_groups.cc \
  3466. third_party/re2/re2/prefilter.cc \
  3467. third_party/re2/re2/prefilter_tree.cc \
  3468. third_party/re2/re2/prog.cc \
  3469. third_party/re2/re2/re2.cc \
  3470. third_party/re2/re2/regexp.cc \
  3471. third_party/re2/re2/set.cc \
  3472. third_party/re2/re2/simplify.cc \
  3473. third_party/re2/re2/stringpiece.cc \
  3474. third_party/re2/re2/tostring.cc \
  3475. third_party/re2/re2/unicode_casefold.cc \
  3476. third_party/re2/re2/unicode_groups.cc \
  3477. third_party/re2/util/pcre.cc \
  3478. third_party/re2/util/rune.cc \
  3479. third_party/re2/util/strutil.cc \
  3480. PUBLIC_HEADERS_C += \
  3481. LIBRE2_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBRE2_SRC))))
  3482. $(LIBDIR)/$(CONFIG)/libre2.a: $(LIBRE2_OBJS)
  3483. $(E) "[AR] Creating $@"
  3484. $(Q) mkdir -p `dirname $@`
  3485. $(Q) rm -f $(LIBDIR)/$(CONFIG)/libre2.a
  3486. $(Q) $(AR) $(ARFLAGS) $(LIBDIR)/$(CONFIG)/libre2.a $(LIBRE2_OBJS)
  3487. ifeq ($(SYSTEM),Darwin)
  3488. $(Q) ranlib -no_warning_for_no_symbols $(LIBDIR)/$(CONFIG)/libre2.a
  3489. endif
  3490. ifneq ($(NO_DEPS),true)
  3491. -include $(LIBRE2_OBJS:.o=.dep)
  3492. endif
  3493. # end of build recipe for library "re2"
  3494. # start of build recipe for library "upb" (generated by makelib(lib) template function)
  3495. LIBUPB_SRC = \
  3496. third_party/upb/upb/decode.c \
  3497. third_party/upb/upb/encode.c \
  3498. third_party/upb/upb/msg.c \
  3499. third_party/upb/upb/port.c \
  3500. third_party/upb/upb/table.c \
  3501. third_party/upb/upb/upb.c \
  3502. PUBLIC_HEADERS_C += \
  3503. LIBUPB_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBUPB_SRC))))
  3504. $(LIBDIR)/$(CONFIG)/libupb.a: $(LIBUPB_OBJS)
  3505. $(E) "[AR] Creating $@"
  3506. $(Q) mkdir -p `dirname $@`
  3507. $(Q) rm -f $(LIBDIR)/$(CONFIG)/libupb.a
  3508. $(Q) $(AR) $(ARFLAGS) $(LIBDIR)/$(CONFIG)/libupb.a $(LIBUPB_OBJS)
  3509. ifeq ($(SYSTEM),Darwin)
  3510. $(Q) ranlib -no_warning_for_no_symbols $(LIBDIR)/$(CONFIG)/libupb.a
  3511. endif
  3512. ifeq ($(SYSTEM),MINGW32)
  3513. $(LIBDIR)/$(CONFIG)/upb$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE): $(LIBUPB_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP)
  3514. $(E) "[LD] Linking $@"
  3515. $(Q) mkdir -p `dirname $@`
  3516. $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,--output-def=$(LIBDIR)/$(CONFIG)/upb$(SHARED_VERSION_CORE).def -Wl,--out-implib=$(LIBDIR)/$(CONFIG)/libupb$(SHARED_VERSION_CORE)-dll.a -o $(LIBDIR)/$(CONFIG)/upb$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBUPB_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBS)
  3517. else
  3518. $(LIBDIR)/$(CONFIG)/libupb$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE): $(LIBUPB_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP)
  3519. $(E) "[LD] Linking $@"
  3520. $(Q) mkdir -p `dirname $@`
  3521. ifeq ($(SYSTEM),Darwin)
  3522. $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -install_name $(SHARED_PREFIX)upb$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) -dynamiclib -o $(LIBDIR)/$(CONFIG)/libupb$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBUPB_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBS)
  3523. else
  3524. $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,-soname,libupb.so.12 -o $(LIBDIR)/$(CONFIG)/libupb$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBUPB_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBS)
  3525. $(Q) ln -sf $(SHARED_PREFIX)upb$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libupb$(SHARED_VERSION_CORE).so.12
  3526. $(Q) ln -sf $(SHARED_PREFIX)upb$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libupb$(SHARED_VERSION_CORE).so
  3527. endif
  3528. endif
  3529. ifneq ($(NO_DEPS),true)
  3530. -include $(LIBUPB_OBJS:.o=.dep)
  3531. endif
  3532. # end of build recipe for library "upb"
  3533. # start of build recipe for library "z" (generated by makelib(lib) template function)
  3534. LIBZ_SRC = \
  3535. third_party/zlib/adler32.c \
  3536. third_party/zlib/compress.c \
  3537. third_party/zlib/crc32.c \
  3538. third_party/zlib/deflate.c \
  3539. third_party/zlib/gzclose.c \
  3540. third_party/zlib/gzlib.c \
  3541. third_party/zlib/gzread.c \
  3542. third_party/zlib/gzwrite.c \
  3543. third_party/zlib/infback.c \
  3544. third_party/zlib/inffast.c \
  3545. third_party/zlib/inflate.c \
  3546. third_party/zlib/inftrees.c \
  3547. third_party/zlib/trees.c \
  3548. third_party/zlib/uncompr.c \
  3549. third_party/zlib/zutil.c \
  3550. PUBLIC_HEADERS_C += \
  3551. LIBZ_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBZ_SRC))))
  3552. $(LIBZ_OBJS): CFLAGS += -fvisibility=hidden
  3553. $(LIBDIR)/$(CONFIG)/libz.a: $(LIBZ_OBJS)
  3554. $(E) "[AR] Creating $@"
  3555. $(Q) mkdir -p `dirname $@`
  3556. $(Q) rm -f $(LIBDIR)/$(CONFIG)/libz.a
  3557. $(Q) $(AR) $(ARFLAGS) $(LIBDIR)/$(CONFIG)/libz.a $(LIBZ_OBJS)
  3558. ifeq ($(SYSTEM),Darwin)
  3559. $(Q) ranlib -no_warning_for_no_symbols $(LIBDIR)/$(CONFIG)/libz.a
  3560. endif
  3561. ifneq ($(NO_DEPS),true)
  3562. -include $(LIBZ_OBJS:.o=.dep)
  3563. endif
  3564. # end of build recipe for library "z"
  3565. # start of build recipe for library "ares" (generated by makelib(lib) template function)
  3566. LIBARES_SRC = \
  3567. third_party/cares/cares/ares__close_sockets.c \
  3568. third_party/cares/cares/ares__get_hostent.c \
  3569. third_party/cares/cares/ares__read_line.c \
  3570. third_party/cares/cares/ares__timeval.c \
  3571. third_party/cares/cares/ares_cancel.c \
  3572. third_party/cares/cares/ares_create_query.c \
  3573. third_party/cares/cares/ares_data.c \
  3574. third_party/cares/cares/ares_destroy.c \
  3575. third_party/cares/cares/ares_expand_name.c \
  3576. third_party/cares/cares/ares_expand_string.c \
  3577. third_party/cares/cares/ares_fds.c \
  3578. third_party/cares/cares/ares_free_hostent.c \
  3579. third_party/cares/cares/ares_free_string.c \
  3580. third_party/cares/cares/ares_getenv.c \
  3581. third_party/cares/cares/ares_gethostbyaddr.c \
  3582. third_party/cares/cares/ares_gethostbyname.c \
  3583. third_party/cares/cares/ares_getnameinfo.c \
  3584. third_party/cares/cares/ares_getopt.c \
  3585. third_party/cares/cares/ares_getsock.c \
  3586. third_party/cares/cares/ares_init.c \
  3587. third_party/cares/cares/ares_library_init.c \
  3588. third_party/cares/cares/ares_llist.c \
  3589. third_party/cares/cares/ares_mkquery.c \
  3590. third_party/cares/cares/ares_nowarn.c \
  3591. third_party/cares/cares/ares_options.c \
  3592. third_party/cares/cares/ares_parse_a_reply.c \
  3593. third_party/cares/cares/ares_parse_aaaa_reply.c \
  3594. third_party/cares/cares/ares_parse_mx_reply.c \
  3595. third_party/cares/cares/ares_parse_naptr_reply.c \
  3596. third_party/cares/cares/ares_parse_ns_reply.c \
  3597. third_party/cares/cares/ares_parse_ptr_reply.c \
  3598. third_party/cares/cares/ares_parse_soa_reply.c \
  3599. third_party/cares/cares/ares_parse_srv_reply.c \
  3600. third_party/cares/cares/ares_parse_txt_reply.c \
  3601. third_party/cares/cares/ares_platform.c \
  3602. third_party/cares/cares/ares_process.c \
  3603. third_party/cares/cares/ares_query.c \
  3604. third_party/cares/cares/ares_search.c \
  3605. third_party/cares/cares/ares_send.c \
  3606. third_party/cares/cares/ares_strcasecmp.c \
  3607. third_party/cares/cares/ares_strdup.c \
  3608. third_party/cares/cares/ares_strerror.c \
  3609. third_party/cares/cares/ares_strsplit.c \
  3610. third_party/cares/cares/ares_timeout.c \
  3611. third_party/cares/cares/ares_version.c \
  3612. third_party/cares/cares/ares_writev.c \
  3613. third_party/cares/cares/bitncmp.c \
  3614. third_party/cares/cares/inet_net_pton.c \
  3615. third_party/cares/cares/inet_ntop.c \
  3616. third_party/cares/cares/windows_port.c \
  3617. PUBLIC_HEADERS_C += \
  3618. LIBARES_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBARES_SRC))))
  3619. $(LIBARES_OBJS): CPPFLAGS += -Ithird_party/cares -Ithird_party/cares/cares -fvisibility=hidden -D_GNU_SOURCE $(if $(subst Darwin,,$(SYSTEM)),,-Ithird_party/cares/config_darwin) $(if $(subst FreeBSD,,$(SYSTEM)),,-Ithird_party/cares/config_freebsd) $(if $(subst Linux,,$(SYSTEM)),,-Ithird_party/cares/config_linux) $(if $(subst OpenBSD,,$(SYSTEM)),,-Ithird_party/cares/config_openbsd) -DWIN32_LEAN_AND_MEAN -D_HAS_EXCEPTIONS=0 -DNOMINMAX $(if $(subst MINGW32,,$(SYSTEM)),-DHAVE_CONFIG_H,)
  3620. $(LIBARES_OBJS): CFLAGS += -g
  3621. $(LIBDIR)/$(CONFIG)/libares.a: $(LIBARES_OBJS)
  3622. $(E) "[AR] Creating $@"
  3623. $(Q) mkdir -p `dirname $@`
  3624. $(Q) rm -f $(LIBDIR)/$(CONFIG)/libares.a
  3625. $(Q) $(AR) $(ARFLAGS) $(LIBDIR)/$(CONFIG)/libares.a $(LIBARES_OBJS)
  3626. ifeq ($(SYSTEM),Darwin)
  3627. $(Q) ranlib -no_warning_for_no_symbols $(LIBDIR)/$(CONFIG)/libares.a
  3628. endif
  3629. ifneq ($(NO_DEPS),true)
  3630. -include $(LIBARES_OBJS:.o=.dep)
  3631. endif
  3632. # end of build recipe for library "ares"
  3633. # Add private ABSEIL target which contains all sources used by all baselib libraries.
  3634. # start of build recipe for library "grpc_abseil" (generated by makelib(lib) template function)
  3635. LIBGRPC_ABSEIL_SRC = \
  3636. third_party/abseil-cpp/absl/base/dynamic_annotations.cc \
  3637. third_party/abseil-cpp/absl/base/internal/cycleclock.cc \
  3638. third_party/abseil-cpp/absl/base/internal/exponential_biased.cc \
  3639. third_party/abseil-cpp/absl/base/internal/low_level_alloc.cc \
  3640. third_party/abseil-cpp/absl/base/internal/raw_logging.cc \
  3641. third_party/abseil-cpp/absl/base/internal/spinlock.cc \
  3642. third_party/abseil-cpp/absl/base/internal/spinlock_wait.cc \
  3643. third_party/abseil-cpp/absl/base/internal/sysinfo.cc \
  3644. third_party/abseil-cpp/absl/base/internal/thread_identity.cc \
  3645. third_party/abseil-cpp/absl/base/internal/throw_delegate.cc \
  3646. third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.cc \
  3647. third_party/abseil-cpp/absl/base/log_severity.cc \
  3648. third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.cc \
  3649. third_party/abseil-cpp/absl/container/internal/hashtablez_sampler_force_weak_definition.cc \
  3650. third_party/abseil-cpp/absl/container/internal/raw_hash_set.cc \
  3651. third_party/abseil-cpp/absl/debugging/internal/address_is_readable.cc \
  3652. third_party/abseil-cpp/absl/debugging/internal/demangle.cc \
  3653. third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.cc \
  3654. third_party/abseil-cpp/absl/debugging/internal/vdso_support.cc \
  3655. third_party/abseil-cpp/absl/debugging/stacktrace.cc \
  3656. third_party/abseil-cpp/absl/debugging/symbolize.cc \
  3657. third_party/abseil-cpp/absl/hash/internal/city.cc \
  3658. third_party/abseil-cpp/absl/hash/internal/hash.cc \
  3659. third_party/abseil-cpp/absl/numeric/int128.cc \
  3660. third_party/abseil-cpp/absl/status/status.cc \
  3661. third_party/abseil-cpp/absl/status/status_payload_printer.cc \
  3662. third_party/abseil-cpp/absl/strings/ascii.cc \
  3663. third_party/abseil-cpp/absl/strings/charconv.cc \
  3664. third_party/abseil-cpp/absl/strings/cord.cc \
  3665. third_party/abseil-cpp/absl/strings/escaping.cc \
  3666. third_party/abseil-cpp/absl/strings/internal/charconv_bigint.cc \
  3667. third_party/abseil-cpp/absl/strings/internal/charconv_parse.cc \
  3668. third_party/abseil-cpp/absl/strings/internal/escaping.cc \
  3669. third_party/abseil-cpp/absl/strings/internal/memutil.cc \
  3670. third_party/abseil-cpp/absl/strings/internal/ostringstream.cc \
  3671. third_party/abseil-cpp/absl/strings/internal/str_format/arg.cc \
  3672. third_party/abseil-cpp/absl/strings/internal/str_format/bind.cc \
  3673. third_party/abseil-cpp/absl/strings/internal/str_format/extension.cc \
  3674. third_party/abseil-cpp/absl/strings/internal/str_format/float_conversion.cc \
  3675. third_party/abseil-cpp/absl/strings/internal/str_format/output.cc \
  3676. third_party/abseil-cpp/absl/strings/internal/str_format/parser.cc \
  3677. third_party/abseil-cpp/absl/strings/internal/utf8.cc \
  3678. third_party/abseil-cpp/absl/strings/match.cc \
  3679. third_party/abseil-cpp/absl/strings/numbers.cc \
  3680. third_party/abseil-cpp/absl/strings/str_cat.cc \
  3681. third_party/abseil-cpp/absl/strings/str_replace.cc \
  3682. third_party/abseil-cpp/absl/strings/str_split.cc \
  3683. third_party/abseil-cpp/absl/strings/string_view.cc \
  3684. third_party/abseil-cpp/absl/strings/substitute.cc \
  3685. third_party/abseil-cpp/absl/synchronization/barrier.cc \
  3686. third_party/abseil-cpp/absl/synchronization/blocking_counter.cc \
  3687. third_party/abseil-cpp/absl/synchronization/internal/create_thread_identity.cc \
  3688. third_party/abseil-cpp/absl/synchronization/internal/graphcycles.cc \
  3689. third_party/abseil-cpp/absl/synchronization/internal/per_thread_sem.cc \
  3690. third_party/abseil-cpp/absl/synchronization/internal/waiter.cc \
  3691. third_party/abseil-cpp/absl/synchronization/mutex.cc \
  3692. third_party/abseil-cpp/absl/synchronization/notification.cc \
  3693. third_party/abseil-cpp/absl/time/civil_time.cc \
  3694. third_party/abseil-cpp/absl/time/clock.cc \
  3695. third_party/abseil-cpp/absl/time/duration.cc \
  3696. third_party/abseil-cpp/absl/time/format.cc \
  3697. third_party/abseil-cpp/absl/time/internal/cctz/src/civil_time_detail.cc \
  3698. third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_fixed.cc \
  3699. third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_format.cc \
  3700. third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_if.cc \
  3701. third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_impl.cc \
  3702. third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.cc \
  3703. third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.cc \
  3704. third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_lookup.cc \
  3705. third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_posix.cc \
  3706. third_party/abseil-cpp/absl/time/internal/cctz/src/zone_info_source.cc \
  3707. third_party/abseil-cpp/absl/time/time.cc \
  3708. third_party/abseil-cpp/absl/types/bad_optional_access.cc \
  3709. third_party/abseil-cpp/absl/types/bad_variant_access.cc \
  3710. LIBGRPC_ABSEIL_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBGRPC_ABSEIL_SRC))))
  3711. $(LIBGRPC_ABSEIL_OBJS): CPPFLAGS += -g $(ABSL_RANDOM_HWAES_FLAGS) -Ithird_party/abseil-cpp
  3712. $(LIBDIR)/$(CONFIG)/libgrpc_abseil.a: $(LIBGRPC_ABSEIL_OBJS)
  3713. $(E) "[AR] Creating $@"
  3714. $(Q) mkdir -p `dirname $@`
  3715. $(Q) rm -f $(LIBDIR)/$(CONFIG)/libgrpc_abseil.a
  3716. $(Q) $(AR) $(ARFLAGS) $(LIBDIR)/$(CONFIG)/libgrpc_abseil.a $(LIBGRPC_ABSEIL_OBJS)
  3717. ifeq ($(SYSTEM),Darwin)
  3718. $(Q) ranlib -no_warning_for_no_symbols $(LIBDIR)/$(CONFIG)/libgrpc_abseil.a
  3719. endif
  3720. ifneq ($(NO_DEPS),true)
  3721. -include $(LIBGRPC_ABSEIL_OBJS:.o=.dep)
  3722. endif
  3723. # end of build recipe for library "grpc_abseil"
  3724. # All of the test targets, and protoc plugins
  3725. # start of build recipe for target "grpc_cpp_plugin" (generated by maketarget(tgt) template function)
  3726. GRPC_CPP_PLUGIN_SRC = \
  3727. src/compiler/cpp_plugin.cc \
  3728. GRPC_CPP_PLUGIN_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(GRPC_CPP_PLUGIN_SRC))))
  3729. ifeq ($(NO_PROTOBUF),true)
  3730. # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
  3731. $(BINDIR)/$(CONFIG)/grpc_cpp_plugin: protobuf_dep_error
  3732. else
  3733. $(BINDIR)/$(CONFIG)/grpc_cpp_plugin: $(PROTOBUF_DEP) $(GRPC_CPP_PLUGIN_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_plugin_support.a
  3734. $(E) "[HOSTLD] Linking $@"
  3735. $(Q) mkdir -p `dirname $@`
  3736. $(Q) $(HOST_LDXX) $(HOST_LDFLAGS) $(GRPC_CPP_PLUGIN_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_plugin_support.a $(HOST_LDLIBSXX) $(HOST_LDLIBS_PROTOC) $(HOST_LDLIBS) $(HOST_LDLIBS_PROTOC) -o $(BINDIR)/$(CONFIG)/grpc_cpp_plugin
  3737. endif
  3738. $(OBJDIR)/$(CONFIG)/src/compiler/cpp_plugin.o: $(LIBDIR)/$(CONFIG)/libgrpc_plugin_support.a
  3739. deps_grpc_cpp_plugin: $(GRPC_CPP_PLUGIN_OBJS:.o=.dep)
  3740. ifneq ($(NO_DEPS),true)
  3741. -include $(GRPC_CPP_PLUGIN_OBJS:.o=.dep)
  3742. endif
  3743. # end of build recipe for target "grpc_cpp_plugin"
  3744. # start of build recipe for target "grpc_csharp_plugin" (generated by maketarget(tgt) template function)
  3745. GRPC_CSHARP_PLUGIN_SRC = \
  3746. src/compiler/csharp_plugin.cc \
  3747. GRPC_CSHARP_PLUGIN_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(GRPC_CSHARP_PLUGIN_SRC))))
  3748. ifeq ($(NO_PROTOBUF),true)
  3749. # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
  3750. $(BINDIR)/$(CONFIG)/grpc_csharp_plugin: protobuf_dep_error
  3751. else
  3752. $(BINDIR)/$(CONFIG)/grpc_csharp_plugin: $(PROTOBUF_DEP) $(GRPC_CSHARP_PLUGIN_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_plugin_support.a
  3753. $(E) "[HOSTLD] Linking $@"
  3754. $(Q) mkdir -p `dirname $@`
  3755. $(Q) $(HOST_LDXX) $(HOST_LDFLAGS) $(GRPC_CSHARP_PLUGIN_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_plugin_support.a $(HOST_LDLIBSXX) $(HOST_LDLIBS_PROTOC) $(HOST_LDLIBS) $(HOST_LDLIBS_PROTOC) -o $(BINDIR)/$(CONFIG)/grpc_csharp_plugin
  3756. endif
  3757. $(OBJDIR)/$(CONFIG)/src/compiler/csharp_plugin.o: $(LIBDIR)/$(CONFIG)/libgrpc_plugin_support.a
  3758. deps_grpc_csharp_plugin: $(GRPC_CSHARP_PLUGIN_OBJS:.o=.dep)
  3759. ifneq ($(NO_DEPS),true)
  3760. -include $(GRPC_CSHARP_PLUGIN_OBJS:.o=.dep)
  3761. endif
  3762. # end of build recipe for target "grpc_csharp_plugin"
  3763. # start of build recipe for target "grpc_node_plugin" (generated by maketarget(tgt) template function)
  3764. GRPC_NODE_PLUGIN_SRC = \
  3765. src/compiler/node_plugin.cc \
  3766. GRPC_NODE_PLUGIN_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(GRPC_NODE_PLUGIN_SRC))))
  3767. ifeq ($(NO_PROTOBUF),true)
  3768. # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
  3769. $(BINDIR)/$(CONFIG)/grpc_node_plugin: protobuf_dep_error
  3770. else
  3771. $(BINDIR)/$(CONFIG)/grpc_node_plugin: $(PROTOBUF_DEP) $(GRPC_NODE_PLUGIN_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_plugin_support.a
  3772. $(E) "[HOSTLD] Linking $@"
  3773. $(Q) mkdir -p `dirname $@`
  3774. $(Q) $(HOST_LDXX) $(HOST_LDFLAGS) $(GRPC_NODE_PLUGIN_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_plugin_support.a $(HOST_LDLIBSXX) $(HOST_LDLIBS_PROTOC) $(HOST_LDLIBS) $(HOST_LDLIBS_PROTOC) -o $(BINDIR)/$(CONFIG)/grpc_node_plugin
  3775. endif
  3776. $(OBJDIR)/$(CONFIG)/src/compiler/node_plugin.o: $(LIBDIR)/$(CONFIG)/libgrpc_plugin_support.a
  3777. deps_grpc_node_plugin: $(GRPC_NODE_PLUGIN_OBJS:.o=.dep)
  3778. ifneq ($(NO_DEPS),true)
  3779. -include $(GRPC_NODE_PLUGIN_OBJS:.o=.dep)
  3780. endif
  3781. # end of build recipe for target "grpc_node_plugin"
  3782. # start of build recipe for target "grpc_objective_c_plugin" (generated by maketarget(tgt) template function)
  3783. GRPC_OBJECTIVE_C_PLUGIN_SRC = \
  3784. src/compiler/objective_c_plugin.cc \
  3785. GRPC_OBJECTIVE_C_PLUGIN_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(GRPC_OBJECTIVE_C_PLUGIN_SRC))))
  3786. ifeq ($(NO_PROTOBUF),true)
  3787. # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
  3788. $(BINDIR)/$(CONFIG)/grpc_objective_c_plugin: protobuf_dep_error
  3789. else
  3790. $(BINDIR)/$(CONFIG)/grpc_objective_c_plugin: $(PROTOBUF_DEP) $(GRPC_OBJECTIVE_C_PLUGIN_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_plugin_support.a
  3791. $(E) "[HOSTLD] Linking $@"
  3792. $(Q) mkdir -p `dirname $@`
  3793. $(Q) $(HOST_LDXX) $(HOST_LDFLAGS) $(GRPC_OBJECTIVE_C_PLUGIN_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_plugin_support.a $(HOST_LDLIBSXX) $(HOST_LDLIBS_PROTOC) $(HOST_LDLIBS) $(HOST_LDLIBS_PROTOC) -o $(BINDIR)/$(CONFIG)/grpc_objective_c_plugin
  3794. endif
  3795. $(OBJDIR)/$(CONFIG)/src/compiler/objective_c_plugin.o: $(LIBDIR)/$(CONFIG)/libgrpc_plugin_support.a
  3796. deps_grpc_objective_c_plugin: $(GRPC_OBJECTIVE_C_PLUGIN_OBJS:.o=.dep)
  3797. ifneq ($(NO_DEPS),true)
  3798. -include $(GRPC_OBJECTIVE_C_PLUGIN_OBJS:.o=.dep)
  3799. endif
  3800. # end of build recipe for target "grpc_objective_c_plugin"
  3801. # start of build recipe for target "grpc_php_plugin" (generated by maketarget(tgt) template function)
  3802. GRPC_PHP_PLUGIN_SRC = \
  3803. src/compiler/php_plugin.cc \
  3804. GRPC_PHP_PLUGIN_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(GRPC_PHP_PLUGIN_SRC))))
  3805. ifeq ($(NO_PROTOBUF),true)
  3806. # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
  3807. $(BINDIR)/$(CONFIG)/grpc_php_plugin: protobuf_dep_error
  3808. else
  3809. $(BINDIR)/$(CONFIG)/grpc_php_plugin: $(PROTOBUF_DEP) $(GRPC_PHP_PLUGIN_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_plugin_support.a
  3810. $(E) "[HOSTLD] Linking $@"
  3811. $(Q) mkdir -p `dirname $@`
  3812. $(Q) $(HOST_LDXX) $(HOST_LDFLAGS) $(GRPC_PHP_PLUGIN_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_plugin_support.a $(HOST_LDLIBSXX) $(HOST_LDLIBS_PROTOC) $(HOST_LDLIBS) $(HOST_LDLIBS_PROTOC) -o $(BINDIR)/$(CONFIG)/grpc_php_plugin
  3813. endif
  3814. $(OBJDIR)/$(CONFIG)/src/compiler/php_plugin.o: $(LIBDIR)/$(CONFIG)/libgrpc_plugin_support.a
  3815. deps_grpc_php_plugin: $(GRPC_PHP_PLUGIN_OBJS:.o=.dep)
  3816. ifneq ($(NO_DEPS),true)
  3817. -include $(GRPC_PHP_PLUGIN_OBJS:.o=.dep)
  3818. endif
  3819. # end of build recipe for target "grpc_php_plugin"
  3820. # start of build recipe for target "grpc_python_plugin" (generated by maketarget(tgt) template function)
  3821. GRPC_PYTHON_PLUGIN_SRC = \
  3822. src/compiler/python_plugin.cc \
  3823. GRPC_PYTHON_PLUGIN_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(GRPC_PYTHON_PLUGIN_SRC))))
  3824. ifeq ($(NO_PROTOBUF),true)
  3825. # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
  3826. $(BINDIR)/$(CONFIG)/grpc_python_plugin: protobuf_dep_error
  3827. else
  3828. $(BINDIR)/$(CONFIG)/grpc_python_plugin: $(PROTOBUF_DEP) $(GRPC_PYTHON_PLUGIN_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_plugin_support.a
  3829. $(E) "[HOSTLD] Linking $@"
  3830. $(Q) mkdir -p `dirname $@`
  3831. $(Q) $(HOST_LDXX) $(HOST_LDFLAGS) $(GRPC_PYTHON_PLUGIN_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_plugin_support.a $(HOST_LDLIBSXX) $(HOST_LDLIBS_PROTOC) $(HOST_LDLIBS) $(HOST_LDLIBS_PROTOC) -o $(BINDIR)/$(CONFIG)/grpc_python_plugin
  3832. endif
  3833. $(OBJDIR)/$(CONFIG)/src/compiler/python_plugin.o: $(LIBDIR)/$(CONFIG)/libgrpc_plugin_support.a
  3834. deps_grpc_python_plugin: $(GRPC_PYTHON_PLUGIN_OBJS:.o=.dep)
  3835. ifneq ($(NO_DEPS),true)
  3836. -include $(GRPC_PYTHON_PLUGIN_OBJS:.o=.dep)
  3837. endif
  3838. # end of build recipe for target "grpc_python_plugin"
  3839. # start of build recipe for target "grpc_ruby_plugin" (generated by maketarget(tgt) template function)
  3840. GRPC_RUBY_PLUGIN_SRC = \
  3841. src/compiler/ruby_plugin.cc \
  3842. GRPC_RUBY_PLUGIN_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(GRPC_RUBY_PLUGIN_SRC))))
  3843. ifeq ($(NO_PROTOBUF),true)
  3844. # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
  3845. $(BINDIR)/$(CONFIG)/grpc_ruby_plugin: protobuf_dep_error
  3846. else
  3847. $(BINDIR)/$(CONFIG)/grpc_ruby_plugin: $(PROTOBUF_DEP) $(GRPC_RUBY_PLUGIN_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_plugin_support.a
  3848. $(E) "[HOSTLD] Linking $@"
  3849. $(Q) mkdir -p `dirname $@`
  3850. $(Q) $(HOST_LDXX) $(HOST_LDFLAGS) $(GRPC_RUBY_PLUGIN_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_plugin_support.a $(HOST_LDLIBSXX) $(HOST_LDLIBS_PROTOC) $(HOST_LDLIBS) $(HOST_LDLIBS_PROTOC) -o $(BINDIR)/$(CONFIG)/grpc_ruby_plugin
  3851. endif
  3852. $(OBJDIR)/$(CONFIG)/src/compiler/ruby_plugin.o: $(LIBDIR)/$(CONFIG)/libgrpc_plugin_support.a
  3853. deps_grpc_ruby_plugin: $(GRPC_RUBY_PLUGIN_OBJS:.o=.dep)
  3854. ifneq ($(NO_DEPS),true)
  3855. -include $(GRPC_RUBY_PLUGIN_OBJS:.o=.dep)
  3856. endif
  3857. # end of build recipe for target "grpc_ruby_plugin"
  3858. # TODO(jtattermusch): is there a way to get around this hack?
  3859. ifneq ($(OPENSSL_DEP),)
  3860. # This is to ensure the embedded OpenSSL is built beforehand, properly
  3861. # installing headers to their final destination on the drive. We need this
  3862. # otherwise parallel compilation will fail if a source is compiled first.
  3863. src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel_secure.cc: $(OPENSSL_DEP)
  3864. src/core/ext/filters/client_channel/lb_policy/xds/cds.cc: $(OPENSSL_DEP)
  3865. src/core/ext/filters/client_channel/lb_policy/xds/eds.cc: $(OPENSSL_DEP)
  3866. src/core/ext/filters/client_channel/lb_policy/xds/eds_drop.cc: $(OPENSSL_DEP)
  3867. src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_manager.cc: $(OPENSSL_DEP)
  3868. src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc: $(OPENSSL_DEP)
  3869. src/core/ext/transport/chttp2/client/secure/secure_channel_create.cc: $(OPENSSL_DEP)
  3870. src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.cc: $(OPENSSL_DEP)
  3871. src/core/ext/upb-generated/envoy/annotations/deprecation.upb.c: $(OPENSSL_DEP)
  3872. src/core/ext/upb-generated/envoy/annotations/resource.upb.c: $(OPENSSL_DEP)
  3873. src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.c: $(OPENSSL_DEP)
  3874. src/core/ext/upb-generated/envoy/config/cluster/v3/circuit_breaker.upb.c: $(OPENSSL_DEP)
  3875. src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.c: $(OPENSSL_DEP)
  3876. src/core/ext/upb-generated/envoy/config/cluster/v3/filter.upb.c: $(OPENSSL_DEP)
  3877. src/core/ext/upb-generated/envoy/config/cluster/v3/outlier_detection.upb.c: $(OPENSSL_DEP)
  3878. src/core/ext/upb-generated/envoy/config/core/v3/address.upb.c: $(OPENSSL_DEP)
  3879. src/core/ext/upb-generated/envoy/config/core/v3/backoff.upb.c: $(OPENSSL_DEP)
  3880. src/core/ext/upb-generated/envoy/config/core/v3/base.upb.c: $(OPENSSL_DEP)
  3881. src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.c: $(OPENSSL_DEP)
  3882. src/core/ext/upb-generated/envoy/config/core/v3/event_service_config.upb.c: $(OPENSSL_DEP)
  3883. src/core/ext/upb-generated/envoy/config/core/v3/extension.upb.c: $(OPENSSL_DEP)
  3884. src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.c: $(OPENSSL_DEP)
  3885. src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.c: $(OPENSSL_DEP)
  3886. src/core/ext/upb-generated/envoy/config/core/v3/http_uri.upb.c: $(OPENSSL_DEP)
  3887. src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.c: $(OPENSSL_DEP)
  3888. src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.c: $(OPENSSL_DEP)
  3889. src/core/ext/upb-generated/envoy/config/core/v3/socket_option.upb.c: $(OPENSSL_DEP)
  3890. src/core/ext/upb-generated/envoy/config/core/v3/substitution_format_string.upb.c: $(OPENSSL_DEP)
  3891. src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint.upb.c: $(OPENSSL_DEP)
  3892. src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint_components.upb.c: $(OPENSSL_DEP)
  3893. src/core/ext/upb-generated/envoy/config/endpoint/v3/load_report.upb.c: $(OPENSSL_DEP)
  3894. src/core/ext/upb-generated/envoy/config/listener/v3/api_listener.upb.c: $(OPENSSL_DEP)
  3895. src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.c: $(OPENSSL_DEP)
  3896. src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.c: $(OPENSSL_DEP)
  3897. src/core/ext/upb-generated/envoy/config/listener/v3/udp_listener_config.upb.c: $(OPENSSL_DEP)
  3898. src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.c: $(OPENSSL_DEP)
  3899. src/core/ext/upb-generated/envoy/config/route/v3/route.upb.c: $(OPENSSL_DEP)
  3900. src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.c: $(OPENSSL_DEP)
  3901. src/core/ext/upb-generated/envoy/config/route/v3/scoped_route.upb.c: $(OPENSSL_DEP)
  3902. src/core/ext/upb-generated/envoy/config/trace/v3/http_tracer.upb.c: $(OPENSSL_DEP)
  3903. src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.c: $(OPENSSL_DEP)
  3904. src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/cert.upb.c: $(OPENSSL_DEP)
  3905. src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.c: $(OPENSSL_DEP)
  3906. src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.c: $(OPENSSL_DEP)
  3907. src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls.upb.c: $(OPENSSL_DEP)
  3908. src/core/ext/upb-generated/envoy/service/cluster/v3/cds.upb.c: $(OPENSSL_DEP)
  3909. src/core/ext/upb-generated/envoy/service/discovery/v3/ads.upb.c: $(OPENSSL_DEP)
  3910. src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.c: $(OPENSSL_DEP)
  3911. src/core/ext/upb-generated/envoy/service/endpoint/v3/eds.upb.c: $(OPENSSL_DEP)
  3912. src/core/ext/upb-generated/envoy/service/listener/v3/lds.upb.c: $(OPENSSL_DEP)
  3913. src/core/ext/upb-generated/envoy/service/load_stats/v3/lrs.upb.c: $(OPENSSL_DEP)
  3914. src/core/ext/upb-generated/envoy/service/route/v3/rds.upb.c: $(OPENSSL_DEP)
  3915. src/core/ext/upb-generated/envoy/service/route/v3/srds.upb.c: $(OPENSSL_DEP)
  3916. src/core/ext/upb-generated/envoy/type/matcher/v3/metadata.upb.c: $(OPENSSL_DEP)
  3917. src/core/ext/upb-generated/envoy/type/matcher/v3/number.upb.c: $(OPENSSL_DEP)
  3918. src/core/ext/upb-generated/envoy/type/matcher/v3/path.upb.c: $(OPENSSL_DEP)
  3919. src/core/ext/upb-generated/envoy/type/matcher/v3/regex.upb.c: $(OPENSSL_DEP)
  3920. src/core/ext/upb-generated/envoy/type/matcher/v3/string.upb.c: $(OPENSSL_DEP)
  3921. src/core/ext/upb-generated/envoy/type/matcher/v3/value.upb.c: $(OPENSSL_DEP)
  3922. src/core/ext/upb-generated/envoy/type/metadata/v3/metadata.upb.c: $(OPENSSL_DEP)
  3923. src/core/ext/upb-generated/envoy/type/tracing/v3/custom_tag.upb.c: $(OPENSSL_DEP)
  3924. src/core/ext/upb-generated/envoy/type/v3/http.upb.c: $(OPENSSL_DEP)
  3925. src/core/ext/upb-generated/envoy/type/v3/percent.upb.c: $(OPENSSL_DEP)
  3926. src/core/ext/upb-generated/envoy/type/v3/range.upb.c: $(OPENSSL_DEP)
  3927. src/core/ext/upb-generated/envoy/type/v3/semantic_version.upb.c: $(OPENSSL_DEP)
  3928. src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.c: $(OPENSSL_DEP)
  3929. src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.c: $(OPENSSL_DEP)
  3930. src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.c: $(OPENSSL_DEP)
  3931. src/core/ext/upb-generated/udpa/annotations/migrate.upb.c: $(OPENSSL_DEP)
  3932. src/core/ext/upb-generated/udpa/annotations/security.upb.c: $(OPENSSL_DEP)
  3933. src/core/ext/upb-generated/udpa/annotations/sensitive.upb.c: $(OPENSSL_DEP)
  3934. src/core/ext/upb-generated/udpa/annotations/status.upb.c: $(OPENSSL_DEP)
  3935. src/core/ext/upb-generated/udpa/annotations/versioning.upb.c: $(OPENSSL_DEP)
  3936. src/core/ext/upb-generated/udpa/core/v1/authority.upb.c: $(OPENSSL_DEP)
  3937. src/core/ext/upb-generated/udpa/core/v1/collection_entry.upb.c: $(OPENSSL_DEP)
  3938. src/core/ext/upb-generated/udpa/core/v1/context_params.upb.c: $(OPENSSL_DEP)
  3939. src/core/ext/upb-generated/udpa/core/v1/resource.upb.c: $(OPENSSL_DEP)
  3940. src/core/ext/upb-generated/udpa/core/v1/resource_locator.upb.c: $(OPENSSL_DEP)
  3941. src/core/ext/upb-generated/udpa/core/v1/resource_name.upb.c: $(OPENSSL_DEP)
  3942. src/core/ext/xds/certificate_provider_registry.cc: $(OPENSSL_DEP)
  3943. src/core/ext/xds/google_mesh_ca_certificate_provider_factory.cc: $(OPENSSL_DEP)
  3944. src/core/ext/xds/xds_api.cc: $(OPENSSL_DEP)
  3945. src/core/ext/xds/xds_bootstrap.cc: $(OPENSSL_DEP)
  3946. src/core/ext/xds/xds_client.cc: $(OPENSSL_DEP)
  3947. src/core/ext/xds/xds_client_stats.cc: $(OPENSSL_DEP)
  3948. src/core/lib/http/httpcli_security_connector.cc: $(OPENSSL_DEP)
  3949. src/core/lib/security/authorization/authorization_engine.cc: $(OPENSSL_DEP)
  3950. src/core/lib/security/authorization/evaluate_args.cc: $(OPENSSL_DEP)
  3951. src/core/lib/security/context/security_context.cc: $(OPENSSL_DEP)
  3952. src/core/lib/security/credentials/alts/alts_credentials.cc: $(OPENSSL_DEP)
  3953. src/core/lib/security/credentials/alts/check_gcp_environment.cc: $(OPENSSL_DEP)
  3954. src/core/lib/security/credentials/alts/check_gcp_environment_linux.cc: $(OPENSSL_DEP)
  3955. src/core/lib/security/credentials/alts/check_gcp_environment_no_op.cc: $(OPENSSL_DEP)
  3956. src/core/lib/security/credentials/alts/check_gcp_environment_windows.cc: $(OPENSSL_DEP)
  3957. src/core/lib/security/credentials/alts/grpc_alts_credentials_client_options.cc: $(OPENSSL_DEP)
  3958. src/core/lib/security/credentials/alts/grpc_alts_credentials_options.cc: $(OPENSSL_DEP)
  3959. src/core/lib/security/credentials/alts/grpc_alts_credentials_server_options.cc: $(OPENSSL_DEP)
  3960. src/core/lib/security/credentials/composite/composite_credentials.cc: $(OPENSSL_DEP)
  3961. src/core/lib/security/credentials/credentials.cc: $(OPENSSL_DEP)
  3962. src/core/lib/security/credentials/credentials_metadata.cc: $(OPENSSL_DEP)
  3963. src/core/lib/security/credentials/fake/fake_credentials.cc: $(OPENSSL_DEP)
  3964. src/core/lib/security/credentials/google_default/credentials_generic.cc: $(OPENSSL_DEP)
  3965. src/core/lib/security/credentials/google_default/google_default_credentials.cc: $(OPENSSL_DEP)
  3966. src/core/lib/security/credentials/iam/iam_credentials.cc: $(OPENSSL_DEP)
  3967. src/core/lib/security/credentials/jwt/json_token.cc: $(OPENSSL_DEP)
  3968. src/core/lib/security/credentials/jwt/jwt_credentials.cc: $(OPENSSL_DEP)
  3969. src/core/lib/security/credentials/jwt/jwt_verifier.cc: $(OPENSSL_DEP)
  3970. src/core/lib/security/credentials/local/local_credentials.cc: $(OPENSSL_DEP)
  3971. src/core/lib/security/credentials/oauth2/oauth2_credentials.cc: $(OPENSSL_DEP)
  3972. src/core/lib/security/credentials/plugin/plugin_credentials.cc: $(OPENSSL_DEP)
  3973. src/core/lib/security/credentials/ssl/ssl_credentials.cc: $(OPENSSL_DEP)
  3974. src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.cc: $(OPENSSL_DEP)
  3975. src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc: $(OPENSSL_DEP)
  3976. src/core/lib/security/credentials/tls/tls_credentials.cc: $(OPENSSL_DEP)
  3977. src/core/lib/security/credentials/xds/xds_credentials.cc: $(OPENSSL_DEP)
  3978. src/core/lib/security/security_connector/alts/alts_security_connector.cc: $(OPENSSL_DEP)
  3979. src/core/lib/security/security_connector/fake/fake_security_connector.cc: $(OPENSSL_DEP)
  3980. src/core/lib/security/security_connector/load_system_roots_fallback.cc: $(OPENSSL_DEP)
  3981. src/core/lib/security/security_connector/load_system_roots_linux.cc: $(OPENSSL_DEP)
  3982. src/core/lib/security/security_connector/local/local_security_connector.cc: $(OPENSSL_DEP)
  3983. src/core/lib/security/security_connector/security_connector.cc: $(OPENSSL_DEP)
  3984. src/core/lib/security/security_connector/ssl/ssl_security_connector.cc: $(OPENSSL_DEP)
  3985. src/core/lib/security/security_connector/ssl_utils.cc: $(OPENSSL_DEP)
  3986. src/core/lib/security/security_connector/ssl_utils_config.cc: $(OPENSSL_DEP)
  3987. src/core/lib/security/security_connector/tls/tls_security_connector.cc: $(OPENSSL_DEP)
  3988. src/core/lib/security/transport/client_auth_filter.cc: $(OPENSSL_DEP)
  3989. src/core/lib/security/transport/secure_endpoint.cc: $(OPENSSL_DEP)
  3990. src/core/lib/security/transport/security_handshaker.cc: $(OPENSSL_DEP)
  3991. src/core/lib/security/transport/server_auth_filter.cc: $(OPENSSL_DEP)
  3992. src/core/lib/security/transport/tsi_error.cc: $(OPENSSL_DEP)
  3993. src/core/lib/security/util/json_util.cc: $(OPENSSL_DEP)
  3994. src/core/lib/surface/init_secure.cc: $(OPENSSL_DEP)
  3995. src/core/plugin_registry/grpc_plugin_registry.cc: $(OPENSSL_DEP)
  3996. src/core/tsi/alts/crypt/aes_gcm.cc: $(OPENSSL_DEP)
  3997. src/core/tsi/alts/crypt/gsec.cc: $(OPENSSL_DEP)
  3998. src/core/tsi/alts/frame_protector/alts_counter.cc: $(OPENSSL_DEP)
  3999. src/core/tsi/alts/frame_protector/alts_crypter.cc: $(OPENSSL_DEP)
  4000. src/core/tsi/alts/frame_protector/alts_frame_protector.cc: $(OPENSSL_DEP)
  4001. src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.cc: $(OPENSSL_DEP)
  4002. src/core/tsi/alts/frame_protector/alts_seal_privacy_integrity_crypter.cc: $(OPENSSL_DEP)
  4003. src/core/tsi/alts/frame_protector/alts_unseal_privacy_integrity_crypter.cc: $(OPENSSL_DEP)
  4004. src/core/tsi/alts/frame_protector/frame_handler.cc: $(OPENSSL_DEP)
  4005. src/core/tsi/alts/handshaker/alts_handshaker_client.cc: $(OPENSSL_DEP)
  4006. src/core/tsi/alts/handshaker/alts_shared_resource.cc: $(OPENSSL_DEP)
  4007. src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc: $(OPENSSL_DEP)
  4008. src/core/tsi/alts/handshaker/alts_tsi_utils.cc: $(OPENSSL_DEP)
  4009. src/core/tsi/alts/handshaker/transport_security_common_api.cc: $(OPENSSL_DEP)
  4010. src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.cc: $(OPENSSL_DEP)
  4011. src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.cc: $(OPENSSL_DEP)
  4012. src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.cc: $(OPENSSL_DEP)
  4013. src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.cc: $(OPENSSL_DEP)
  4014. src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc: $(OPENSSL_DEP)
  4015. src/core/tsi/fake_transport_security.cc: $(OPENSSL_DEP)
  4016. src/core/tsi/local_transport_security.cc: $(OPENSSL_DEP)
  4017. src/core/tsi/ssl/session_cache/ssl_session_boringssl.cc: $(OPENSSL_DEP)
  4018. src/core/tsi/ssl/session_cache/ssl_session_cache.cc: $(OPENSSL_DEP)
  4019. src/core/tsi/ssl/session_cache/ssl_session_openssl.cc: $(OPENSSL_DEP)
  4020. src/core/tsi/ssl_transport_security.cc: $(OPENSSL_DEP)
  4021. src/core/tsi/transport_security.cc: $(OPENSSL_DEP)
  4022. src/core/tsi/transport_security_grpc.cc: $(OPENSSL_DEP)
  4023. src/cpp/client/secure_credentials.cc: $(OPENSSL_DEP)
  4024. src/cpp/common/alts_context.cc: $(OPENSSL_DEP)
  4025. src/cpp/common/alts_util.cc: $(OPENSSL_DEP)
  4026. src/cpp/common/auth_property_iterator.cc: $(OPENSSL_DEP)
  4027. src/cpp/common/secure_auth_context.cc: $(OPENSSL_DEP)
  4028. src/cpp/common/secure_channel_arguments.cc: $(OPENSSL_DEP)
  4029. src/cpp/common/secure_create_auth_context.cc: $(OPENSSL_DEP)
  4030. src/cpp/common/tls_credentials_options.cc: $(OPENSSL_DEP)
  4031. src/cpp/common/tls_credentials_options_util.cc: $(OPENSSL_DEP)
  4032. src/cpp/ext/proto_server_reflection.cc: $(OPENSSL_DEP)
  4033. src/cpp/ext/proto_server_reflection_plugin.cc: $(OPENSSL_DEP)
  4034. src/cpp/server/channelz/channelz_service.cc: $(OPENSSL_DEP)
  4035. src/cpp/server/channelz/channelz_service_plugin.cc: $(OPENSSL_DEP)
  4036. src/cpp/server/secure_server_credentials.cc: $(OPENSSL_DEP)
  4037. src/cpp/util/error_details.cc: $(OPENSSL_DEP)
  4038. src/csharp/ext/grpc_csharp_ext.c: $(OPENSSL_DEP)
  4039. endif
  4040. .PHONY: all strip tools dep_error openssl_dep_error openssl_dep_message git_update stop buildtests buildtests_c buildtests_cxx test test_c test_cxx install install_c install_cxx install_csharp install-static install-certs strip strip-shared strip-static strip_c strip-shared_c strip-static_c strip_cxx strip-shared_cxx strip-static_cxx dep_c dep_cxx bins_dep_c bins_dep_cxx clean
  4041. .PHONY: printvars
  4042. printvars:
  4043. @$(foreach V,$(sort $(.VARIABLES)), $(if $(filter-out environment% default automatic, $(origin $V)),$(warning $V=$($V) ($(value $V)))))