Cider Isn't Darwin Emulation, Really
Something went wrong. Try again.
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742load("//buck/rules:cc.bzl", "cc_header_root", "cc_objects")load("//buck/rules:codegen.bzl", "configure_file")load("//buck/rules:darwin.bzl", "darwin_binary", "darwin_dylib")load("//buck/rules:files.bzl", "export_file")load("//buck/rules:install.bzl", "prefix_dir")# Targets over the python pin, materialized by scripts/buck-src.nu. The tree# itself is gitignored (content is pinned in nix/submodules.json); this file is# committed. One package per pin keeps what the Nix-lowered path has to parse# small enough to evaluate.# BEGIN generated: pin exportsload("//buck/generated:exports_python.bzl", "EXPORTS")# One export_file per file another package names by label, from the list# cider-exports keeps.[ export_file(name = _n, src = _s, visibility = ["PUBLIC"]) for _n, _s in EXPORTS.items()]# END generated: pin exports# HAND-WRITTEN, deliberately outside the generated blocks so --write does not drop it.## versions.h for the `python` wrapper, the same configure_file() perl needs: cmake writes# it at CONFIGURE time from versioner(python "2.7" "2.7"), so no ninja edge produces it.# One version here, hence NVERSIONS 1 and a VERSIONS list of one entry.configure_file( name = "python_versions_h", out = "versions.h", src = "//vendor/src/perl:versions_h_in", values = { "DEFAULTVERSION": "2.7", "NVERSIONS": "1", "PROJECT": "python", "UPROJECT": "PYTHON", "VERSIONS": " \"2.7\",", }, visibility = ["PUBLIC"],)# BEGIN generated: Python# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) Python -- review before committing.# cmake target: Python -> src/external/python/2.7/Python-2.7.16/Python# 113 sources in 2 flag groups: cmake gives individual# files their own defines and -include shims, and those decide symbol aliasing.# TODO these include dirs are GENERATED (codegen output):# src/external/python/2.7/Python-2.7.16# Sibling include dirs, staged as ONE tree with -I into each: headers here# reach each other with `#include "../<dir>/x.h"`, which only resolves if# the sibling is in the same staged tree.cc_header_root( name = "Python_inc_python_2_7_Python_2_7_16", headers = glob([ "2.7/Python-2.7.16/**/*", "2.7/Python-2.7.16/Include/*.h", "2.7/Python-2.7.16/Include/**/*.h", "2.7/Python-2.7.16/Include/*.c", ]), root = "2.7/Python-2.7.16", include_subdirs = [ ".", "Include", ], visibility = ["PUBLIC"],)cc_objects( name = "Python_obj", srcs = [ "2.7/Python-2.7.16/Modules/_codecsmodule.c", "2.7/Python-2.7.16/Modules/_sre.c", "2.7/Python-2.7.16/Modules/_weakref.c", "2.7/Python-2.7.16/Modules/config.c", "2.7/Python-2.7.16/Modules/errnomodule.c", "2.7/Python-2.7.16/Modules/gcmodule.c", "2.7/Python-2.7.16/Modules/getbuildinfo.c", "2.7/Python-2.7.16/Modules/getpath.c", "2.7/Python-2.7.16/Modules/posixmodule.c", "2.7/Python-2.7.16/Modules/pwdmodule.c", "2.7/Python-2.7.16/Modules/signalmodule.c", "2.7/Python-2.7.16/Modules/symtablemodule.c", "2.7/Python-2.7.16/Modules/threadmodule.c", "2.7/Python-2.7.16/Modules/xxsubtype.c", "2.7/Python-2.7.16/Modules/zipimport.c", "2.7/Python-2.7.16/Objects/abstract.c", "2.7/Python-2.7.16/Objects/boolobject.c", "2.7/Python-2.7.16/Objects/bufferobject.c", "2.7/Python-2.7.16/Objects/bytearrayobject.c", "2.7/Python-2.7.16/Objects/bytes_methods.c", "2.7/Python-2.7.16/Objects/capsule.c", "2.7/Python-2.7.16/Objects/cellobject.c", "2.7/Python-2.7.16/Objects/classobject.c", "2.7/Python-2.7.16/Objects/cobject.c", "2.7/Python-2.7.16/Objects/codeobject.c", "2.7/Python-2.7.16/Objects/complexobject.c", "2.7/Python-2.7.16/Objects/descrobject.c", "2.7/Python-2.7.16/Objects/dictobject.c", "2.7/Python-2.7.16/Objects/enumobject.c", "2.7/Python-2.7.16/Objects/exceptions.c", "2.7/Python-2.7.16/Objects/fileobject.c", "2.7/Python-2.7.16/Objects/floatobject.c", "2.7/Python-2.7.16/Objects/frameobject.c", "2.7/Python-2.7.16/Objects/funcobject.c", "2.7/Python-2.7.16/Objects/genobject.c", "2.7/Python-2.7.16/Objects/intobject.c", "2.7/Python-2.7.16/Objects/iterobject.c", "2.7/Python-2.7.16/Objects/listobject.c", "2.7/Python-2.7.16/Objects/longobject.c", "2.7/Python-2.7.16/Objects/memoryobject.c", "2.7/Python-2.7.16/Objects/methodobject.c", "2.7/Python-2.7.16/Objects/moduleobject.c", "2.7/Python-2.7.16/Objects/object.c", "2.7/Python-2.7.16/Objects/obmalloc.c", "2.7/Python-2.7.16/Objects/rangeobject.c", "2.7/Python-2.7.16/Objects/setobject.c", "2.7/Python-2.7.16/Objects/sliceobject.c", "2.7/Python-2.7.16/Objects/stringobject.c", "2.7/Python-2.7.16/Objects/structseq.c", "2.7/Python-2.7.16/Objects/tupleobject.c", "2.7/Python-2.7.16/Objects/typeobject.c", "2.7/Python-2.7.16/Objects/unicodectype.c", "2.7/Python-2.7.16/Objects/unicodeobject.c", "2.7/Python-2.7.16/Objects/weakrefobject.c", "2.7/Python-2.7.16/Parser/acceler.c", "2.7/Python-2.7.16/Parser/bitset.c", "2.7/Python-2.7.16/Parser/firstsets.c", "2.7/Python-2.7.16/Parser/grammar.c", "2.7/Python-2.7.16/Parser/grammar1.c", "2.7/Python-2.7.16/Parser/listnode.c", "2.7/Python-2.7.16/Parser/metagrammar.c", "2.7/Python-2.7.16/Parser/myreadline.c", "2.7/Python-2.7.16/Parser/node.c", "2.7/Python-2.7.16/Parser/parser.c", "2.7/Python-2.7.16/Parser/parsetok.c", "2.7/Python-2.7.16/Parser/pgen.c", "2.7/Python-2.7.16/Parser/tokenizer.c", "2.7/Python-2.7.16/Python/Python-ast.c", "2.7/Python-2.7.16/Python/_warnings.c", "2.7/Python-2.7.16/Python/asdl.c", "2.7/Python-2.7.16/Python/ast.c", "2.7/Python-2.7.16/Python/bltinmodule.c", "2.7/Python-2.7.16/Python/ceval.c", "2.7/Python-2.7.16/Python/codecs.c", "2.7/Python-2.7.16/Python/compile.c", "2.7/Python-2.7.16/Python/dtoa.c", "2.7/Python-2.7.16/Python/dynload_shlib.c", "2.7/Python-2.7.16/Python/errors.c", "2.7/Python-2.7.16/Python/formatter_string.c", "2.7/Python-2.7.16/Python/formatter_unicode.c", "2.7/Python-2.7.16/Python/frozen.c", "2.7/Python-2.7.16/Python/frozenmain.c", "2.7/Python-2.7.16/Python/future.c", "2.7/Python-2.7.16/Python/getargs.c", "2.7/Python-2.7.16/Python/getcompiler.c", "2.7/Python-2.7.16/Python/getcopyright.c", "2.7/Python-2.7.16/Python/getopt.c", "2.7/Python-2.7.16/Python/getplatform.c", "2.7/Python-2.7.16/Python/getversion.c", "2.7/Python-2.7.16/Python/graminit.c", "2.7/Python-2.7.16/Python/import.c", "2.7/Python-2.7.16/Python/importdl.c", "2.7/Python-2.7.16/Python/mactoolboxglue.c", "2.7/Python-2.7.16/Python/marshal.c", "2.7/Python-2.7.16/Python/modsupport.c", "2.7/Python-2.7.16/Python/mysnprintf.c", "2.7/Python-2.7.16/Python/mystrtoul.c", "2.7/Python-2.7.16/Python/peephole.c", "2.7/Python-2.7.16/Python/pyarena.c", "2.7/Python-2.7.16/Python/pyctype.c", "2.7/Python-2.7.16/Python/pyfpe.c", "2.7/Python-2.7.16/Python/pymath.c", "2.7/Python-2.7.16/Python/pystate.c", "2.7/Python-2.7.16/Python/pystrcmp.c", "2.7/Python-2.7.16/Python/pystrtod.c", "2.7/Python-2.7.16/Python/pythonrun.c", "2.7/Python-2.7.16/Python/random.c", "2.7/Python-2.7.16/Python/structmember.c", "2.7/Python-2.7.16/Python/symtable.c", "2.7/Python-2.7.16/Python/sysmodule.c", "2.7/Python-2.7.16/Python/thread.c", "2.7/Python-2.7.16/Python/traceback.c", ], compiler_flags = [ "-DDTRACE_PROBES_DISABLED=1", "-DEXEC_PREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DMACOSX", "-DNDEBUG", "-DPLATFORM=\"darwin\"", "-DPREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DPYTHONPATH=\":plat-darwin:plat-mac:plat-mac/lib-scriptpackages:lib-tk:lib-old\"", "-DPython_EXPORTS", "-DSUFFIX=\"\"", "-DVERSION=\"2.7\"", "-DVPATH=\".\"", "-D_LIBC_NO_FEATURE_VERIFICATION", "-fPIC", "-std=c99", "-fno-common", "-fno-strict-aliasing", "-fwrapv", "-w", "-nostdinc", ], toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", "//vendor/src:fw_CoreFoundation", "//src/darwin/frameworks:fw_AE", "//src/darwin/frameworks:fw_Carbon", "//src/darwin/frameworks:fw_CarbonCore", "//src/darwin/frameworks:fw_CoreServices", "//src/darwin/frameworks:fw_FSEvents", "//src/darwin/frameworks:fw_HIToolbox", "//src/darwin/frameworks:fw_LaunchServices", "//src/darwin/frameworks:fw_QD", "//src/darwin/frameworks:fw_SearchKit", ":Python_inc_python_2_7_Python_2_7_16", ], visibility = ["PUBLIC"],)cc_objects( name = "Python_obj2", srcs = [ "2.7/Python-2.7.16/Modules/main.c", ], compiler_flags = [ "-DDTRACE_PROBES_DISABLED=1", "-DEXEC_PREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DMACOSX", "-DNDEBUG", "-DPLATFORM=\"darwin\"", "-DPREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DPYTHONPATH=\":plat-darwin:plat-mac:plat-mac/lib-scriptpackages:lib-tk:lib-old\"", "-DPython_EXPORTS", "-DSUFFIX=\"\"", "-DVERSION=\"2.7\"", "-DVPATH=\".\"", "-D_LIBC_NO_FEATURE_VERIFICATION", "-fPIC", "-std=c99", "-fno-common", "-fno-strict-aliasing", "-fwrapv", "-w", "-nostdinc", "-DOPEN_SOURCE", ], toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", "//vendor/src:fw_CoreFoundation", "//src/darwin/frameworks:fw_AE", "//src/darwin/frameworks:fw_Carbon", "//src/darwin/frameworks:fw_CarbonCore", "//src/darwin/frameworks:fw_CoreServices", "//src/darwin/frameworks:fw_FSEvents", "//src/darwin/frameworks:fw_HIToolbox", "//src/darwin/frameworks:fw_LaunchServices", "//src/darwin/frameworks:fw_QD", "//src/darwin/frameworks:fw_SearchKit", ":Python_inc_python_2_7_Python_2_7_16", ], visibility = ["PUBLIC"],)# END generated: Python# BEGIN generated: Python dylibs# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) --dylibs Python -- review before committing.# Links 1 cmake object library/ies, 2 flag groups in total.# buck-registry: src/external/python/2.7/Python-2.7.16/Python = Python_dylibdarwin_dylib( name = "Python_dylib", dylib_name = "Python", install_name = "/System/Library/Frameworks/Python.framework/Versions/2.7/Python", compatibility_version = "2.7.0", current_version = "2.7.16", objs = [ # Python ":Python_obj", ":Python_obj2", ], siblings = [ "//vendor/src:system_final", ], toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", ], visibility = ["PUBLIC"],)# END generated: Python dylibs# BEGIN generated: py27_zlib# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) py27_zlib -- review before committing.# cmake target: py27_zlib -> py27_zlib# TODO these include dirs are GENERATED (codegen output):# src/external/python/2.7/Python-2.7.16# Sibling include dirs, staged as ONE tree with -I into each: headers here# reach each other with `#include "../<dir>/x.h"`, which only resolves if# the sibling is in the same staged tree.cc_header_root( name = "py27_zlib_inc_python_2_7_Python_2_7_16", headers = glob([ "2.7/Python-2.7.16/**/*", "2.7/Python-2.7.16/Include/*.h", "2.7/Python-2.7.16/Include/**/*.h", "2.7/Python-2.7.16/Include/*.c", ]), root = "2.7/Python-2.7.16", include_subdirs = [ ".", "Include", ], visibility = ["PUBLIC"],)cc_objects( name = "py27_zlib_obj", srcs = [ "2.7/Python-2.7.16/Modules/zlibmodule.c", ], compiler_flags = [ "-DDTRACE_PROBES_DISABLED=1", "-DEXEC_PREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DMACOSX", "-DNDEBUG", "-DPLATFORM=\"darwin\"", "-DPREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DPYTHONPATH=\":plat-darwin:plat-mac:plat-mac/lib-scriptpackages:lib-tk:lib-old\"", "-DSUFFIX=\"\"", "-DVERSION=\"2.7\"", "-DVPATH=\".\"", "-D_LIBC_NO_FEATURE_VERIFICATION", "-Dpy27_zlib_EXPORTS", "-fPIC", "-std=c99", "-fno-common", "-fno-strict-aliasing", "-fwrapv", "-w", "-nostdinc", ], toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", ":py27_zlib_inc_python_2_7_Python_2_7_16", ], visibility = ["PUBLIC"],)# END generated: py27_zlib# BEGIN generated: py27_zlib dylibs# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) --dylibs py27_zlib -- review before committing.# Links 1 cmake object library/ies, 1 flag groups in total.# buck-registry: src/external/python/2.7/Python-2.7.16/zlib.so = py27_zlib_dylibdarwin_dylib( name = "py27_zlib_dylib", dylib_name = "zlib.so", install_name = "", compatibility_version = "1.0.0", objs = [ # py27_zlib ":py27_zlib_obj", ], siblings = [ "//vendor/src:z_dylib", "//vendor/src:system_final", ], linker_flags = [ "-Wl,-bundle", "-Wl,-flat_namespace", ], link_flag_files = { "-Wl,-bundle_loader": "//vendor/src/python:python27exe", }, toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", "//vendor/src/python:Python_dylib", ], visibility = ["PUBLIC"],)# END generated: py27_zlib dylibs# BEGIN generated: py27_unicodedata# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) py27_unicodedata -- review before committing.# cmake target: py27_unicodedata -> py27_unicodedata# TODO these include dirs are GENERATED (codegen output):# src/external/python/2.7/Python-2.7.16# Sibling include dirs, staged as ONE tree with -I into each: headers here# reach each other with `#include "../<dir>/x.h"`, which only resolves if# the sibling is in the same staged tree.cc_header_root( name = "py27_unicodedata_inc_python_2_7_Python_2_7_16", headers = glob([ "2.7/Python-2.7.16/**/*", "2.7/Python-2.7.16/Include/*.h", "2.7/Python-2.7.16/Include/**/*.h", "2.7/Python-2.7.16/Include/*.c", ]), root = "2.7/Python-2.7.16", include_subdirs = [ ".", "Include", ], visibility = ["PUBLIC"],)cc_objects( name = "py27_unicodedata_obj", srcs = [ "2.7/Python-2.7.16/Modules/unicodedata.c", ], compiler_flags = [ "-DDTRACE_PROBES_DISABLED=1", "-DEXEC_PREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DMACOSX", "-DNDEBUG", "-DPLATFORM=\"darwin\"", "-DPREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DPYTHONPATH=\":plat-darwin:plat-mac:plat-mac/lib-scriptpackages:lib-tk:lib-old\"", "-DSUFFIX=\"\"", "-DVERSION=\"2.7\"", "-DVPATH=\".\"", "-D_LIBC_NO_FEATURE_VERIFICATION", "-Dpy27_unicodedata_EXPORTS", "-fPIC", "-std=c99", "-fno-common", "-fno-strict-aliasing", "-fwrapv", "-w", "-nostdinc", ], toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", ":py27_unicodedata_inc_python_2_7_Python_2_7_16", ], visibility = ["PUBLIC"],)# END generated: py27_unicodedata# BEGIN generated: py27_unicodedata dylibs# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) --dylibs py27_unicodedata -- review before committing.# Links 1 cmake object library/ies, 1 flag groups in total.# buck-registry: src/external/python/2.7/Python-2.7.16/unicodedata.so = py27_unicodedata_dylibdarwin_dylib( name = "py27_unicodedata_dylib", dylib_name = "unicodedata.so", install_name = "", compatibility_version = "1.0.0", objs = [ # py27_unicodedata ":py27_unicodedata_obj", ], siblings = [ "//vendor/src:system_final", ], linker_flags = [ "-Wl,-bundle", "-Wl,-flat_namespace", ], link_flag_files = { "-Wl,-bundle_loader": "//vendor/src/python:python27exe", }, toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", "//vendor/src/python:Python_dylib", ], visibility = ["PUBLIC"],)# END generated: py27_unicodedata dylibs# BEGIN generated: py27_time# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) py27_time -- review before committing.# cmake target: py27_time -> py27_time# TODO these include dirs are GENERATED (codegen output):# src/external/python/2.7/Python-2.7.16# Sibling include dirs, staged as ONE tree with -I into each: headers here# reach each other with `#include "../<dir>/x.h"`, which only resolves if# the sibling is in the same staged tree.cc_header_root( name = "py27_time_inc_python_2_7_Python_2_7_16", headers = glob([ "2.7/Python-2.7.16/**/*", "2.7/Python-2.7.16/Include/*.h", "2.7/Python-2.7.16/Include/**/*.h", "2.7/Python-2.7.16/Include/*.c", ]), root = "2.7/Python-2.7.16", include_subdirs = [ ".", "Include", ], visibility = ["PUBLIC"],)cc_objects( name = "py27_time_obj", srcs = [ "2.7/Python-2.7.16/Modules/timemodule.c", ], compiler_flags = [ "-DDTRACE_PROBES_DISABLED=1", "-DEXEC_PREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DMACOSX", "-DNDEBUG", "-DPLATFORM=\"darwin\"", "-DPREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DPYTHONPATH=\":plat-darwin:plat-mac:plat-mac/lib-scriptpackages:lib-tk:lib-old\"", "-DSUFFIX=\"\"", "-DVERSION=\"2.7\"", "-DVPATH=\".\"", "-D_LIBC_NO_FEATURE_VERIFICATION", "-Dpy27_time_EXPORTS", "-fPIC", "-std=c99", "-fno-common", "-fno-strict-aliasing", "-fwrapv", "-w", "-nostdinc", ], toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", ":py27_time_inc_python_2_7_Python_2_7_16", ], visibility = ["PUBLIC"],)# END generated: py27_time# BEGIN generated: py27_time dylibs# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) --dylibs py27_time -- review before committing.# Links 1 cmake object library/ies, 1 flag groups in total.# buck-registry: src/external/python/2.7/Python-2.7.16/time.so = py27_time_dylibdarwin_dylib( name = "py27_time_dylib", dylib_name = "time.so", install_name = "", compatibility_version = "1.0.0", objs = [ # py27_time ":py27_time_obj", ], siblings = [ "//vendor/src:system_final", ], linker_flags = [ "-Wl,-bundle", "-Wl,-flat_namespace", ], link_flag_files = { "-Wl,-bundle_loader": "//vendor/src/python:python27exe", }, toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", "//vendor/src/python:Python_dylib", ], visibility = ["PUBLIC"],)# END generated: py27_time dylibs# BEGIN generated: py27_termios# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) py27_termios -- review before committing.# cmake target: py27_termios -> py27_termios# TODO these include dirs are GENERATED (codegen output):# src/external/python/2.7/Python-2.7.16# Sibling include dirs, staged as ONE tree with -I into each: headers here# reach each other with `#include "../<dir>/x.h"`, which only resolves if# the sibling is in the same staged tree.cc_header_root( name = "py27_termios_inc_python_2_7_Python_2_7_16", headers = glob([ "2.7/Python-2.7.16/**/*", "2.7/Python-2.7.16/Include/*.h", "2.7/Python-2.7.16/Include/**/*.h", "2.7/Python-2.7.16/Include/*.c", ]), root = "2.7/Python-2.7.16", include_subdirs = [ ".", "Include", ], visibility = ["PUBLIC"],)cc_objects( name = "py27_termios_obj", srcs = [ "2.7/Python-2.7.16/Modules/termios.c", ], compiler_flags = [ "-DDTRACE_PROBES_DISABLED=1", "-DEXEC_PREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DMACOSX", "-DNDEBUG", "-DPLATFORM=\"darwin\"", "-DPREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DPYTHONPATH=\":plat-darwin:plat-mac:plat-mac/lib-scriptpackages:lib-tk:lib-old\"", "-DSUFFIX=\"\"", "-DVERSION=\"2.7\"", "-DVPATH=\".\"", "-D_LIBC_NO_FEATURE_VERIFICATION", "-Dpy27_termios_EXPORTS", "-fPIC", "-std=c99", "-fno-common", "-fno-strict-aliasing", "-fwrapv", "-w", "-nostdinc", ], toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", ":py27_termios_inc_python_2_7_Python_2_7_16", ], visibility = ["PUBLIC"],)# END generated: py27_termios# BEGIN generated: py27_termios dylibs# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) --dylibs py27_termios -- review before committing.# Links 1 cmake object library/ies, 1 flag groups in total.# buck-registry: src/external/python/2.7/Python-2.7.16/termios.so = py27_termios_dylibdarwin_dylib( name = "py27_termios_dylib", dylib_name = "termios.so", install_name = "", compatibility_version = "1.0.0", objs = [ # py27_termios ":py27_termios_obj", ], siblings = [ "//vendor/src:system_final", ], linker_flags = [ "-Wl,-bundle", "-Wl,-flat_namespace", ], link_flag_files = { "-Wl,-bundle_loader": "//vendor/src/python:python27exe", }, toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", "//vendor/src/python:Python_dylib", ], visibility = ["PUBLIC"],)# END generated: py27_termios dylibs# BEGIN generated: py27_syslog# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) py27_syslog -- review before committing.# cmake target: py27_syslog -> py27_syslog# TODO these include dirs are GENERATED (codegen output):# src/external/python/2.7/Python-2.7.16# Sibling include dirs, staged as ONE tree with -I into each: headers here# reach each other with `#include "../<dir>/x.h"`, which only resolves if# the sibling is in the same staged tree.cc_header_root( name = "py27_syslog_inc_python_2_7_Python_2_7_16", headers = glob([ "2.7/Python-2.7.16/**/*", "2.7/Python-2.7.16/Include/*.h", "2.7/Python-2.7.16/Include/**/*.h", "2.7/Python-2.7.16/Include/*.c", ]), root = "2.7/Python-2.7.16", include_subdirs = [ ".", "Include", ], visibility = ["PUBLIC"],)cc_objects( name = "py27_syslog_obj", srcs = [ "2.7/Python-2.7.16/Modules/syslogmodule.c", ], compiler_flags = [ "-DDTRACE_PROBES_DISABLED=1", "-DEXEC_PREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DMACOSX", "-DNDEBUG", "-DPLATFORM=\"darwin\"", "-DPREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DPYTHONPATH=\":plat-darwin:plat-mac:plat-mac/lib-scriptpackages:lib-tk:lib-old\"", "-DSUFFIX=\"\"", "-DVERSION=\"2.7\"", "-DVPATH=\".\"", "-D_LIBC_NO_FEATURE_VERIFICATION", "-Dpy27_syslog_EXPORTS", "-fPIC", "-std=c99", "-fno-common", "-fno-strict-aliasing", "-fwrapv", "-w", "-nostdinc", ], toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", ":py27_syslog_inc_python_2_7_Python_2_7_16", ], visibility = ["PUBLIC"],)# END generated: py27_syslog# BEGIN generated: py27_syslog dylibs# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) --dylibs py27_syslog -- review before committing.# Links 1 cmake object library/ies, 1 flag groups in total.# buck-registry: src/external/python/2.7/Python-2.7.16/syslog.so = py27_syslog_dylibdarwin_dylib( name = "py27_syslog_dylib", dylib_name = "syslog.so", install_name = "", compatibility_version = "1.0.0", objs = [ # py27_syslog ":py27_syslog_obj", ], siblings = [ "//vendor/src:system_final", ], linker_flags = [ "-Wl,-bundle", "-Wl,-flat_namespace", ], link_flag_files = { "-Wl,-bundle_loader": "//vendor/src/python:python27exe", }, toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", "//vendor/src/python:Python_dylib", ], visibility = ["PUBLIC"],)# END generated: py27_syslog dylibs# BEGIN generated: py27_strop# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) py27_strop -- review before committing.# cmake target: py27_strop -> py27_strop# TODO these include dirs are GENERATED (codegen output):# src/external/python/2.7/Python-2.7.16# Sibling include dirs, staged as ONE tree with -I into each: headers here# reach each other with `#include "../<dir>/x.h"`, which only resolves if# the sibling is in the same staged tree.cc_header_root( name = "py27_strop_inc_python_2_7_Python_2_7_16", headers = glob([ "2.7/Python-2.7.16/**/*", "2.7/Python-2.7.16/Include/*.h", "2.7/Python-2.7.16/Include/**/*.h", "2.7/Python-2.7.16/Include/*.c", ]), root = "2.7/Python-2.7.16", include_subdirs = [ ".", "Include", ], visibility = ["PUBLIC"],)cc_objects( name = "py27_strop_obj", srcs = [ "2.7/Python-2.7.16/Modules/stropmodule.c", ], compiler_flags = [ "-DDTRACE_PROBES_DISABLED=1", "-DEXEC_PREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DMACOSX", "-DNDEBUG", "-DPLATFORM=\"darwin\"", "-DPREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DPYTHONPATH=\":plat-darwin:plat-mac:plat-mac/lib-scriptpackages:lib-tk:lib-old\"", "-DSUFFIX=\"\"", "-DVERSION=\"2.7\"", "-DVPATH=\".\"", "-D_LIBC_NO_FEATURE_VERIFICATION", "-Dpy27_strop_EXPORTS", "-fPIC", "-std=c99", "-fno-common", "-fno-strict-aliasing", "-fwrapv", "-w", "-nostdinc", ], toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", ":py27_strop_inc_python_2_7_Python_2_7_16", ], visibility = ["PUBLIC"],)# END generated: py27_strop# BEGIN generated: py27_strop dylibs# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) --dylibs py27_strop -- review before committing.# Links 1 cmake object library/ies, 1 flag groups in total.# buck-registry: src/external/python/2.7/Python-2.7.16/strop.so = py27_strop_dylibdarwin_dylib( name = "py27_strop_dylib", dylib_name = "strop.so", install_name = "", compatibility_version = "1.0.0", objs = [ # py27_strop ":py27_strop_obj", ], siblings = [ "//vendor/src:system_final", ], linker_flags = [ "-Wl,-bundle", "-Wl,-flat_namespace", ], link_flag_files = { "-Wl,-bundle_loader": "//vendor/src/python:python27exe", }, toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", "//vendor/src/python:Python_dylib", ], visibility = ["PUBLIC"],)# END generated: py27_strop dylibs# BEGIN generated: py27_select# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) py27_select -- review before committing.# cmake target: py27_select -> py27_select# TODO these include dirs are GENERATED (codegen output):# src/external/python/2.7/Python-2.7.16# Sibling include dirs, staged as ONE tree with -I into each: headers here# reach each other with `#include "../<dir>/x.h"`, which only resolves if# the sibling is in the same staged tree.cc_header_root( name = "py27_select_inc_python_2_7_Python_2_7_16", headers = glob([ "2.7/Python-2.7.16/**/*", "2.7/Python-2.7.16/Include/*.h", "2.7/Python-2.7.16/Include/**/*.h", "2.7/Python-2.7.16/Include/*.c", ]), root = "2.7/Python-2.7.16", include_subdirs = [ ".", "Include", ], visibility = ["PUBLIC"],)cc_objects( name = "py27_select_obj", srcs = [ "2.7/Python-2.7.16/Modules/selectmodule.c", ], compiler_flags = [ "-DDTRACE_PROBES_DISABLED=1", "-DEXEC_PREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DMACOSX", "-DNDEBUG", "-DPLATFORM=\"darwin\"", "-DPREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DPYTHONPATH=\":plat-darwin:plat-mac:plat-mac/lib-scriptpackages:lib-tk:lib-old\"", "-DSUFFIX=\"\"", "-DVERSION=\"2.7\"", "-DVPATH=\".\"", "-D_LIBC_NO_FEATURE_VERIFICATION", "-Dpy27_select_EXPORTS", "-fPIC", "-std=c99", "-fno-common", "-fno-strict-aliasing", "-fwrapv", "-w", "-nostdinc", ], toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", ":py27_select_inc_python_2_7_Python_2_7_16", ], visibility = ["PUBLIC"],)# END generated: py27_select# BEGIN generated: py27_select dylibs# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) --dylibs py27_select -- review before committing.# Links 1 cmake object library/ies, 1 flag groups in total.# buck-registry: src/external/python/2.7/Python-2.7.16/select.so = py27_select_dylibdarwin_dylib( name = "py27_select_dylib", dylib_name = "select.so", install_name = "", compatibility_version = "1.0.0", objs = [ # py27_select ":py27_select_obj", ], siblings = [ "//vendor/src:system_final", ], linker_flags = [ "-Wl,-bundle", "-Wl,-flat_namespace", ], link_flag_files = { "-Wl,-bundle_loader": "//vendor/src/python:python27exe", }, toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", "//vendor/src/python:Python_dylib", ], visibility = ["PUBLIC"],)# END generated: py27_select dylibs# BEGIN generated: py27_resource# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) py27_resource -- review before committing.# cmake target: py27_resource -> py27_resource# TODO these include dirs are GENERATED (codegen output):# src/external/python/2.7/Python-2.7.16# Sibling include dirs, staged as ONE tree with -I into each: headers here# reach each other with `#include "../<dir>/x.h"`, which only resolves if# the sibling is in the same staged tree.cc_header_root( name = "py27_resource_inc_python_2_7_Python_2_7_16", headers = glob([ "2.7/Python-2.7.16/**/*", "2.7/Python-2.7.16/Include/*.h", "2.7/Python-2.7.16/Include/**/*.h", "2.7/Python-2.7.16/Include/*.c", ]), root = "2.7/Python-2.7.16", include_subdirs = [ ".", "Include", ], visibility = ["PUBLIC"],)cc_objects( name = "py27_resource_obj", srcs = [ "2.7/Python-2.7.16/Modules/resource.c", ], compiler_flags = [ "-DDTRACE_PROBES_DISABLED=1", "-DEXEC_PREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DMACOSX", "-DNDEBUG", "-DPLATFORM=\"darwin\"", "-DPREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DPYTHONPATH=\":plat-darwin:plat-mac:plat-mac/lib-scriptpackages:lib-tk:lib-old\"", "-DSUFFIX=\"\"", "-DVERSION=\"2.7\"", "-DVPATH=\".\"", "-D_LIBC_NO_FEATURE_VERIFICATION", "-Dpy27_resource_EXPORTS", "-fPIC", "-std=c99", "-fno-common", "-fno-strict-aliasing", "-fwrapv", "-w", "-nostdinc", ], toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", ":py27_resource_inc_python_2_7_Python_2_7_16", ], visibility = ["PUBLIC"],)# END generated: py27_resource# BEGIN generated: py27_resource dylibs# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) --dylibs py27_resource -- review before committing.# Links 1 cmake object library/ies, 1 flag groups in total.# buck-registry: src/external/python/2.7/Python-2.7.16/resource.so = py27_resource_dylibdarwin_dylib( name = "py27_resource_dylib", dylib_name = "resource.so", install_name = "", compatibility_version = "1.0.0", objs = [ # py27_resource ":py27_resource_obj", ], siblings = [ "//vendor/src:system_final", ], linker_flags = [ "-Wl,-bundle", "-Wl,-flat_namespace", ], link_flag_files = { "-Wl,-bundle_loader": "//vendor/src/python:python27exe", }, toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", "//vendor/src/python:Python_dylib", ], visibility = ["PUBLIC"],)# END generated: py27_resource dylibs# BEGIN generated: py27_readline# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) py27_readline -- review before committing.# cmake target: py27_readline -> py27_readline# TODO these include dirs are GENERATED (codegen output):# src/external/python/2.7/Python-2.7.16# Sibling include dirs, staged as ONE tree with -I into each: headers here# reach each other with `#include "../<dir>/x.h"`, which only resolves if# the sibling is in the same staged tree.cc_header_root( name = "py27_readline_inc_python_2_7_Python_2_7_16", headers = glob([ "2.7/Python-2.7.16/**/*", "2.7/Python-2.7.16/Include/*.h", "2.7/Python-2.7.16/Include/**/*.h", "2.7/Python-2.7.16/Include/*.c", ]), root = "2.7/Python-2.7.16", include_subdirs = [ ".", "Include", ], visibility = ["PUBLIC"],)cc_objects( name = "py27_readline_obj", srcs = [ "2.7/Python-2.7.16/Modules/readline.c", ], compiler_flags = [ "-DDTRACE_PROBES_DISABLED=1", "-DEXEC_PREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DMACOSX", "-DNDEBUG", "-DPLATFORM=\"darwin\"", "-DPREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DPYTHONPATH=\":plat-darwin:plat-mac:plat-mac/lib-scriptpackages:lib-tk:lib-old\"", "-DSUFFIX=\"\"", "-DVERSION=\"2.7\"", "-DVPATH=\".\"", "-D_LIBC_NO_FEATURE_VERIFICATION", "-Dpy27_readline_EXPORTS", "-fPIC", "-std=c99", "-fno-common", "-fno-strict-aliasing", "-fwrapv", "-w", "-nostdinc", ], toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", ":py27_readline_inc_python_2_7_Python_2_7_16", ], visibility = ["PUBLIC"],)# END generated: py27_readline# BEGIN generated: py27_readline dylibs# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) --dylibs py27_readline -- review before committing.# Links 1 cmake object library/ies, 1 flag groups in total.# buck-registry: src/external/python/2.7/Python-2.7.16/readline.so = py27_readline_dylibdarwin_dylib( name = "py27_readline_dylib", dylib_name = "readline.so", install_name = "", compatibility_version = "1.0.0", objs = [ # py27_readline ":py27_readline_obj", ], siblings = [ "//vendor/src:edit_dylib", "//vendor/src:ncurses_dylib", "//vendor/src:system_final", ], linker_flags = [ "-Wl,-bundle", "-Wl,-flat_namespace", ], link_flag_files = { "-Wl,-bundle_loader": "//vendor/src/python:python27exe", }, toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", "//vendor/src/python:Python_dylib", ], visibility = ["PUBLIC"],)# END generated: py27_readline dylibs# BEGIN generated: py27_pyexpat# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) py27_pyexpat -- review before committing.# cmake target: py27_pyexpat -> py27_pyexpat# TODO these include dirs are GENERATED (codegen output):# src/external/python/2.7/Python-2.7.16# Sibling include dirs, staged as ONE tree with -I into each: headers here# reach each other with `#include "../<dir>/x.h"`, which only resolves if# the sibling is in the same staged tree.cc_header_root( name = "py27_pyexpat_inc_python_2_7_Python_2_7_16", headers = glob([ "2.7/Python-2.7.16/**/*", "2.7/Python-2.7.16/Include/*.h", "2.7/Python-2.7.16/Include/**/*.h", "2.7/Python-2.7.16/Include/*.c", ]), root = "2.7/Python-2.7.16", include_subdirs = [ ".", "Include", ], visibility = ["PUBLIC"],)cc_objects( name = "py27_pyexpat_obj", srcs = [ "2.7/Python-2.7.16/Modules/pyexpat.c", ], compiler_flags = [ "-DDTRACE_PROBES_DISABLED=1", "-DEXEC_PREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DMACOSX", "-DNDEBUG", "-DPLATFORM=\"darwin\"", "-DPREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DPYTHONPATH=\":plat-darwin:plat-mac:plat-mac/lib-scriptpackages:lib-tk:lib-old\"", "-DSUFFIX=\"\"", "-DVERSION=\"2.7\"", "-DVPATH=\".\"", "-D_LIBC_NO_FEATURE_VERIFICATION", "-Dpy27_pyexpat_EXPORTS", "-fPIC", "-std=c99", "-fno-common", "-fno-strict-aliasing", "-fwrapv", "-w", "-nostdinc", ], toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", ":py27_pyexpat_inc_python_2_7_Python_2_7_16", ], visibility = ["PUBLIC"],)# END generated: py27_pyexpat# BEGIN generated: py27_pyexpat dylibs# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) --dylibs py27_pyexpat -- review before committing.# Links 1 cmake object library/ies, 1 flag groups in total.# buck-registry: src/external/python/2.7/Python-2.7.16/pyexpat.so = py27_pyexpat_dylibdarwin_dylib( name = "py27_pyexpat_dylib", dylib_name = "pyexpat.so", install_name = "", compatibility_version = "1.0.0", objs = [ # py27_pyexpat ":py27_pyexpat_obj", ], siblings = [ "//vendor/src:expat_dylib", "//vendor/src:system_final", ], linker_flags = [ "-Wl,-bundle", "-Wl,-flat_namespace", ], link_flag_files = { "-Wl,-bundle_loader": "//vendor/src/python:python27exe", }, toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", "//vendor/src/python:Python_dylib", ], visibility = ["PUBLIC"],)# END generated: py27_pyexpat dylibs# BEGIN generated: py27_parser# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) py27_parser -- review before committing.# cmake target: py27_parser -> py27_parser# TODO these include dirs are GENERATED (codegen output):# src/external/python/2.7/Python-2.7.16# Sibling include dirs, staged as ONE tree with -I into each: headers here# reach each other with `#include "../<dir>/x.h"`, which only resolves if# the sibling is in the same staged tree.cc_header_root( name = "py27_parser_inc_python_2_7_Python_2_7_16", headers = glob([ "2.7/Python-2.7.16/**/*", "2.7/Python-2.7.16/Include/*.h", "2.7/Python-2.7.16/Include/**/*.h", "2.7/Python-2.7.16/Include/*.c", ]), root = "2.7/Python-2.7.16", include_subdirs = [ ".", "Include", ], visibility = ["PUBLIC"],)cc_objects( name = "py27_parser_obj", srcs = [ "2.7/Python-2.7.16/Modules/parsermodule.c", ], compiler_flags = [ "-DDTRACE_PROBES_DISABLED=1", "-DEXEC_PREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DMACOSX", "-DNDEBUG", "-DPLATFORM=\"darwin\"", "-DPREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DPYTHONPATH=\":plat-darwin:plat-mac:plat-mac/lib-scriptpackages:lib-tk:lib-old\"", "-DSUFFIX=\"\"", "-DVERSION=\"2.7\"", "-DVPATH=\".\"", "-D_LIBC_NO_FEATURE_VERIFICATION", "-Dpy27_parser_EXPORTS", "-fPIC", "-std=c99", "-fno-common", "-fno-strict-aliasing", "-fwrapv", "-w", "-nostdinc", ], toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", ":py27_parser_inc_python_2_7_Python_2_7_16", ], visibility = ["PUBLIC"],)# END generated: py27_parser# BEGIN generated: py27_parser dylibs# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) --dylibs py27_parser -- review before committing.# Links 1 cmake object library/ies, 1 flag groups in total.# buck-registry: src/external/python/2.7/Python-2.7.16/parser.so = py27_parser_dylibdarwin_dylib( name = "py27_parser_dylib", dylib_name = "parser.so", install_name = "", compatibility_version = "1.0.0", objs = [ # py27_parser ":py27_parser_obj", ], siblings = [ "//vendor/src:system_final", ], linker_flags = [ "-Wl,-bundle", "-Wl,-flat_namespace", ], link_flag_files = { "-Wl,-bundle_loader": "//vendor/src/python:python27exe", }, toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", "//vendor/src/python:Python_dylib", ], visibility = ["PUBLIC"],)# END generated: py27_parser dylibs# BEGIN generated: py27_operator# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) py27_operator -- review before committing.# cmake target: py27_operator -> py27_operator# TODO these include dirs are GENERATED (codegen output):# src/external/python/2.7/Python-2.7.16# Sibling include dirs, staged as ONE tree with -I into each: headers here# reach each other with `#include "../<dir>/x.h"`, which only resolves if# the sibling is in the same staged tree.cc_header_root( name = "py27_operator_inc_python_2_7_Python_2_7_16", headers = glob([ "2.7/Python-2.7.16/**/*", "2.7/Python-2.7.16/Include/*.h", "2.7/Python-2.7.16/Include/**/*.h", "2.7/Python-2.7.16/Include/*.c", ]), root = "2.7/Python-2.7.16", include_subdirs = [ ".", "Include", ], visibility = ["PUBLIC"],)cc_objects( name = "py27_operator_obj", srcs = [ "2.7/Python-2.7.16/Modules/operator.c", ], compiler_flags = [ "-DDTRACE_PROBES_DISABLED=1", "-DEXEC_PREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DMACOSX", "-DNDEBUG", "-DPLATFORM=\"darwin\"", "-DPREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DPYTHONPATH=\":plat-darwin:plat-mac:plat-mac/lib-scriptpackages:lib-tk:lib-old\"", "-DSUFFIX=\"\"", "-DVERSION=\"2.7\"", "-DVPATH=\".\"", "-D_LIBC_NO_FEATURE_VERIFICATION", "-Dpy27_operator_EXPORTS", "-fPIC", "-std=c99", "-fno-common", "-fno-strict-aliasing", "-fwrapv", "-w", "-nostdinc", ], toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", ":py27_operator_inc_python_2_7_Python_2_7_16", ], visibility = ["PUBLIC"],)# END generated: py27_operator# BEGIN generated: py27_operator dylibs# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) --dylibs py27_operator -- review before committing.# Links 1 cmake object library/ies, 1 flag groups in total.# buck-registry: src/external/python/2.7/Python-2.7.16/operator.so = py27_operator_dylibdarwin_dylib( name = "py27_operator_dylib", dylib_name = "operator.so", install_name = "", compatibility_version = "1.0.0", objs = [ # py27_operator ":py27_operator_obj", ], siblings = [ "//vendor/src:system_final", ], linker_flags = [ "-Wl,-bundle", "-Wl,-flat_namespace", ], link_flag_files = { "-Wl,-bundle_loader": "//vendor/src/python:python27exe", }, toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", "//vendor/src/python:Python_dylib", ], visibility = ["PUBLIC"],)# END generated: py27_operator dylibs# BEGIN generated: py27_mmap# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) py27_mmap -- review before committing.# cmake target: py27_mmap -> py27_mmap# TODO these include dirs are GENERATED (codegen output):# src/external/python/2.7/Python-2.7.16# Sibling include dirs, staged as ONE tree with -I into each: headers here# reach each other with `#include "../<dir>/x.h"`, which only resolves if# the sibling is in the same staged tree.cc_header_root( name = "py27_mmap_inc_python_2_7_Python_2_7_16", headers = glob([ "2.7/Python-2.7.16/**/*", "2.7/Python-2.7.16/Include/*.h", "2.7/Python-2.7.16/Include/**/*.h", "2.7/Python-2.7.16/Include/*.c", ]), root = "2.7/Python-2.7.16", include_subdirs = [ ".", "Include", ], visibility = ["PUBLIC"],)cc_objects( name = "py27_mmap_obj", srcs = [ "2.7/Python-2.7.16/Modules/mmapmodule.c", ], compiler_flags = [ "-DDTRACE_PROBES_DISABLED=1", "-DEXEC_PREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DMACOSX", "-DNDEBUG", "-DPLATFORM=\"darwin\"", "-DPREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DPYTHONPATH=\":plat-darwin:plat-mac:plat-mac/lib-scriptpackages:lib-tk:lib-old\"", "-DSUFFIX=\"\"", "-DVERSION=\"2.7\"", "-DVPATH=\".\"", "-D_LIBC_NO_FEATURE_VERIFICATION", "-Dpy27_mmap_EXPORTS", "-fPIC", "-std=c99", "-fno-common", "-fno-strict-aliasing", "-fwrapv", "-w", "-nostdinc", ], toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", ":py27_mmap_inc_python_2_7_Python_2_7_16", ], visibility = ["PUBLIC"],)# END generated: py27_mmap# BEGIN generated: py27_mmap dylibs# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) --dylibs py27_mmap -- review before committing.# Links 1 cmake object library/ies, 1 flag groups in total.# buck-registry: src/external/python/2.7/Python-2.7.16/mmap.so = py27_mmap_dylibdarwin_dylib( name = "py27_mmap_dylib", dylib_name = "mmap.so", install_name = "", compatibility_version = "1.0.0", objs = [ # py27_mmap ":py27_mmap_obj", ], siblings = [ "//vendor/src:system_final", ], linker_flags = [ "-Wl,-bundle", "-Wl,-flat_namespace", ], link_flag_files = { "-Wl,-bundle_loader": "//vendor/src/python:python27exe", }, toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", "//vendor/src/python:Python_dylib", ], visibility = ["PUBLIC"],)# END generated: py27_mmap dylibs# BEGIN generated: py27_math# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) py27_math -- review before committing.# cmake target: py27_math -> py27_math# TODO these include dirs are GENERATED (codegen output):# src/external/python/2.7/Python-2.7.16# Sibling include dirs, staged as ONE tree with -I into each: headers here# reach each other with `#include "../<dir>/x.h"`, which only resolves if# the sibling is in the same staged tree.cc_header_root( name = "py27_math_inc_python_2_7_Python_2_7_16", headers = glob([ "2.7/Python-2.7.16/**/*", "2.7/Python-2.7.16/Include/*.h", "2.7/Python-2.7.16/Include/**/*.h", "2.7/Python-2.7.16/Include/*.c", ]), root = "2.7/Python-2.7.16", include_subdirs = [ ".", "Include", ], visibility = ["PUBLIC"],)cc_objects( name = "py27_math_obj", srcs = [ "2.7/Python-2.7.16/Modules/_math.c", "2.7/Python-2.7.16/Modules/mathmodule.c", ], compiler_flags = [ "-DDTRACE_PROBES_DISABLED=1", "-DEXEC_PREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DMACOSX", "-DNDEBUG", "-DPLATFORM=\"darwin\"", "-DPREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DPYTHONPATH=\":plat-darwin:plat-mac:plat-mac/lib-scriptpackages:lib-tk:lib-old\"", "-DSUFFIX=\"\"", "-DVERSION=\"2.7\"", "-DVPATH=\".\"", "-D_LIBC_NO_FEATURE_VERIFICATION", "-Dpy27_math_EXPORTS", "-fPIC", "-std=c99", "-fno-common", "-fno-strict-aliasing", "-fwrapv", "-w", "-nostdinc", ], toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", ":py27_math_inc_python_2_7_Python_2_7_16", ], visibility = ["PUBLIC"],)# END generated: py27_math# BEGIN generated: py27_math dylibs# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) --dylibs py27_math -- review before committing.# Links 1 cmake object library/ies, 1 flag groups in total.# buck-registry: src/external/python/2.7/Python-2.7.16/math.so = py27_math_dylibdarwin_dylib( name = "py27_math_dylib", dylib_name = "math.so", install_name = "", compatibility_version = "1.0.0", objs = [ # py27_math ":py27_math_obj", ], siblings = [ "//vendor/src:system_final", ], linker_flags = [ "-Wl,-bundle", "-Wl,-flat_namespace", ], link_flag_files = { "-Wl,-bundle_loader": "//vendor/src/python:python27exe", }, toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", "//vendor/src/python:Python_dylib", ], visibility = ["PUBLIC"],)# END generated: py27_math dylibs# BEGIN generated: py27_itertools# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) py27_itertools -- review before committing.# cmake target: py27_itertools -> py27_itertools# TODO these include dirs are GENERATED (codegen output):# src/external/python/2.7/Python-2.7.16# Sibling include dirs, staged as ONE tree with -I into each: headers here# reach each other with `#include "../<dir>/x.h"`, which only resolves if# the sibling is in the same staged tree.cc_header_root( name = "py27_itertools_inc_python_2_7_Python_2_7_16", headers = glob([ "2.7/Python-2.7.16/**/*", "2.7/Python-2.7.16/Include/*.h", "2.7/Python-2.7.16/Include/**/*.h", "2.7/Python-2.7.16/Include/*.c", ]), root = "2.7/Python-2.7.16", include_subdirs = [ ".", "Include", ], visibility = ["PUBLIC"],)cc_objects( name = "py27_itertools_obj", srcs = [ "2.7/Python-2.7.16/Modules/itertoolsmodule.c", ], compiler_flags = [ "-DDTRACE_PROBES_DISABLED=1", "-DEXEC_PREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DMACOSX", "-DNDEBUG", "-DPLATFORM=\"darwin\"", "-DPREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DPYTHONPATH=\":plat-darwin:plat-mac:plat-mac/lib-scriptpackages:lib-tk:lib-old\"", "-DSUFFIX=\"\"", "-DVERSION=\"2.7\"", "-DVPATH=\".\"", "-D_LIBC_NO_FEATURE_VERIFICATION", "-Dpy27_itertools_EXPORTS", "-fPIC", "-std=c99", "-fno-common", "-fno-strict-aliasing", "-fwrapv", "-w", "-nostdinc", ], toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", ":py27_itertools_inc_python_2_7_Python_2_7_16", ], visibility = ["PUBLIC"],)# END generated: py27_itertools# BEGIN generated: py27_itertools dylibs# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) --dylibs py27_itertools -- review before committing.# Links 1 cmake object library/ies, 1 flag groups in total.# buck-registry: src/external/python/2.7/Python-2.7.16/itertools.so = py27_itertools_dylibdarwin_dylib( name = "py27_itertools_dylib", dylib_name = "itertools.so", install_name = "", compatibility_version = "1.0.0", objs = [ # py27_itertools ":py27_itertools_obj", ], siblings = [ "//vendor/src:system_final", ], linker_flags = [ "-Wl,-bundle", "-Wl,-flat_namespace", ], link_flag_files = { "-Wl,-bundle_loader": "//vendor/src/python:python27exe", }, toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", "//vendor/src/python:Python_dylib", ], visibility = ["PUBLIC"],)# END generated: py27_itertools dylibs# BEGIN generated: py27_imageop# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) py27_imageop -- review before committing.# cmake target: py27_imageop -> py27_imageop# TODO these include dirs are GENERATED (codegen output):# src/external/python/2.7/Python-2.7.16# Sibling include dirs, staged as ONE tree with -I into each: headers here# reach each other with `#include "../<dir>/x.h"`, which only resolves if# the sibling is in the same staged tree.cc_header_root( name = "py27_imageop_inc_python_2_7_Python_2_7_16", headers = glob([ "2.7/Python-2.7.16/**/*", "2.7/Python-2.7.16/Include/*.h", "2.7/Python-2.7.16/Include/**/*.h", "2.7/Python-2.7.16/Include/*.c", ]), root = "2.7/Python-2.7.16", include_subdirs = [ ".", "Include", ], visibility = ["PUBLIC"],)cc_objects( name = "py27_imageop_obj", srcs = [ "2.7/Python-2.7.16/Modules/imageop.c", ], compiler_flags = [ "-DDTRACE_PROBES_DISABLED=1", "-DEXEC_PREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DMACOSX", "-DNDEBUG", "-DPLATFORM=\"darwin\"", "-DPREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DPYTHONPATH=\":plat-darwin:plat-mac:plat-mac/lib-scriptpackages:lib-tk:lib-old\"", "-DSUFFIX=\"\"", "-DVERSION=\"2.7\"", "-DVPATH=\".\"", "-D_LIBC_NO_FEATURE_VERIFICATION", "-Dpy27_imageop_EXPORTS", "-fPIC", "-std=c99", "-fno-common", "-fno-strict-aliasing", "-fwrapv", "-w", "-nostdinc", ], toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", ":py27_imageop_inc_python_2_7_Python_2_7_16", ], visibility = ["PUBLIC"],)# END generated: py27_imageop# BEGIN generated: py27_imageop dylibs# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) --dylibs py27_imageop -- review before committing.# Links 1 cmake object library/ies, 1 flag groups in total.# buck-registry: src/external/python/2.7/Python-2.7.16/imageop.so = py27_imageop_dylibdarwin_dylib( name = "py27_imageop_dylib", dylib_name = "imageop.so", install_name = "", compatibility_version = "1.0.0", objs = [ # py27_imageop ":py27_imageop_obj", ], siblings = [ "//vendor/src:system_final", ], linker_flags = [ "-Wl,-bundle", "-Wl,-flat_namespace", ], link_flag_files = { "-Wl,-bundle_loader": "//vendor/src/python:python27exe", }, toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", "//vendor/src/python:Python_dylib", ], visibility = ["PUBLIC"],)# END generated: py27_imageop dylibs# BEGIN generated: py27_grp# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) py27_grp -- review before committing.# cmake target: py27_grp -> py27_grp# TODO these include dirs are GENERATED (codegen output):# src/external/python/2.7/Python-2.7.16# Sibling include dirs, staged as ONE tree with -I into each: headers here# reach each other with `#include "../<dir>/x.h"`, which only resolves if# the sibling is in the same staged tree.cc_header_root( name = "py27_grp_inc_python_2_7_Python_2_7_16", headers = glob([ "2.7/Python-2.7.16/**/*", "2.7/Python-2.7.16/Include/*.h", "2.7/Python-2.7.16/Include/**/*.h", "2.7/Python-2.7.16/Include/*.c", ]), root = "2.7/Python-2.7.16", include_subdirs = [ ".", "Include", ], visibility = ["PUBLIC"],)cc_objects( name = "py27_grp_obj", srcs = [ "2.7/Python-2.7.16/Modules/grpmodule.c", ], compiler_flags = [ "-DDTRACE_PROBES_DISABLED=1", "-DEXEC_PREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DMACOSX", "-DNDEBUG", "-DPLATFORM=\"darwin\"", "-DPREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DPYTHONPATH=\":plat-darwin:plat-mac:plat-mac/lib-scriptpackages:lib-tk:lib-old\"", "-DSUFFIX=\"\"", "-DVERSION=\"2.7\"", "-DVPATH=\".\"", "-D_LIBC_NO_FEATURE_VERIFICATION", "-Dpy27_grp_EXPORTS", "-fPIC", "-std=c99", "-fno-common", "-fno-strict-aliasing", "-fwrapv", "-w", "-nostdinc", ], toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", ":py27_grp_inc_python_2_7_Python_2_7_16", ], visibility = ["PUBLIC"],)# END generated: py27_grp# BEGIN generated: py27_grp dylibs# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) --dylibs py27_grp -- review before committing.# Links 1 cmake object library/ies, 1 flag groups in total.# buck-registry: src/external/python/2.7/Python-2.7.16/grp.so = py27_grp_dylibdarwin_dylib( name = "py27_grp_dylib", dylib_name = "grp.so", install_name = "", compatibility_version = "1.0.0", objs = [ # py27_grp ":py27_grp_obj", ], siblings = [ "//vendor/src:system_final", ], linker_flags = [ "-Wl,-bundle", "-Wl,-flat_namespace", ], link_flag_files = { "-Wl,-bundle_loader": "//vendor/src/python:python27exe", }, toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", "//vendor/src/python:Python_dylib", ], visibility = ["PUBLIC"],)# END generated: py27_grp dylibs# BEGIN generated: py27_future_builtins# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) py27_future_builtins -- review before committing.# cmake target: py27_future_builtins -> py27_future_builtins# TODO these include dirs are GENERATED (codegen output):# src/external/python/2.7/Python-2.7.16# Sibling include dirs, staged as ONE tree with -I into each: headers here# reach each other with `#include "../<dir>/x.h"`, which only resolves if# the sibling is in the same staged tree.cc_header_root( name = "py27_future_builtins_inc_python_2_7_Python_2_7_16", headers = glob([ "2.7/Python-2.7.16/**/*", "2.7/Python-2.7.16/Include/*.h", "2.7/Python-2.7.16/Include/**/*.h", "2.7/Python-2.7.16/Include/*.c", ]), root = "2.7/Python-2.7.16", include_subdirs = [ ".", "Include", ], visibility = ["PUBLIC"],)cc_objects( name = "py27_future_builtins_obj", srcs = [ "2.7/Python-2.7.16/Modules/future_builtins.c", ], compiler_flags = [ "-DDTRACE_PROBES_DISABLED=1", "-DEXEC_PREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DMACOSX", "-DNDEBUG", "-DPLATFORM=\"darwin\"", "-DPREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DPYTHONPATH=\":plat-darwin:plat-mac:plat-mac/lib-scriptpackages:lib-tk:lib-old\"", "-DSUFFIX=\"\"", "-DVERSION=\"2.7\"", "-DVPATH=\".\"", "-D_LIBC_NO_FEATURE_VERIFICATION", "-Dpy27_future_builtins_EXPORTS", "-fPIC", "-std=c99", "-fno-common", "-fno-strict-aliasing", "-fwrapv", "-w", "-nostdinc", ], toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", ":py27_future_builtins_inc_python_2_7_Python_2_7_16", ], visibility = ["PUBLIC"],)# END generated: py27_future_builtins# BEGIN generated: py27_future_builtins dylibs# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) --dylibs py27_future_builtins -- review before committing.# Links 1 cmake object library/ies, 1 flag groups in total.# buck-registry: src/external/python/2.7/Python-2.7.16/future_builtins.so = py27_future_builtins_dylibdarwin_dylib( name = "py27_future_builtins_dylib", dylib_name = "future_builtins.so", install_name = "", compatibility_version = "1.0.0", objs = [ # py27_future_builtins ":py27_future_builtins_obj", ], siblings = [ "//vendor/src:system_final", ], linker_flags = [ "-Wl,-bundle", "-Wl,-flat_namespace", ], link_flag_files = { "-Wl,-bundle_loader": "//vendor/src/python:python27exe", }, toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", "//vendor/src/python:Python_dylib", ], visibility = ["PUBLIC"],)# END generated: py27_future_builtins dylibs# BEGIN generated: py27_fcntl# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) py27_fcntl -- review before committing.# cmake target: py27_fcntl -> py27_fcntl# TODO these include dirs are GENERATED (codegen output):# src/external/python/2.7/Python-2.7.16# Sibling include dirs, staged as ONE tree with -I into each: headers here# reach each other with `#include "../<dir>/x.h"`, which only resolves if# the sibling is in the same staged tree.cc_header_root( name = "py27_fcntl_inc_python_2_7_Python_2_7_16", headers = glob([ "2.7/Python-2.7.16/**/*", "2.7/Python-2.7.16/Include/*.h", "2.7/Python-2.7.16/Include/**/*.h", "2.7/Python-2.7.16/Include/*.c", ]), root = "2.7/Python-2.7.16", include_subdirs = [ ".", "Include", ], visibility = ["PUBLIC"],)cc_objects( name = "py27_fcntl_obj", srcs = [ "2.7/Python-2.7.16/Modules/fcntlmodule.c", ], compiler_flags = [ "-DDTRACE_PROBES_DISABLED=1", "-DEXEC_PREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DMACOSX", "-DNDEBUG", "-DPLATFORM=\"darwin\"", "-DPREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DPYTHONPATH=\":plat-darwin:plat-mac:plat-mac/lib-scriptpackages:lib-tk:lib-old\"", "-DSUFFIX=\"\"", "-DVERSION=\"2.7\"", "-DVPATH=\".\"", "-D_LIBC_NO_FEATURE_VERIFICATION", "-Dpy27_fcntl_EXPORTS", "-fPIC", "-std=c99", "-fno-common", "-fno-strict-aliasing", "-fwrapv", "-w", "-nostdinc", ], toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", ":py27_fcntl_inc_python_2_7_Python_2_7_16", ], visibility = ["PUBLIC"],)# END generated: py27_fcntl# BEGIN generated: py27_fcntl dylibs# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) --dylibs py27_fcntl -- review before committing.# Links 1 cmake object library/ies, 1 flag groups in total.# buck-registry: src/external/python/2.7/Python-2.7.16/fcntl.so = py27_fcntl_dylibdarwin_dylib( name = "py27_fcntl_dylib", dylib_name = "fcntl.so", install_name = "", compatibility_version = "1.0.0", objs = [ # py27_fcntl ":py27_fcntl_obj", ], siblings = [ "//vendor/src:system_final", ], linker_flags = [ "-Wl,-bundle", "-Wl,-flat_namespace", ], link_flag_files = { "-Wl,-bundle_loader": "//vendor/src/python:python27exe", }, toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", "//vendor/src/python:Python_dylib", ], visibility = ["PUBLIC"],)# END generated: py27_fcntl dylibs# BEGIN generated: py27_dl# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) py27_dl -- review before committing.# cmake target: py27_dl -> py27_dl# TODO these include dirs are GENERATED (codegen output):# src/external/python/2.7/Python-2.7.16# Sibling include dirs, staged as ONE tree with -I into each: headers here# reach each other with `#include "../<dir>/x.h"`, which only resolves if# the sibling is in the same staged tree.cc_header_root( name = "py27_dl_inc_python_2_7_Python_2_7_16", headers = glob([ "2.7/Python-2.7.16/**/*", "2.7/Python-2.7.16/Include/*.h", "2.7/Python-2.7.16/Include/**/*.h", "2.7/Python-2.7.16/Include/*.c", ]), root = "2.7/Python-2.7.16", include_subdirs = [ ".", "Include", ], visibility = ["PUBLIC"],)cc_objects( name = "py27_dl_obj", srcs = [ "2.7/Python-2.7.16/Modules/dlmodule.c", ], compiler_flags = [ "-DDTRACE_PROBES_DISABLED=1", "-DEXEC_PREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DMACOSX", "-DNDEBUG", "-DPLATFORM=\"darwin\"", "-DPREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DPYTHONPATH=\":plat-darwin:plat-mac:plat-mac/lib-scriptpackages:lib-tk:lib-old\"", "-DSUFFIX=\"\"", "-DVERSION=\"2.7\"", "-DVPATH=\".\"", "-D_LIBC_NO_FEATURE_VERIFICATION", "-Dpy27_dl_EXPORTS", "-fPIC", "-std=c99", "-fno-common", "-fno-strict-aliasing", "-fwrapv", "-w", "-nostdinc", ], toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", ":py27_dl_inc_python_2_7_Python_2_7_16", ], visibility = ["PUBLIC"],)# END generated: py27_dl# BEGIN generated: py27_dl dylibs# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) --dylibs py27_dl -- review before committing.# Links 1 cmake object library/ies, 1 flag groups in total.# buck-registry: src/external/python/2.7/Python-2.7.16/dl.so = py27_dl_dylibdarwin_dylib( name = "py27_dl_dylib", dylib_name = "dl.so", install_name = "", compatibility_version = "1.0.0", objs = [ # py27_dl ":py27_dl_obj", ], siblings = [ "//vendor/src:system_final", ], linker_flags = [ "-Wl,-bundle", "-Wl,-flat_namespace", ], link_flag_files = { "-Wl,-bundle_loader": "//vendor/src/python:python27exe", }, toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", "//vendor/src/python:Python_dylib", ], visibility = ["PUBLIC"],)# END generated: py27_dl dylibs# BEGIN generated: py27_crypt# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) py27_crypt -- review before committing.# cmake target: py27_crypt -> py27_crypt# TODO these include dirs are GENERATED (codegen output):# src/external/python/2.7/Python-2.7.16# Sibling include dirs, staged as ONE tree with -I into each: headers here# reach each other with `#include "../<dir>/x.h"`, which only resolves if# the sibling is in the same staged tree.cc_header_root( name = "py27_crypt_inc_python_2_7_Python_2_7_16", headers = glob([ "2.7/Python-2.7.16/**/*", "2.7/Python-2.7.16/Include/*.h", "2.7/Python-2.7.16/Include/**/*.h", "2.7/Python-2.7.16/Include/*.c", ]), root = "2.7/Python-2.7.16", include_subdirs = [ ".", "Include", ], visibility = ["PUBLIC"],)cc_objects( name = "py27_crypt_obj", srcs = [ "2.7/Python-2.7.16/Modules/cryptmodule.c", ], compiler_flags = [ "-DDTRACE_PROBES_DISABLED=1", "-DEXEC_PREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DMACOSX", "-DNDEBUG", "-DPLATFORM=\"darwin\"", "-DPREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DPYTHONPATH=\":plat-darwin:plat-mac:plat-mac/lib-scriptpackages:lib-tk:lib-old\"", "-DSUFFIX=\"\"", "-DVERSION=\"2.7\"", "-DVPATH=\".\"", "-D_LIBC_NO_FEATURE_VERIFICATION", "-Dpy27_crypt_EXPORTS", "-fPIC", "-std=c99", "-fno-common", "-fno-strict-aliasing", "-fwrapv", "-w", "-nostdinc", ], toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", ":py27_crypt_inc_python_2_7_Python_2_7_16", ], visibility = ["PUBLIC"],)# END generated: py27_crypt# BEGIN generated: py27_crypt dylibs# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) --dylibs py27_crypt -- review before committing.# Links 1 cmake object library/ies, 1 flag groups in total.# buck-registry: src/external/python/2.7/Python-2.7.16/crypt.so = py27_crypt_dylibdarwin_dylib( name = "py27_crypt_dylib", dylib_name = "crypt.so", install_name = "", compatibility_version = "1.0.0", objs = [ # py27_crypt ":py27_crypt_obj", ], siblings = [ "//vendor/src:system_final", ], linker_flags = [ "-Wl,-bundle", "-Wl,-flat_namespace", ], link_flag_files = { "-Wl,-bundle_loader": "//vendor/src/python:python27exe", }, toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", "//vendor/src/python:Python_dylib", ], visibility = ["PUBLIC"],)# END generated: py27_crypt dylibs# BEGIN generated: py27_cmath# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) py27_cmath -- review before committing.# cmake target: py27_cmath -> py27_cmath# TODO these include dirs are GENERATED (codegen output):# src/external/python/2.7/Python-2.7.16# Sibling include dirs, staged as ONE tree with -I into each: headers here# reach each other with `#include "../<dir>/x.h"`, which only resolves if# the sibling is in the same staged tree.cc_header_root( name = "py27_cmath_inc_python_2_7_Python_2_7_16", headers = glob([ "2.7/Python-2.7.16/**/*", "2.7/Python-2.7.16/Include/*.h", "2.7/Python-2.7.16/Include/**/*.h", "2.7/Python-2.7.16/Include/*.c", ]), root = "2.7/Python-2.7.16", include_subdirs = [ ".", "Include", ], visibility = ["PUBLIC"],)cc_objects( name = "py27_cmath_obj", srcs = [ "2.7/Python-2.7.16/Modules/_math.c", "2.7/Python-2.7.16/Modules/cmathmodule.c", ], compiler_flags = [ "-DDTRACE_PROBES_DISABLED=1", "-DEXEC_PREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DMACOSX", "-DNDEBUG", "-DPLATFORM=\"darwin\"", "-DPREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DPYTHONPATH=\":plat-darwin:plat-mac:plat-mac/lib-scriptpackages:lib-tk:lib-old\"", "-DSUFFIX=\"\"", "-DVERSION=\"2.7\"", "-DVPATH=\".\"", "-D_LIBC_NO_FEATURE_VERIFICATION", "-Dpy27_cmath_EXPORTS", "-fPIC", "-std=c99", "-fno-common", "-fno-strict-aliasing", "-fwrapv", "-w", "-nostdinc", ], toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", ":py27_cmath_inc_python_2_7_Python_2_7_16", ], visibility = ["PUBLIC"],)# END generated: py27_cmath# BEGIN generated: py27_cmath dylibs# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) --dylibs py27_cmath -- review before committing.# Links 1 cmake object library/ies, 1 flag groups in total.# buck-registry: src/external/python/2.7/Python-2.7.16/cmath.so = py27_cmath_dylibdarwin_dylib( name = "py27_cmath_dylib", dylib_name = "cmath.so", install_name = "", compatibility_version = "1.0.0", objs = [ # py27_cmath ":py27_cmath_obj", ], siblings = [ "//vendor/src:system_final", ], linker_flags = [ "-Wl,-bundle", "-Wl,-flat_namespace", ], link_flag_files = { "-Wl,-bundle_loader": "//vendor/src/python:python27exe", }, toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", "//vendor/src/python:Python_dylib", ], visibility = ["PUBLIC"],)# END generated: py27_cmath dylibs# BEGIN generated: py27_cStringIO# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) py27_cStringIO -- review before committing.# cmake target: py27_cStringIO -> py27_cStringIO# TODO these include dirs are GENERATED (codegen output):# src/external/python/2.7/Python-2.7.16# Sibling include dirs, staged as ONE tree with -I into each: headers here# reach each other with `#include "../<dir>/x.h"`, which only resolves if# the sibling is in the same staged tree.cc_header_root( name = "py27_cStringIO_inc_python_2_7_Python_2_7_16", headers = glob([ "2.7/Python-2.7.16/**/*", "2.7/Python-2.7.16/Include/*.h", "2.7/Python-2.7.16/Include/**/*.h", "2.7/Python-2.7.16/Include/*.c", ]), root = "2.7/Python-2.7.16", include_subdirs = [ ".", "Include", ], visibility = ["PUBLIC"],)cc_objects( name = "py27_cStringIO_obj", srcs = [ "2.7/Python-2.7.16/Modules/cStringIO.c", ], compiler_flags = [ "-DDTRACE_PROBES_DISABLED=1", "-DEXEC_PREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DMACOSX", "-DNDEBUG", "-DPLATFORM=\"darwin\"", "-DPREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DPYTHONPATH=\":plat-darwin:plat-mac:plat-mac/lib-scriptpackages:lib-tk:lib-old\"", "-DSUFFIX=\"\"", "-DVERSION=\"2.7\"", "-DVPATH=\".\"", "-D_LIBC_NO_FEATURE_VERIFICATION", "-Dpy27_cStringIO_EXPORTS", "-fPIC", "-std=c99", "-fno-common", "-fno-strict-aliasing", "-fwrapv", "-w", "-nostdinc", ], toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", ":py27_cStringIO_inc_python_2_7_Python_2_7_16", ], visibility = ["PUBLIC"],)# END generated: py27_cStringIO# BEGIN generated: py27_cStringIO dylibs# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) --dylibs py27_cStringIO -- review before committing.# Links 1 cmake object library/ies, 1 flag groups in total.# buck-registry: src/external/python/2.7/Python-2.7.16/cStringIO.so = py27_cStringIO_dylibdarwin_dylib( name = "py27_cStringIO_dylib", dylib_name = "cStringIO.so", install_name = "", compatibility_version = "1.0.0", objs = [ # py27_cStringIO ":py27_cStringIO_obj", ], siblings = [ "//vendor/src:system_final", ], linker_flags = [ "-Wl,-bundle", "-Wl,-flat_namespace", ], link_flag_files = { "-Wl,-bundle_loader": "//vendor/src/python:python27exe", }, toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", "//vendor/src/python:Python_dylib", ], visibility = ["PUBLIC"],)# END generated: py27_cStringIO dylibs# BEGIN generated: py27_cPickle# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) py27_cPickle -- review before committing.# cmake target: py27_cPickle -> py27_cPickle# TODO these include dirs are GENERATED (codegen output):# src/external/python/2.7/Python-2.7.16# Sibling include dirs, staged as ONE tree with -I into each: headers here# reach each other with `#include "../<dir>/x.h"`, which only resolves if# the sibling is in the same staged tree.cc_header_root( name = "py27_cPickle_inc_python_2_7_Python_2_7_16", headers = glob([ "2.7/Python-2.7.16/**/*", "2.7/Python-2.7.16/Include/*.h", "2.7/Python-2.7.16/Include/**/*.h", "2.7/Python-2.7.16/Include/*.c", ]), root = "2.7/Python-2.7.16", include_subdirs = [ ".", "Include", ], visibility = ["PUBLIC"],)cc_objects( name = "py27_cPickle_obj", srcs = [ "2.7/Python-2.7.16/Modules/cPickle.c", ], compiler_flags = [ "-DDTRACE_PROBES_DISABLED=1", "-DEXEC_PREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DMACOSX", "-DNDEBUG", "-DPLATFORM=\"darwin\"", "-DPREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DPYTHONPATH=\":plat-darwin:plat-mac:plat-mac/lib-scriptpackages:lib-tk:lib-old\"", "-DSUFFIX=\"\"", "-DVERSION=\"2.7\"", "-DVPATH=\".\"", "-D_LIBC_NO_FEATURE_VERIFICATION", "-Dpy27_cPickle_EXPORTS", "-fPIC", "-std=c99", "-fno-common", "-fno-strict-aliasing", "-fwrapv", "-w", "-nostdinc", ], toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", ":py27_cPickle_inc_python_2_7_Python_2_7_16", ], visibility = ["PUBLIC"],)# END generated: py27_cPickle# BEGIN generated: py27_cPickle dylibs# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) --dylibs py27_cPickle -- review before committing.# Links 1 cmake object library/ies, 1 flag groups in total.# buck-registry: src/external/python/2.7/Python-2.7.16/cPickle.so = py27_cPickle_dylibdarwin_dylib( name = "py27_cPickle_dylib", dylib_name = "cPickle.so", install_name = "", compatibility_version = "1.0.0", objs = [ # py27_cPickle ":py27_cPickle_obj", ], siblings = [ "//vendor/src:system_final", ], linker_flags = [ "-Wl,-bundle", "-Wl,-flat_namespace", ], link_flag_files = { "-Wl,-bundle_loader": "//vendor/src/python:python27exe", }, toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", "//vendor/src/python:Python_dylib", ], visibility = ["PUBLIC"],)# END generated: py27_cPickle dylibs# BEGIN generated: py27_bz2# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) py27_bz2 -- review before committing.# cmake target: py27_bz2 -> py27_bz2# TODO these include dirs are GENERATED (codegen output):# src/external/python/2.7/Python-2.7.16# Sibling include dirs, staged as ONE tree with -I into each: headers here# reach each other with `#include "../<dir>/x.h"`, which only resolves if# the sibling is in the same staged tree.cc_header_root( name = "py27_bz2_inc_python_2_7_Python_2_7_16", headers = glob([ "2.7/Python-2.7.16/**/*", "2.7/Python-2.7.16/Include/*.h", "2.7/Python-2.7.16/Include/**/*.h", "2.7/Python-2.7.16/Include/*.c", ]), root = "2.7/Python-2.7.16", include_subdirs = [ ".", "Include", ], visibility = ["PUBLIC"],)cc_objects( name = "py27_bz2_obj", srcs = [ "2.7/Python-2.7.16/Modules/bz2module.c", ], compiler_flags = [ "-DDTRACE_PROBES_DISABLED=1", "-DEXEC_PREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DMACOSX", "-DNDEBUG", "-DPLATFORM=\"darwin\"", "-DPREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DPYTHONPATH=\":plat-darwin:plat-mac:plat-mac/lib-scriptpackages:lib-tk:lib-old\"", "-DSUFFIX=\"\"", "-DVERSION=\"2.7\"", "-DVPATH=\".\"", "-D_LIBC_NO_FEATURE_VERIFICATION", "-Dpy27_bz2_EXPORTS", "-fPIC", "-std=c99", "-fno-common", "-fno-strict-aliasing", "-fwrapv", "-w", "-nostdinc", ], toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", ":py27_bz2_inc_python_2_7_Python_2_7_16", ], visibility = ["PUBLIC"],)# END generated: py27_bz2# BEGIN generated: py27_bz2 dylibs# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) --dylibs py27_bz2 -- review before committing.# Links 1 cmake object library/ies, 1 flag groups in total.# buck-registry: src/external/python/2.7/Python-2.7.16/bz2.so = py27_bz2_dylibdarwin_dylib( name = "py27_bz2_dylib", dylib_name = "bz2.so", install_name = "", compatibility_version = "1.0.0", objs = [ # py27_bz2 ":py27_bz2_obj", ], siblings = [ "//vendor/src:bz2_dylib", "//vendor/src:system_final", ], linker_flags = [ "-Wl,-bundle", "-Wl,-flat_namespace", ], link_flag_files = { "-Wl,-bundle_loader": "//vendor/src/python:python27exe", }, toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", "//vendor/src/python:Python_dylib", ], visibility = ["PUBLIC"],)# END generated: py27_bz2 dylibs# BEGIN generated: py27_bsddb185# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) py27_bsddb185 -- review before committing.# cmake target: py27_bsddb185 -> py27_bsddb185# TODO these include dirs are GENERATED (codegen output):# src/external/python/2.7/Python-2.7.16# Sibling include dirs, staged as ONE tree with -I into each: headers here# reach each other with `#include "../<dir>/x.h"`, which only resolves if# the sibling is in the same staged tree.cc_header_root( name = "py27_bsddb185_inc_python_2_7_Python_2_7_16", headers = glob([ "2.7/Python-2.7.16/**/*", "2.7/Python-2.7.16/Include/*.h", "2.7/Python-2.7.16/Include/**/*.h", "2.7/Python-2.7.16/Include/*.c", ]), root = "2.7/Python-2.7.16", include_subdirs = [ ".", "Include", ], visibility = ["PUBLIC"],)cc_objects( name = "py27_bsddb185_obj", srcs = [ "2.7/Python-2.7.16/Modules/bsddbmodule.c", ], compiler_flags = [ "-DDTRACE_PROBES_DISABLED=1", "-DEXEC_PREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DMACOSX", "-DNDEBUG", "-DPLATFORM=\"darwin\"", "-DPREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DPYTHONPATH=\":plat-darwin:plat-mac:plat-mac/lib-scriptpackages:lib-tk:lib-old\"", "-DSUFFIX=\"\"", "-DVERSION=\"2.7\"", "-DVPATH=\".\"", "-D_LIBC_NO_FEATURE_VERIFICATION", "-Dpy27_bsddb185_EXPORTS", "-fPIC", "-std=c99", "-fno-common", "-fno-strict-aliasing", "-fwrapv", "-w", "-nostdinc", ], toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", ":py27_bsddb185_inc_python_2_7_Python_2_7_16", ], visibility = ["PUBLIC"],)# END generated: py27_bsddb185# BEGIN generated: py27_bsddb185 dylibs# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) --dylibs py27_bsddb185 -- review before committing.# Links 1 cmake object library/ies, 1 flag groups in total.# buck-registry: src/external/python/2.7/Python-2.7.16/bsddb185.so = py27_bsddb185_dylibdarwin_dylib( name = "py27_bsddb185_dylib", dylib_name = "bsddb185.so", install_name = "", compatibility_version = "1.0.0", objs = [ # py27_bsddb185 ":py27_bsddb185_obj", ], siblings = [ "//vendor/src:system_final", ], linker_flags = [ "-Wl,-bundle", "-Wl,-flat_namespace", ], link_flag_files = { "-Wl,-bundle_loader": "//vendor/src/python:python27exe", }, toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", "//vendor/src/python:Python_dylib", ], visibility = ["PUBLIC"],)# END generated: py27_bsddb185 dylibs# BEGIN generated: py27_binascii# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) py27_binascii -- review before committing.# cmake target: py27_binascii -> py27_binascii# TODO these include dirs are GENERATED (codegen output):# src/external/python/2.7/Python-2.7.16# Sibling include dirs, staged as ONE tree with -I into each: headers here# reach each other with `#include "../<dir>/x.h"`, which only resolves if# the sibling is in the same staged tree.cc_header_root( name = "py27_binascii_inc_python_2_7_Python_2_7_16", headers = glob([ "2.7/Python-2.7.16/**/*", "2.7/Python-2.7.16/Include/*.h", "2.7/Python-2.7.16/Include/**/*.h", "2.7/Python-2.7.16/Include/*.c", ]), root = "2.7/Python-2.7.16", include_subdirs = [ ".", "Include", ], visibility = ["PUBLIC"],)cc_objects( name = "py27_binascii_obj", srcs = [ "2.7/Python-2.7.16/Modules/binascii.c", ], compiler_flags = [ "-DDTRACE_PROBES_DISABLED=1", "-DEXEC_PREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DMACOSX", "-DNDEBUG", "-DPLATFORM=\"darwin\"", "-DPREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DPYTHONPATH=\":plat-darwin:plat-mac:plat-mac/lib-scriptpackages:lib-tk:lib-old\"", "-DSUFFIX=\"\"", "-DVERSION=\"2.7\"", "-DVPATH=\".\"", "-D_LIBC_NO_FEATURE_VERIFICATION", "-Dpy27_binascii_EXPORTS", "-fPIC", "-std=c99", "-fno-common", "-fno-strict-aliasing", "-fwrapv", "-w", "-nostdinc", ], toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", ":py27_binascii_inc_python_2_7_Python_2_7_16", ], visibility = ["PUBLIC"],)# END generated: py27_binascii# BEGIN generated: py27_binascii dylibs# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) --dylibs py27_binascii -- review before committing.# Links 1 cmake object library/ies, 1 flag groups in total.# buck-registry: src/external/python/2.7/Python-2.7.16/binascii.so = py27_binascii_dylibdarwin_dylib( name = "py27_binascii_dylib", dylib_name = "binascii.so", install_name = "", compatibility_version = "1.0.0", objs = [ # py27_binascii ":py27_binascii_obj", ], siblings = [ "//vendor/src:system_final", ], linker_flags = [ "-Wl,-bundle", "-Wl,-flat_namespace", ], link_flag_files = { "-Wl,-bundle_loader": "//vendor/src/python:python27exe", }, toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", "//vendor/src/python:Python_dylib", ], visibility = ["PUBLIC"],)# END generated: py27_binascii dylibs# BEGIN generated: py27_audioop# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) py27_audioop -- review before committing.# cmake target: py27_audioop -> py27_audioop# TODO these include dirs are GENERATED (codegen output):# src/external/python/2.7/Python-2.7.16# Sibling include dirs, staged as ONE tree with -I into each: headers here# reach each other with `#include "../<dir>/x.h"`, which only resolves if# the sibling is in the same staged tree.cc_header_root( name = "py27_audioop_inc_python_2_7_Python_2_7_16", headers = glob([ "2.7/Python-2.7.16/**/*", "2.7/Python-2.7.16/Include/*.h", "2.7/Python-2.7.16/Include/**/*.h", "2.7/Python-2.7.16/Include/*.c", ]), root = "2.7/Python-2.7.16", include_subdirs = [ ".", "Include", ], visibility = ["PUBLIC"],)cc_objects( name = "py27_audioop_obj", srcs = [ "2.7/Python-2.7.16/Modules/audioop.c", ], compiler_flags = [ "-DDTRACE_PROBES_DISABLED=1", "-DEXEC_PREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DMACOSX", "-DNDEBUG", "-DPLATFORM=\"darwin\"", "-DPREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DPYTHONPATH=\":plat-darwin:plat-mac:plat-mac/lib-scriptpackages:lib-tk:lib-old\"", "-DSUFFIX=\"\"", "-DVERSION=\"2.7\"", "-DVPATH=\".\"", "-D_LIBC_NO_FEATURE_VERIFICATION", "-Dpy27_audioop_EXPORTS", "-fPIC", "-std=c99", "-fno-common", "-fno-strict-aliasing", "-fwrapv", "-w", "-nostdinc", ], toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", ":py27_audioop_inc_python_2_7_Python_2_7_16", ], visibility = ["PUBLIC"],)# END generated: py27_audioop# BEGIN generated: py27_audioop dylibs# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) --dylibs py27_audioop -- review before committing.# Links 1 cmake object library/ies, 1 flag groups in total.# buck-registry: src/external/python/2.7/Python-2.7.16/audioop.so = py27_audioop_dylibdarwin_dylib( name = "py27_audioop_dylib", dylib_name = "audioop.so", install_name = "", compatibility_version = "1.0.0", objs = [ # py27_audioop ":py27_audioop_obj", ], siblings = [ "//vendor/src:system_final", ], linker_flags = [ "-Wl,-bundle", "-Wl,-flat_namespace", ], link_flag_files = { "-Wl,-bundle_loader": "//vendor/src/python:python27exe", }, toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", "//vendor/src/python:Python_dylib", ], visibility = ["PUBLIC"],)# END generated: py27_audioop dylibs# BEGIN generated: py27_array# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) py27_array -- review before committing.# cmake target: py27_array -> py27_array# TODO these include dirs are GENERATED (codegen output):# src/external/python/2.7/Python-2.7.16# Sibling include dirs, staged as ONE tree with -I into each: headers here# reach each other with `#include "../<dir>/x.h"`, which only resolves if# the sibling is in the same staged tree.cc_header_root( name = "py27_array_inc_python_2_7_Python_2_7_16", headers = glob([ "2.7/Python-2.7.16/**/*", "2.7/Python-2.7.16/Include/*.h", "2.7/Python-2.7.16/Include/**/*.h", "2.7/Python-2.7.16/Include/*.c", ]), root = "2.7/Python-2.7.16", include_subdirs = [ ".", "Include", ], visibility = ["PUBLIC"],)cc_objects( name = "py27_array_obj", srcs = [ "2.7/Python-2.7.16/Modules/arraymodule.c", ], compiler_flags = [ "-DDTRACE_PROBES_DISABLED=1", "-DEXEC_PREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DMACOSX", "-DNDEBUG", "-DPLATFORM=\"darwin\"", "-DPREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DPYTHONPATH=\":plat-darwin:plat-mac:plat-mac/lib-scriptpackages:lib-tk:lib-old\"", "-DSUFFIX=\"\"", "-DVERSION=\"2.7\"", "-DVPATH=\".\"", "-D_LIBC_NO_FEATURE_VERIFICATION", "-Dpy27_array_EXPORTS", "-fPIC", "-std=c99", "-fno-common", "-fno-strict-aliasing", "-fwrapv", "-w", "-nostdinc", ], toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", ":py27_array_inc_python_2_7_Python_2_7_16", ], visibility = ["PUBLIC"],)# END generated: py27_array# BEGIN generated: py27_array dylibs# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) --dylibs py27_array -- review before committing.# Links 1 cmake object library/ies, 1 flag groups in total.# buck-registry: src/external/python/2.7/Python-2.7.16/array.so = py27_array_dylibdarwin_dylib( name = "py27_array_dylib", dylib_name = "array.so", install_name = "", compatibility_version = "1.0.0", objs = [ # py27_array ":py27_array_obj", ], siblings = [ "//vendor/src:system_final", ], linker_flags = [ "-Wl,-bundle", "-Wl,-flat_namespace", ], link_flag_files = { "-Wl,-bundle_loader": "//vendor/src/python:python27exe", }, toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", "//vendor/src/python:Python_dylib", ], visibility = ["PUBLIC"],)# END generated: py27_array dylibs# BEGIN generated: python27exe# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) python27exe -- review before committing.# cmake target: python27exe -> python27exe# TODO these include dirs are GENERATED (codegen output):# src/external/python/2.7/Python-2.7.16# Sibling include dirs, staged as ONE tree with -I into each: headers here# reach each other with `#include "../<dir>/x.h"`, which only resolves if# the sibling is in the same staged tree.cc_header_root( name = "python27exe_own_inc_python_2_7_Python_2_7_16", headers = glob([ "2.7/Python-2.7.16/**/*", "2.7/Python-2.7.16/Include/*.h", "2.7/Python-2.7.16/Include/**/*.h", "2.7/Python-2.7.16/Include/*.c", ]), root = "2.7/Python-2.7.16", include_subdirs = [ ".", "Include", ], visibility = ["PUBLIC"],)cc_objects( name = "python27exe_own_obj", srcs = [ "2.7/Python-2.7.16/dummy.c", ], compiler_flags = [ "-DDTRACE_PROBES_DISABLED=1", "-DEXEC_PREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DMACOSX", "-DNDEBUG", "-DPLATFORM=\"darwin\"", "-DPREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DPYTHONPATH=\":plat-darwin:plat-mac:plat-mac/lib-scriptpackages:lib-tk:lib-old\"", "-DSUFFIX=\"\"", "-DVERSION=\"2.7\"", "-DVPATH=\".\"", "-D_LIBC_NO_FEATURE_VERIFICATION", "-std=c99", "-fno-common", "-fno-strict-aliasing", "-fwrapv", "-w", "-nostdinc", ], toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", ":python27exe_own_inc_python_2_7_Python_2_7_16", ], visibility = ["PUBLIC"],)# END generated: python27exe# BEGIN generated: python27exe binary# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) --binaries python27exe -- review before committing.# Links 2 cmake object library/ies, 3 flag groups in total.# buck-registry: src/external/python/2.7/Python-2.7.16/python2.7 = python27exedarwin_binary( name = "python27exe", exe_name = "python2.7", objs = [ # python27exe_obj ":python27exe_obj", # python27exe ":python27exe_own_obj", # crt1.10.6 "//vendor/src/csu:crt1.10.6_obj2", ], dylibs = [ "//vendor/src:system_final", "//vendor/src/python:Python_dylib", ], toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", "//vendor/src:crt1.10.6", ], visibility = ["PUBLIC"],)# END generated: python27exe binary# BEGIN generated: python27exe_obj# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) python27exe_obj -- review before committing.# cmake target: python27exe_obj -> src/external/python/2.7/Python-2.7.16/python27exe_obj# TODO these include dirs are GENERATED (codegen output):# src/external/python/2.7/Python-2.7.16# Sibling include dirs, staged as ONE tree with -I into each: headers here# reach each other with `#include "../<dir>/x.h"`, which only resolves if# the sibling is in the same staged tree.cc_header_root( name = "python27exe_inc_python_2_7_Python_2_7_16", headers = glob([ "2.7/Python-2.7.16/**/*", "2.7/Python-2.7.16/Include/*.h", "2.7/Python-2.7.16/Include/**/*.h", "2.7/Python-2.7.16/Include/*.c", ]), root = "2.7/Python-2.7.16", include_subdirs = [ ".", "Include", ], visibility = ["PUBLIC"],)cc_objects( name = "python27exe_obj", srcs = [ "2.7/Python-2.7.16/Modules/python.c", ], compiler_flags = [ "-DDTRACE_PROBES_DISABLED=1", "-DEXEC_PREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DMACOSX", "-DNDEBUG", "-DPLATFORM=\"darwin\"", "-DPREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DPYTHONPATH=\":plat-darwin:plat-mac:plat-mac/lib-scriptpackages:lib-tk:lib-old\"", "-DSUFFIX=\"\"", "-DVERSION=\"2.7\"", "-DVPATH=\".\"", "-D_LIBC_NO_FEATURE_VERIFICATION", "-std=c99", "-fno-common", "-fno-strict-aliasing", "-fwrapv", "-w", "-nostdinc", ], toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", ":python27exe_inc_python_2_7_Python_2_7_16", ], visibility = ["PUBLIC"],)# END generated: python27exe_obj# BEGIN generated: py27__bisect# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) py27__bisect -- review before committing.# cmake target: py27__bisect -> py27__bisect# TODO these include dirs are GENERATED (codegen output):# src/external/python/2.7/Python-2.7.16# Sibling include dirs, staged as ONE tree with -I into each: headers here# reach each other with `#include "../<dir>/x.h"`, which only resolves if# the sibling is in the same staged tree.cc_header_root( name = "py27__bisect_inc_python_2_7_Python_2_7_16", headers = glob([ "2.7/Python-2.7.16/**/*", "2.7/Python-2.7.16/Include/*.h", "2.7/Python-2.7.16/Include/**/*.h", "2.7/Python-2.7.16/Include/*.c", ]), root = "2.7/Python-2.7.16", include_subdirs = [ ".", "Include", ], visibility = ["PUBLIC"],)cc_objects( name = "py27__bisect_obj", srcs = [ "2.7/Python-2.7.16/Modules/_bisectmodule.c", ], compiler_flags = [ "-DDTRACE_PROBES_DISABLED=1", "-DEXEC_PREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DMACOSX", "-DNDEBUG", "-DPLATFORM=\"darwin\"", "-DPREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DPYTHONPATH=\":plat-darwin:plat-mac:plat-mac/lib-scriptpackages:lib-tk:lib-old\"", "-DSUFFIX=\"\"", "-DVERSION=\"2.7\"", "-DVPATH=\".\"", "-D_LIBC_NO_FEATURE_VERIFICATION", "-Dpy27__bisect_EXPORTS", "-fPIC", "-std=c99", "-fno-common", "-fno-strict-aliasing", "-fwrapv", "-w", "-nostdinc", ], toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", ":py27__bisect_inc_python_2_7_Python_2_7_16", ], visibility = ["PUBLIC"],)# END generated: py27__bisect# BEGIN generated: py27__bisect dylibs# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) --dylibs py27__bisect -- review before committing.# Links 1 cmake object library/ies, 1 flag groups in total.# buck-registry: src/external/python/2.7/Python-2.7.16/_bisect.so = py27__bisect_dylibdarwin_dylib( name = "py27__bisect_dylib", dylib_name = "_bisect.so", install_name = "", compatibility_version = "1.0.0", objs = [ # py27__bisect ":py27__bisect_obj", ], siblings = [ "//vendor/src:system_final", ], linker_flags = [ "-Wl,-bundle", "-Wl,-flat_namespace", ], link_flag_files = { "-Wl,-bundle_loader": "//vendor/src/python:python27exe", }, toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", "//vendor/src/python:Python_dylib", ], visibility = ["PUBLIC"],)# END generated: py27__bisect dylibs# BEGIN generated: py27__collections# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) py27__collections -- review before committing.# cmake target: py27__collections -> py27__collections# TODO these include dirs are GENERATED (codegen output):# src/external/python/2.7/Python-2.7.16# Sibling include dirs, staged as ONE tree with -I into each: headers here# reach each other with `#include "../<dir>/x.h"`, which only resolves if# the sibling is in the same staged tree.cc_header_root( name = "py27__collections_inc_python_2_7_Python_2_7_16", headers = glob([ "2.7/Python-2.7.16/**/*", "2.7/Python-2.7.16/Include/*.h", "2.7/Python-2.7.16/Include/**/*.h", "2.7/Python-2.7.16/Include/*.c", ]), root = "2.7/Python-2.7.16", include_subdirs = [ ".", "Include", ], visibility = ["PUBLIC"],)cc_objects( name = "py27__collections_obj", srcs = [ "2.7/Python-2.7.16/Modules/_collectionsmodule.c", ], compiler_flags = [ "-DDTRACE_PROBES_DISABLED=1", "-DEXEC_PREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DMACOSX", "-DNDEBUG", "-DPLATFORM=\"darwin\"", "-DPREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DPYTHONPATH=\":plat-darwin:plat-mac:plat-mac/lib-scriptpackages:lib-tk:lib-old\"", "-DSUFFIX=\"\"", "-DVERSION=\"2.7\"", "-DVPATH=\".\"", "-D_LIBC_NO_FEATURE_VERIFICATION", "-Dpy27__collections_EXPORTS", "-fPIC", "-std=c99", "-fno-common", "-fno-strict-aliasing", "-fwrapv", "-w", "-nostdinc", ], toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", ":py27__collections_inc_python_2_7_Python_2_7_16", ], visibility = ["PUBLIC"],)# END generated: py27__collections# BEGIN generated: py27__collections dylibs# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) --dylibs py27__collections -- review before committing.# Links 1 cmake object library/ies, 1 flag groups in total.# buck-registry: src/external/python/2.7/Python-2.7.16/_collections.so = py27__collections_dylibdarwin_dylib( name = "py27__collections_dylib", dylib_name = "_collections.so", install_name = "", compatibility_version = "1.0.0", objs = [ # py27__collections ":py27__collections_obj", ], siblings = [ "//vendor/src:system_final", ], linker_flags = [ "-Wl,-bundle", "-Wl,-flat_namespace", ], link_flag_files = { "-Wl,-bundle_loader": "//vendor/src/python:python27exe", }, toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", "//vendor/src/python:Python_dylib", ], visibility = ["PUBLIC"],)# END generated: py27__collections dylibs# BEGIN generated: py27__csv# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) py27__csv -- review before committing.# cmake target: py27__csv -> py27__csv# TODO these include dirs are GENERATED (codegen output):# src/external/python/2.7/Python-2.7.16# Sibling include dirs, staged as ONE tree with -I into each: headers here# reach each other with `#include "../<dir>/x.h"`, which only resolves if# the sibling is in the same staged tree.cc_header_root( name = "py27__csv_inc_python_2_7_Python_2_7_16", headers = glob([ "2.7/Python-2.7.16/**/*", "2.7/Python-2.7.16/Include/*.h", "2.7/Python-2.7.16/Include/**/*.h", "2.7/Python-2.7.16/Include/*.c", ]), root = "2.7/Python-2.7.16", include_subdirs = [ ".", "Include", ], visibility = ["PUBLIC"],)cc_objects( name = "py27__csv_obj", srcs = [ "2.7/Python-2.7.16/Modules/_csv.c", ], compiler_flags = [ "-DDTRACE_PROBES_DISABLED=1", "-DEXEC_PREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DMACOSX", "-DNDEBUG", "-DPLATFORM=\"darwin\"", "-DPREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DPYTHONPATH=\":plat-darwin:plat-mac:plat-mac/lib-scriptpackages:lib-tk:lib-old\"", "-DSUFFIX=\"\"", "-DVERSION=\"2.7\"", "-DVPATH=\".\"", "-D_LIBC_NO_FEATURE_VERIFICATION", "-Dpy27__csv_EXPORTS", "-fPIC", "-std=c99", "-fno-common", "-fno-strict-aliasing", "-fwrapv", "-w", "-nostdinc", ], toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", ":py27__csv_inc_python_2_7_Python_2_7_16", ], visibility = ["PUBLIC"],)# END generated: py27__csv# BEGIN generated: py27__csv dylibs# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) --dylibs py27__csv -- review before committing.# Links 1 cmake object library/ies, 1 flag groups in total.# buck-registry: src/external/python/2.7/Python-2.7.16/_csv.so = py27__csv_dylibdarwin_dylib( name = "py27__csv_dylib", dylib_name = "_csv.so", install_name = "", compatibility_version = "1.0.0", objs = [ # py27__csv ":py27__csv_obj", ], siblings = [ "//vendor/src:system_final", ], linker_flags = [ "-Wl,-bundle", "-Wl,-flat_namespace", ], link_flag_files = { "-Wl,-bundle_loader": "//vendor/src/python:python27exe", }, toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", "//vendor/src/python:Python_dylib", ], visibility = ["PUBLIC"],)# END generated: py27__csv dylibs# BEGIN generated: py27__ctypes# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) py27__ctypes -- review before committing.# cmake target: py27__ctypes -> py27__ctypes# TODO these include dirs are GENERATED (codegen output):# src/external/python/2.7/Python-2.7.16# Sibling include dirs, staged as ONE tree with -I into each: headers here# reach each other with `#include "../<dir>/x.h"`, which only resolves if# the sibling is in the same staged tree.cc_header_root( name = "py27__ctypes_inc_python_2_7_Python_2_7_16", headers = glob([ "2.7/Python-2.7.16/**/*", "2.7/Python-2.7.16/Include/*.h", "2.7/Python-2.7.16/Include/**/*.h", "2.7/Python-2.7.16/Include/*.c", ]), root = "2.7/Python-2.7.16", include_subdirs = [ ".", "Include", ], visibility = ["PUBLIC"],)cc_objects( name = "py27__ctypes_obj", srcs = [ "2.7/Python-2.7.16/Modules/_ctypes/_ctypes.c", "2.7/Python-2.7.16/Modules/_ctypes/callbacks.c", "2.7/Python-2.7.16/Modules/_ctypes/callproc.c", "2.7/Python-2.7.16/Modules/_ctypes/cfield.c", "2.7/Python-2.7.16/Modules/_ctypes/darwin/dlfcn_simple.c", "2.7/Python-2.7.16/Modules/_ctypes/malloc_closure.c", "2.7/Python-2.7.16/Modules/_ctypes/stgdict.c", ], compiler_flags = [ "-DDTRACE_PROBES_DISABLED=1", "-DEXEC_PREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DMACOSX", "-DNDEBUG", "-DPLATFORM=\"darwin\"", "-DPREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DPYTHONPATH=\":plat-darwin:plat-mac:plat-mac/lib-scriptpackages:lib-tk:lib-old\"", "-DSUFFIX=\"\"", "-DVERSION=\"2.7\"", "-DVPATH=\".\"", "-D_LIBC_NO_FEATURE_VERIFICATION", "-Dpy27__ctypes_EXPORTS", "-fPIC", "-std=c99", "-fno-common", "-fno-strict-aliasing", "-fwrapv", "-w", "-nostdinc", ], toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", ":py27__ctypes_inc_python_2_7_Python_2_7_16", ], visibility = ["PUBLIC"],)# END generated: py27__ctypes# BEGIN generated: py27__ctypes dylibs# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) --dylibs py27__ctypes -- review before committing.# Links 1 cmake object library/ies, 1 flag groups in total.# buck-registry: src/external/python/2.7/Python-2.7.16/_ctypes.so = py27__ctypes_dylibdarwin_dylib( name = "py27__ctypes_dylib", dylib_name = "_ctypes.so", install_name = "", compatibility_version = "1.0.0", objs = [ # py27__ctypes ":py27__ctypes_obj", ], siblings = [ "//vendor/src:ffi_dylib", "//vendor/src:system_final", ], linker_flags = [ "-Wl,-bundle", "-Wl,-flat_namespace", ], link_flag_files = { "-Wl,-bundle_loader": "//vendor/src/python:python27exe", }, toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", "//vendor/src/python:Python_dylib", ], visibility = ["PUBLIC"],)# END generated: py27__ctypes dylibs# BEGIN generated: py27__ctypes_test# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) py27__ctypes_test -- review before committing.# cmake target: py27__ctypes_test -> py27__ctypes_test# TODO these include dirs are GENERATED (codegen output):# src/external/python/2.7/Python-2.7.16# Sibling include dirs, staged as ONE tree with -I into each: headers here# reach each other with `#include "../<dir>/x.h"`, which only resolves if# the sibling is in the same staged tree.cc_header_root( name = "py27__ctypes_test_inc_python_2_7_Python_2_7_16", headers = glob([ "2.7/Python-2.7.16/**/*", "2.7/Python-2.7.16/Include/*.h", "2.7/Python-2.7.16/Include/**/*.h", "2.7/Python-2.7.16/Include/*.c", ]), root = "2.7/Python-2.7.16", include_subdirs = [ ".", "Include", ], visibility = ["PUBLIC"],)cc_objects( name = "py27__ctypes_test_obj", srcs = [ "2.7/Python-2.7.16/Modules/_ctypes/_ctypes_test.c", ], compiler_flags = [ "-DDTRACE_PROBES_DISABLED=1", "-DEXEC_PREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DMACOSX", "-DNDEBUG", "-DPLATFORM=\"darwin\"", "-DPREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DPYTHONPATH=\":plat-darwin:plat-mac:plat-mac/lib-scriptpackages:lib-tk:lib-old\"", "-DSUFFIX=\"\"", "-DVERSION=\"2.7\"", "-DVPATH=\".\"", "-D_LIBC_NO_FEATURE_VERIFICATION", "-Dpy27__ctypes_test_EXPORTS", "-fPIC", "-std=c99", "-fno-common", "-fno-strict-aliasing", "-fwrapv", "-w", "-nostdinc", ], toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", ":py27__ctypes_test_inc_python_2_7_Python_2_7_16", ], visibility = ["PUBLIC"],)# END generated: py27__ctypes_test# BEGIN generated: py27__ctypes_test dylibs# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) --dylibs py27__ctypes_test -- review before committing.# Links 1 cmake object library/ies, 1 flag groups in total.# buck-registry: src/external/python/2.7/Python-2.7.16/_ctypes_test.so = py27__ctypes_test_dylibdarwin_dylib( name = "py27__ctypes_test_dylib", dylib_name = "_ctypes_test.so", install_name = "", compatibility_version = "1.0.0", objs = [ # py27__ctypes_test ":py27__ctypes_test_obj", ], siblings = [ "//vendor/src:system_final", ], linker_flags = [ "-Wl,-bundle", "-Wl,-flat_namespace", ], link_flag_files = { "-Wl,-bundle_loader": "//vendor/src/python:python27exe", }, toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", "//vendor/src/python:Python_dylib", ], visibility = ["PUBLIC"],)# END generated: py27__ctypes_test dylibs# HAND-WRITTEN, and a deliberate divergence from the reference, which builds _curses_panel# but not _curses. CPython's panel module does `import _curses` when it initialises, so the# _curses_panel.so the reference installs has never been loadable: it fails with "No module# named _curses" on upstream Darling exactly as it did here.## Everything needed was already in the tree. Modules/_cursesmodule.c ships in the same pin,# ncurses_dylib is already built and already linked by _curses_panel below, and curses.h and# term.h sit in the same SDK include farm that resolves panel.h today. So this is the# _sqlite3.so case -- a small divergence that makes an artifact the reference ships actually# work -- rather than a new cone.## The include root is _curses_panel's own: same pin, same root, same globs, and staging the# 2.7 tree a second time would buy nothing but build time.cc_objects( name = "py27__curses_obj", srcs = [ "2.7/Python-2.7.16/Modules/_cursesmodule.c", ], compiler_flags = [ "-DDTRACE_PROBES_DISABLED=1", "-DEXEC_PREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DMACOSX", "-DNDEBUG", "-DPLATFORM=\"darwin\"", "-DPREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DPYTHONPATH=\":plat-darwin:plat-mac:plat-mac/lib-scriptpackages:lib-tk:lib-old\"", "-DSUFFIX=\"\"", "-DVERSION=\"2.7\"", "-DVPATH=\".\"", "-D_LIBC_NO_FEATURE_VERIFICATION", "-Dpy27__curses_EXPORTS", "-fPIC", "-std=c99", "-fno-common", "-fno-strict-aliasing", "-fwrapv", "-w", "-nostdinc", ], toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", ":py27__curses_panel_inc_python_2_7_Python_2_7_16", ], visibility = ["PUBLIC"],)darwin_dylib( name = "py27__curses_dylib", dylib_name = "_curses.so", install_name = "", compatibility_version = "1.0.0", objs = [ ":py27__curses_obj", ], # No panel_dylib: this is the layer BELOW panel, and linking it would be a cycle in # spirit if not in the linker. siblings = [ "//vendor/src:ncurses_dylib", "//vendor/src:system_final", ], linker_flags = [ "-Wl,-bundle", "-Wl,-flat_namespace", ], link_flag_files = { "-Wl,-bundle_loader": "//vendor/src/python:python27exe", }, toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", "//vendor/src/python:Python_dylib", ], visibility = ["PUBLIC"],)# BEGIN generated: py27__curses_panel# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) py27__curses_panel -- review before committing.# cmake target: py27__curses_panel -> py27__curses_panel# TODO these include dirs are GENERATED (codegen output):# src/external/python/2.7/Python-2.7.16# Sibling include dirs, staged as ONE tree with -I into each: headers here# reach each other with `#include "../<dir>/x.h"`, which only resolves if# the sibling is in the same staged tree.cc_header_root( name = "py27__curses_panel_inc_python_2_7_Python_2_7_16", headers = glob([ "2.7/Python-2.7.16/**/*", "2.7/Python-2.7.16/Include/*.h", "2.7/Python-2.7.16/Include/**/*.h", "2.7/Python-2.7.16/Include/*.c", ]), root = "2.7/Python-2.7.16", include_subdirs = [ ".", "Include", ], visibility = ["PUBLIC"],)cc_objects( name = "py27__curses_panel_obj", srcs = [ "2.7/Python-2.7.16/Modules/_curses_panel.c", ], compiler_flags = [ "-DDTRACE_PROBES_DISABLED=1", "-DEXEC_PREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DMACOSX", "-DNDEBUG", "-DPLATFORM=\"darwin\"", "-DPREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DPYTHONPATH=\":plat-darwin:plat-mac:plat-mac/lib-scriptpackages:lib-tk:lib-old\"", "-DSUFFIX=\"\"", "-DVERSION=\"2.7\"", "-DVPATH=\".\"", "-D_LIBC_NO_FEATURE_VERIFICATION", "-Dpy27__curses_panel_EXPORTS", "-fPIC", "-std=c99", "-fno-common", "-fno-strict-aliasing", "-fwrapv", "-w", "-nostdinc", ], toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", ":py27__curses_panel_inc_python_2_7_Python_2_7_16", ], visibility = ["PUBLIC"],)# END generated: py27__curses_panel# BEGIN generated: py27__curses_panel dylibs# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) --dylibs py27__curses_panel -- review before committing.# Links 1 cmake object library/ies, 1 flag groups in total.# buck-registry: src/external/python/2.7/Python-2.7.16/_curses_panel.so = py27__curses_panel_dylibdarwin_dylib( name = "py27__curses_panel_dylib", dylib_name = "_curses_panel.so", install_name = "", compatibility_version = "1.0.0", objs = [ # py27__curses_panel ":py27__curses_panel_obj", ], siblings = [ "//vendor/src:panel_dylib", "//vendor/src:ncurses_dylib", "//vendor/src:system_final", ], linker_flags = [ "-Wl,-bundle", "-Wl,-flat_namespace", ], link_flag_files = { "-Wl,-bundle_loader": "//vendor/src/python:python27exe", }, toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", "//vendor/src/python:Python_dylib", ], visibility = ["PUBLIC"],)# END generated: py27__curses_panel dylibs# BEGIN generated: py27__elementtree# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) py27__elementtree -- review before committing.# cmake target: py27__elementtree -> py27__elementtree# TODO these include dirs are GENERATED (codegen output):# src/external/python/2.7/Python-2.7.16# Sibling include dirs, staged as ONE tree with -I into each: headers here# reach each other with `#include "../<dir>/x.h"`, which only resolves if# the sibling is in the same staged tree.cc_header_root( name = "py27__elementtree_inc_python_2_7_Python_2_7_16", headers = glob([ "2.7/Python-2.7.16/**/*", "2.7/Python-2.7.16/Include/*.h", "2.7/Python-2.7.16/Include/**/*.h", "2.7/Python-2.7.16/Include/*.c", ]), root = "2.7/Python-2.7.16", include_subdirs = [ ".", "Include", ], visibility = ["PUBLIC"],)cc_objects( name = "py27__elementtree_obj", srcs = [ "2.7/Python-2.7.16/Modules/_elementtree.c", ], compiler_flags = [ "-DDTRACE_PROBES_DISABLED=1", "-DEXEC_PREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DMACOSX", "-DNDEBUG", "-DPLATFORM=\"darwin\"", "-DPREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DPYTHONPATH=\":plat-darwin:plat-mac:plat-mac/lib-scriptpackages:lib-tk:lib-old\"", "-DSUFFIX=\"\"", "-DUSE_PYEXPAT_CAPI", "-DVERSION=\"2.7\"", "-DVPATH=\".\"", "-D_LIBC_NO_FEATURE_VERIFICATION", "-Dpy27__elementtree_EXPORTS", "-fPIC", "-std=c99", "-fno-common", "-fno-strict-aliasing", "-fwrapv", "-w", "-nostdinc", ], toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", ":py27__elementtree_inc_python_2_7_Python_2_7_16", ], visibility = ["PUBLIC"],)# END generated: py27__elementtree# BEGIN generated: py27__elementtree dylibs# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) --dylibs py27__elementtree -- review before committing.# Links 1 cmake object library/ies, 1 flag groups in total.# buck-registry: src/external/python/2.7/Python-2.7.16/_elementtree.so = py27__elementtree_dylibdarwin_dylib( name = "py27__elementtree_dylib", dylib_name = "_elementtree.so", install_name = "", compatibility_version = "1.0.0", objs = [ # py27__elementtree ":py27__elementtree_obj", ], siblings = [ "//vendor/src:system_final", ], linker_flags = [ "-Wl,-bundle", "-Wl,-flat_namespace", ], link_flag_files = { "-Wl,-bundle_loader": "//vendor/src/python:python27exe", }, toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", "//vendor/src/python:Python_dylib", ], visibility = ["PUBLIC"],)# END generated: py27__elementtree dylibs# BEGIN generated: py27__functools# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) py27__functools -- review before committing.# cmake target: py27__functools -> py27__functools# TODO these include dirs are GENERATED (codegen output):# src/external/python/2.7/Python-2.7.16# Sibling include dirs, staged as ONE tree with -I into each: headers here# reach each other with `#include "../<dir>/x.h"`, which only resolves if# the sibling is in the same staged tree.cc_header_root( name = "py27__functools_inc_python_2_7_Python_2_7_16", headers = glob([ "2.7/Python-2.7.16/**/*", "2.7/Python-2.7.16/Include/*.h", "2.7/Python-2.7.16/Include/**/*.h", "2.7/Python-2.7.16/Include/*.c", ]), root = "2.7/Python-2.7.16", include_subdirs = [ ".", "Include", ], visibility = ["PUBLIC"],)cc_objects( name = "py27__functools_obj", srcs = [ "2.7/Python-2.7.16/Modules/_functoolsmodule.c", ], compiler_flags = [ "-DDTRACE_PROBES_DISABLED=1", "-DEXEC_PREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DMACOSX", "-DNDEBUG", "-DPLATFORM=\"darwin\"", "-DPREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DPYTHONPATH=\":plat-darwin:plat-mac:plat-mac/lib-scriptpackages:lib-tk:lib-old\"", "-DSUFFIX=\"\"", "-DVERSION=\"2.7\"", "-DVPATH=\".\"", "-D_LIBC_NO_FEATURE_VERIFICATION", "-Dpy27__functools_EXPORTS", "-fPIC", "-std=c99", "-fno-common", "-fno-strict-aliasing", "-fwrapv", "-w", "-nostdinc", ], toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", ":py27__functools_inc_python_2_7_Python_2_7_16", ], visibility = ["PUBLIC"],)# END generated: py27__functools# BEGIN generated: py27__functools dylibs# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) --dylibs py27__functools -- review before committing.# Links 1 cmake object library/ies, 1 flag groups in total.# buck-registry: src/external/python/2.7/Python-2.7.16/_functools.so = py27__functools_dylibdarwin_dylib( name = "py27__functools_dylib", dylib_name = "_functools.so", install_name = "", compatibility_version = "1.0.0", objs = [ # py27__functools ":py27__functools_obj", ], siblings = [ "//vendor/src:system_final", ], linker_flags = [ "-Wl,-bundle", "-Wl,-flat_namespace", ], link_flag_files = { "-Wl,-bundle_loader": "//vendor/src/python:python27exe", }, toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", "//vendor/src/python:Python_dylib", ], visibility = ["PUBLIC"],)# END generated: py27__functools dylibs# BEGIN generated: py27__hashlib# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) py27__hashlib -- review before committing.# cmake target: py27__hashlib -> py27__hashlib# TODO these include dirs are GENERATED (codegen output):# src/external/python/2.7/Python-2.7.16# Sibling include dirs, staged as ONE tree with -I into each: headers here# reach each other with `#include "../<dir>/x.h"`, which only resolves if# the sibling is in the same staged tree.cc_header_root( name = "py27__hashlib_inc_python_2_7_Python_2_7_16", headers = glob([ "2.7/Python-2.7.16/**/*", "2.7/Python-2.7.16/Include/*.h", "2.7/Python-2.7.16/Include/**/*.h", "2.7/Python-2.7.16/Include/*.c", ]), root = "2.7/Python-2.7.16", include_subdirs = [ ".", "Include", ], visibility = ["PUBLIC"],)cc_objects( name = "py27__hashlib_obj", srcs = [ "2.7/Python-2.7.16/Modules/_hashopenssl.c", ], compiler_flags = [ "-DDTRACE_PROBES_DISABLED=1", "-DEXEC_PREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DMACOSX", "-DNDEBUG", "-DPLATFORM=\"darwin\"", "-DPREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DPYTHONPATH=\":plat-darwin:plat-mac:plat-mac/lib-scriptpackages:lib-tk:lib-old\"", "-DSUFFIX=\"\"", "-DVERSION=\"2.7\"", "-DVPATH=\".\"", "-D_LIBC_NO_FEATURE_VERIFICATION", "-Dpy27__hashlib_EXPORTS", "-fPIC", "-std=c99", "-fno-common", "-fno-strict-aliasing", "-fwrapv", "-w", "-nostdinc", ], toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", ":py27__hashlib_inc_python_2_7_Python_2_7_16", ], visibility = ["PUBLIC"],)# END generated: py27__hashlib# BEGIN generated: py27__hashlib dylibs# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) --dylibs py27__hashlib -- review before committing.# Links 1 cmake object library/ies, 1 flag groups in total.# buck-registry: src/external/python/2.7/Python-2.7.16/_hashlib.so = py27__hashlib_dylibdarwin_dylib( name = "py27__hashlib_dylib", dylib_name = "_hashlib.so", install_name = "", compatibility_version = "1.0.0", objs = [ # py27__hashlib ":py27__hashlib_obj", ], siblings = [ "//vendor/src:ssl46_dylib", "//vendor/src:crypto44_dylib", "//vendor/src:system_final", ], linker_flags = [ "-Wl,-bundle", "-Wl,-flat_namespace", ], link_flag_files = { "-Wl,-bundle_loader": "//vendor/src/python:python27exe", }, toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", "//vendor/src/python:Python_dylib", ], visibility = ["PUBLIC"],)# END generated: py27__hashlib dylibs# BEGIN generated: py27__heapq# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) py27__heapq -- review before committing.# cmake target: py27__heapq -> py27__heapq# TODO these include dirs are GENERATED (codegen output):# src/external/python/2.7/Python-2.7.16# Sibling include dirs, staged as ONE tree with -I into each: headers here# reach each other with `#include "../<dir>/x.h"`, which only resolves if# the sibling is in the same staged tree.cc_header_root( name = "py27__heapq_inc_python_2_7_Python_2_7_16", headers = glob([ "2.7/Python-2.7.16/**/*", "2.7/Python-2.7.16/Include/*.h", "2.7/Python-2.7.16/Include/**/*.h", "2.7/Python-2.7.16/Include/*.c", ]), root = "2.7/Python-2.7.16", include_subdirs = [ ".", "Include", ], visibility = ["PUBLIC"],)cc_objects( name = "py27__heapq_obj", srcs = [ "2.7/Python-2.7.16/Modules/_heapqmodule.c", ], compiler_flags = [ "-DDTRACE_PROBES_DISABLED=1", "-DEXEC_PREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DMACOSX", "-DNDEBUG", "-DPLATFORM=\"darwin\"", "-DPREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DPYTHONPATH=\":plat-darwin:plat-mac:plat-mac/lib-scriptpackages:lib-tk:lib-old\"", "-DSUFFIX=\"\"", "-DVERSION=\"2.7\"", "-DVPATH=\".\"", "-D_LIBC_NO_FEATURE_VERIFICATION", "-Dpy27__heapq_EXPORTS", "-fPIC", "-std=c99", "-fno-common", "-fno-strict-aliasing", "-fwrapv", "-w", "-nostdinc", ], toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", ":py27__heapq_inc_python_2_7_Python_2_7_16", ], visibility = ["PUBLIC"],)# END generated: py27__heapq# BEGIN generated: py27__heapq dylibs# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) --dylibs py27__heapq -- review before committing.# Links 1 cmake object library/ies, 1 flag groups in total.# buck-registry: src/external/python/2.7/Python-2.7.16/_heapq.so = py27__heapq_dylibdarwin_dylib( name = "py27__heapq_dylib", dylib_name = "_heapq.so", install_name = "", compatibility_version = "1.0.0", objs = [ # py27__heapq ":py27__heapq_obj", ], siblings = [ "//vendor/src:system_final", ], linker_flags = [ "-Wl,-bundle", "-Wl,-flat_namespace", ], link_flag_files = { "-Wl,-bundle_loader": "//vendor/src/python:python27exe", }, toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", "//vendor/src/python:Python_dylib", ], visibility = ["PUBLIC"],)# END generated: py27__heapq dylibs# BEGIN generated: py27__hotshot# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) py27__hotshot -- review before committing.# cmake target: py27__hotshot -> py27__hotshot# TODO these include dirs are GENERATED (codegen output):# src/external/python/2.7/Python-2.7.16# Sibling include dirs, staged as ONE tree with -I into each: headers here# reach each other with `#include "../<dir>/x.h"`, which only resolves if# the sibling is in the same staged tree.cc_header_root( name = "py27__hotshot_inc_python_2_7_Python_2_7_16", headers = glob([ "2.7/Python-2.7.16/**/*", "2.7/Python-2.7.16/Include/*.h", "2.7/Python-2.7.16/Include/**/*.h", "2.7/Python-2.7.16/Include/*.c", ]), root = "2.7/Python-2.7.16", include_subdirs = [ ".", "Include", ], visibility = ["PUBLIC"],)cc_objects( name = "py27__hotshot_obj", srcs = [ "2.7/Python-2.7.16/Modules/_hotshot.c", ], compiler_flags = [ "-DDTRACE_PROBES_DISABLED=1", "-DEXEC_PREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DMACOSX", "-DNDEBUG", "-DPLATFORM=\"darwin\"", "-DPREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DPYTHONPATH=\":plat-darwin:plat-mac:plat-mac/lib-scriptpackages:lib-tk:lib-old\"", "-DSUFFIX=\"\"", "-DVERSION=\"2.7\"", "-DVPATH=\".\"", "-D_LIBC_NO_FEATURE_VERIFICATION", "-Dpy27__hotshot_EXPORTS", "-fPIC", "-std=c99", "-fno-common", "-fno-strict-aliasing", "-fwrapv", "-w", "-nostdinc", ], toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", ":py27__hotshot_inc_python_2_7_Python_2_7_16", ], visibility = ["PUBLIC"],)# END generated: py27__hotshot# BEGIN generated: py27__hotshot dylibs# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) --dylibs py27__hotshot -- review before committing.# Links 1 cmake object library/ies, 1 flag groups in total.# buck-registry: src/external/python/2.7/Python-2.7.16/_hotshot.so = py27__hotshot_dylibdarwin_dylib( name = "py27__hotshot_dylib", dylib_name = "_hotshot.so", install_name = "", compatibility_version = "1.0.0", objs = [ # py27__hotshot ":py27__hotshot_obj", ], siblings = [ "//vendor/src:system_final", ], linker_flags = [ "-Wl,-bundle", "-Wl,-flat_namespace", ], link_flag_files = { "-Wl,-bundle_loader": "//vendor/src/python:python27exe", }, toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", "//vendor/src/python:Python_dylib", ], visibility = ["PUBLIC"],)# END generated: py27__hotshot dylibs# BEGIN generated: py27__io# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) py27__io -- review before committing.# cmake target: py27__io -> py27__io# TODO these include dirs are GENERATED (codegen output):# src/external/python/2.7/Python-2.7.16# Sibling include dirs, staged as ONE tree with -I into each: headers here# reach each other with `#include "../<dir>/x.h"`, which only resolves if# the sibling is in the same staged tree.cc_header_root( name = "py27__io_inc_python_2_7_Python_2_7_16", headers = glob([ "2.7/Python-2.7.16/**/*", "2.7/Python-2.7.16/Include/*.h", "2.7/Python-2.7.16/Include/**/*.h", "2.7/Python-2.7.16/Include/*.c", ]), root = "2.7/Python-2.7.16", include_subdirs = [ ".", "Include", ], visibility = ["PUBLIC"],)cc_objects( name = "py27__io_obj", srcs = [ "2.7/Python-2.7.16/Modules/_io/_iomodule.c", "2.7/Python-2.7.16/Modules/_io/bufferedio.c", "2.7/Python-2.7.16/Modules/_io/bytesio.c", "2.7/Python-2.7.16/Modules/_io/fileio.c", "2.7/Python-2.7.16/Modules/_io/iobase.c", "2.7/Python-2.7.16/Modules/_io/stringio.c", "2.7/Python-2.7.16/Modules/_io/textio.c", ], compiler_flags = [ "-DDTRACE_PROBES_DISABLED=1", "-DEXEC_PREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DMACOSX", "-DNDEBUG", "-DPLATFORM=\"darwin\"", "-DPREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DPYTHONPATH=\":plat-darwin:plat-mac:plat-mac/lib-scriptpackages:lib-tk:lib-old\"", "-DSUFFIX=\"\"", "-DVERSION=\"2.7\"", "-DVPATH=\".\"", "-D_LIBC_NO_FEATURE_VERIFICATION", "-Dpy27__io_EXPORTS", "-fPIC", "-std=c99", "-fno-common", "-fno-strict-aliasing", "-fwrapv", "-w", "-nostdinc", ], toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", ":py27__io_inc_python_2_7_Python_2_7_16", ], visibility = ["PUBLIC"],)# END generated: py27__io# BEGIN generated: py27__io dylibs# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) --dylibs py27__io -- review before committing.# Links 1 cmake object library/ies, 1 flag groups in total.# buck-registry: src/external/python/2.7/Python-2.7.16/_io.so = py27__io_dylibdarwin_dylib( name = "py27__io_dylib", dylib_name = "_io.so", install_name = "", compatibility_version = "1.0.0", objs = [ # py27__io ":py27__io_obj", ], siblings = [ "//vendor/src:system_final", ], linker_flags = [ "-Wl,-bundle", "-Wl,-flat_namespace", ], link_flag_files = { "-Wl,-bundle_loader": "//vendor/src/python:python27exe", }, toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", "//vendor/src/python:Python_dylib", ], visibility = ["PUBLIC"],)# END generated: py27__io dylibs# BEGIN generated: py27__json# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) py27__json -- review before committing.# cmake target: py27__json -> py27__json# TODO these include dirs are GENERATED (codegen output):# src/external/python/2.7/Python-2.7.16# Sibling include dirs, staged as ONE tree with -I into each: headers here# reach each other with `#include "../<dir>/x.h"`, which only resolves if# the sibling is in the same staged tree.cc_header_root( name = "py27__json_inc_python_2_7_Python_2_7_16", headers = glob([ "2.7/Python-2.7.16/**/*", "2.7/Python-2.7.16/Include/*.h", "2.7/Python-2.7.16/Include/**/*.h", "2.7/Python-2.7.16/Include/*.c", ]), root = "2.7/Python-2.7.16", include_subdirs = [ ".", "Include", ], visibility = ["PUBLIC"],)cc_objects( name = "py27__json_obj", srcs = [ "2.7/Python-2.7.16/Modules/_json.c", ], compiler_flags = [ "-DDTRACE_PROBES_DISABLED=1", "-DEXEC_PREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DMACOSX", "-DNDEBUG", "-DPLATFORM=\"darwin\"", "-DPREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DPYTHONPATH=\":plat-darwin:plat-mac:plat-mac/lib-scriptpackages:lib-tk:lib-old\"", "-DSUFFIX=\"\"", "-DVERSION=\"2.7\"", "-DVPATH=\".\"", "-D_LIBC_NO_FEATURE_VERIFICATION", "-Dpy27__json_EXPORTS", "-fPIC", "-std=c99", "-fno-common", "-fno-strict-aliasing", "-fwrapv", "-w", "-nostdinc", ], toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", ":py27__json_inc_python_2_7_Python_2_7_16", ], visibility = ["PUBLIC"],)# END generated: py27__json# BEGIN generated: py27__json dylibs# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) --dylibs py27__json -- review before committing.# Links 1 cmake object library/ies, 1 flag groups in total.# buck-registry: src/external/python/2.7/Python-2.7.16/_json.so = py27__json_dylibdarwin_dylib( name = "py27__json_dylib", dylib_name = "_json.so", install_name = "", compatibility_version = "1.0.0", objs = [ # py27__json ":py27__json_obj", ], siblings = [ "//vendor/src:system_final", ], linker_flags = [ "-Wl,-bundle", "-Wl,-flat_namespace", ], link_flag_files = { "-Wl,-bundle_loader": "//vendor/src/python:python27exe", }, toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", "//vendor/src/python:Python_dylib", ], visibility = ["PUBLIC"],)# END generated: py27__json dylibs# BEGIN generated: py27__locale# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) py27__locale -- review before committing.# cmake target: py27__locale -> py27__locale# TODO these include dirs are GENERATED (codegen output):# src/external/python/2.7/Python-2.7.16# Sibling include dirs, staged as ONE tree with -I into each: headers here# reach each other with `#include "../<dir>/x.h"`, which only resolves if# the sibling is in the same staged tree.cc_header_root( name = "py27__locale_inc_python_2_7_Python_2_7_16", headers = glob([ "2.7/Python-2.7.16/**/*", "2.7/Python-2.7.16/Include/*.h", "2.7/Python-2.7.16/Include/**/*.h", "2.7/Python-2.7.16/Include/*.c", ]), root = "2.7/Python-2.7.16", include_subdirs = [ ".", "Include", ], visibility = ["PUBLIC"],)cc_objects( name = "py27__locale_obj", srcs = [ "2.7/Python-2.7.16/Modules/_localemodule.c", ], compiler_flags = [ "-DDTRACE_PROBES_DISABLED=1", "-DEXEC_PREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DMACOSX", "-DNDEBUG", "-DPLATFORM=\"darwin\"", "-DPREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DPYTHONPATH=\":plat-darwin:plat-mac:plat-mac/lib-scriptpackages:lib-tk:lib-old\"", "-DSUFFIX=\"\"", "-DVERSION=\"2.7\"", "-DVPATH=\".\"", "-D_LIBC_NO_FEATURE_VERIFICATION", "-Dpy27__locale_EXPORTS", "-fPIC", "-std=c99", "-fno-common", "-fno-strict-aliasing", "-fwrapv", "-w", "-nostdinc", ], toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", ":py27__locale_inc_python_2_7_Python_2_7_16", ], visibility = ["PUBLIC"],)# END generated: py27__locale# BEGIN generated: py27__locale dylibs# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) --dylibs py27__locale -- review before committing.# Links 1 cmake object library/ies, 1 flag groups in total.# buck-registry: src/external/python/2.7/Python-2.7.16/_locale.so = py27__locale_dylibdarwin_dylib( name = "py27__locale_dylib", dylib_name = "_locale.so", install_name = "", compatibility_version = "1.0.0", objs = [ # py27__locale ":py27__locale_obj", ], siblings = [ "//vendor/src:system_final", "//vendor/src/corefoundation:CoreFoundation_dylib", ], linker_flags = [ "-Wl,-bundle", "-Wl,-flat_namespace", ], link_flag_files = { "-Wl,-bundle_loader": "//vendor/src/python:python27exe", }, toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", "//vendor/src/python:Python_dylib", ], visibility = ["PUBLIC"],)# END generated: py27__locale dylibs# BEGIN generated: py27__lsprof# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) py27__lsprof -- review before committing.# cmake target: py27__lsprof -> py27__lsprof# TODO these include dirs are GENERATED (codegen output):# src/external/python/2.7/Python-2.7.16# Sibling include dirs, staged as ONE tree with -I into each: headers here# reach each other with `#include "../<dir>/x.h"`, which only resolves if# the sibling is in the same staged tree.cc_header_root( name = "py27__lsprof_inc_python_2_7_Python_2_7_16", headers = glob([ "2.7/Python-2.7.16/**/*", "2.7/Python-2.7.16/Include/*.h", "2.7/Python-2.7.16/Include/**/*.h", "2.7/Python-2.7.16/Include/*.c", ]), root = "2.7/Python-2.7.16", include_subdirs = [ ".", "Include", ], visibility = ["PUBLIC"],)cc_objects( name = "py27__lsprof_obj", srcs = [ "2.7/Python-2.7.16/Modules/_lsprof.c", "2.7/Python-2.7.16/Modules/rotatingtree.c", ], compiler_flags = [ "-DDTRACE_PROBES_DISABLED=1", "-DEXEC_PREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DMACOSX", "-DNDEBUG", "-DPLATFORM=\"darwin\"", "-DPREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DPYTHONPATH=\":plat-darwin:plat-mac:plat-mac/lib-scriptpackages:lib-tk:lib-old\"", "-DSUFFIX=\"\"", "-DVERSION=\"2.7\"", "-DVPATH=\".\"", "-D_LIBC_NO_FEATURE_VERIFICATION", "-Dpy27__lsprof_EXPORTS", "-fPIC", "-std=c99", "-fno-common", "-fno-strict-aliasing", "-fwrapv", "-w", "-nostdinc", ], toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", ":py27__lsprof_inc_python_2_7_Python_2_7_16", ], visibility = ["PUBLIC"],)# END generated: py27__lsprof# BEGIN generated: py27__lsprof dylibs# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) --dylibs py27__lsprof -- review before committing.# Links 1 cmake object library/ies, 1 flag groups in total.# buck-registry: src/external/python/2.7/Python-2.7.16/_lsprof.so = py27__lsprof_dylibdarwin_dylib( name = "py27__lsprof_dylib", dylib_name = "_lsprof.so", install_name = "", compatibility_version = "1.0.0", objs = [ # py27__lsprof ":py27__lsprof_obj", ], siblings = [ "//vendor/src:system_final", ], linker_flags = [ "-Wl,-bundle", "-Wl,-flat_namespace", ], link_flag_files = { "-Wl,-bundle_loader": "//vendor/src/python:python27exe", }, toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", "//vendor/src/python:Python_dylib", ], visibility = ["PUBLIC"],)# END generated: py27__lsprof dylibs# BEGIN generated: py27__multiprocessing# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) py27__multiprocessing -- review before committing.# cmake target: py27__multiprocessing -> py27__multiprocessing# TODO these include dirs are GENERATED (codegen output):# src/external/python/2.7/Python-2.7.16# Sibling include dirs, staged as ONE tree with -I into each: headers here# reach each other with `#include "../<dir>/x.h"`, which only resolves if# the sibling is in the same staged tree.cc_header_root( name = "py27__multiprocessing_inc_python_2_7_Python_2_7_16", headers = glob([ "2.7/Python-2.7.16/**/*", "2.7/Python-2.7.16/Include/*.h", "2.7/Python-2.7.16/Include/**/*.h", "2.7/Python-2.7.16/Include/*.c", ]), root = "2.7/Python-2.7.16", include_subdirs = [ ".", "Include", ], visibility = ["PUBLIC"],)cc_objects( name = "py27__multiprocessing_obj", srcs = [ "2.7/Python-2.7.16/Modules/_multiprocessing/multiprocessing.c", "2.7/Python-2.7.16/Modules/_multiprocessing/semaphore.c", "2.7/Python-2.7.16/Modules/_multiprocessing/socket_connection.c", ], compiler_flags = [ "-DDTRACE_PROBES_DISABLED=1", "-DEXEC_PREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DMACOSX", "-DNDEBUG", "-DPLATFORM=\"darwin\"", "-DPREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DPYTHONPATH=\":plat-darwin:plat-mac:plat-mac/lib-scriptpackages:lib-tk:lib-old\"", "-DSUFFIX=\"\"", "-DVERSION=\"2.7\"", "-DVPATH=\".\"", "-D_LIBC_NO_FEATURE_VERIFICATION", "-Dpy27__multiprocessing_EXPORTS", "-fPIC", "-std=c99", "-fno-common", "-fno-strict-aliasing", "-fwrapv", "-w", "-nostdinc", ], toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", ":py27__multiprocessing_inc_python_2_7_Python_2_7_16", ], visibility = ["PUBLIC"],)# END generated: py27__multiprocessing# BEGIN generated: py27__multiprocessing dylibs# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) --dylibs py27__multiprocessing -- review before committing.# Links 1 cmake object library/ies, 1 flag groups in total.# buck-registry: src/external/python/2.7/Python-2.7.16/_multiprocessing.so = py27__multiprocessing_dylibdarwin_dylib( name = "py27__multiprocessing_dylib", dylib_name = "_multiprocessing.so", install_name = "", compatibility_version = "1.0.0", objs = [ # py27__multiprocessing ":py27__multiprocessing_obj", ], siblings = [ "//vendor/src:system_final", ], linker_flags = [ "-Wl,-bundle", "-Wl,-flat_namespace", ], link_flag_files = { "-Wl,-bundle_loader": "//vendor/src/python:python27exe", }, toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", "//vendor/src/python:Python_dylib", ], visibility = ["PUBLIC"],)# END generated: py27__multiprocessing dylibs# BEGIN generated: py27__random# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) py27__random -- review before committing.# cmake target: py27__random -> py27__random# TODO these include dirs are GENERATED (codegen output):# src/external/python/2.7/Python-2.7.16# Sibling include dirs, staged as ONE tree with -I into each: headers here# reach each other with `#include "../<dir>/x.h"`, which only resolves if# the sibling is in the same staged tree.cc_header_root( name = "py27__random_inc_python_2_7_Python_2_7_16", headers = glob([ "2.7/Python-2.7.16/**/*", "2.7/Python-2.7.16/Include/*.h", "2.7/Python-2.7.16/Include/**/*.h", "2.7/Python-2.7.16/Include/*.c", ]), root = "2.7/Python-2.7.16", include_subdirs = [ ".", "Include", ], visibility = ["PUBLIC"],)cc_objects( name = "py27__random_obj", srcs = [ "2.7/Python-2.7.16/Modules/_randommodule.c", ], compiler_flags = [ "-DDTRACE_PROBES_DISABLED=1", "-DEXEC_PREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DMACOSX", "-DNDEBUG", "-DPLATFORM=\"darwin\"", "-DPREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DPYTHONPATH=\":plat-darwin:plat-mac:plat-mac/lib-scriptpackages:lib-tk:lib-old\"", "-DSUFFIX=\"\"", "-DVERSION=\"2.7\"", "-DVPATH=\".\"", "-D_LIBC_NO_FEATURE_VERIFICATION", "-Dpy27__random_EXPORTS", "-fPIC", "-std=c99", "-fno-common", "-fno-strict-aliasing", "-fwrapv", "-w", "-nostdinc", ], toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", ":py27__random_inc_python_2_7_Python_2_7_16", ], visibility = ["PUBLIC"],)# END generated: py27__random# BEGIN generated: py27__random dylibs# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) --dylibs py27__random -- review before committing.# Links 1 cmake object library/ies, 1 flag groups in total.# buck-registry: src/external/python/2.7/Python-2.7.16/_random.so = py27__random_dylibdarwin_dylib( name = "py27__random_dylib", dylib_name = "_random.so", install_name = "", compatibility_version = "1.0.0", objs = [ # py27__random ":py27__random_obj", ], siblings = [ "//vendor/src:system_final", ], linker_flags = [ "-Wl,-bundle", "-Wl,-flat_namespace", ], link_flag_files = { "-Wl,-bundle_loader": "//vendor/src/python:python27exe", }, toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", "//vendor/src/python:Python_dylib", ], visibility = ["PUBLIC"],)# END generated: py27__random dylibs# BEGIN generated: py27__scproxy# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) py27__scproxy -- review before committing.# cmake target: py27__scproxy -> py27__scproxy# TODO these include dirs are GENERATED (codegen output):# src/external/python/2.7/Python-2.7.16# Sibling include dirs, staged as ONE tree with -I into each: headers here# reach each other with `#include "../<dir>/x.h"`, which only resolves if# the sibling is in the same staged tree.cc_header_root( name = "py27__scproxy_inc_python_2_7_Python_2_7_16", headers = glob([ "2.7/Python-2.7.16/**/*", "2.7/Python-2.7.16/Include/*.h", "2.7/Python-2.7.16/Include/**/*.h", "2.7/Python-2.7.16/Include/*.c", ]), root = "2.7/Python-2.7.16", include_subdirs = [ ".", "Include", ], visibility = ["PUBLIC"],)cc_objects( name = "py27__scproxy_obj", srcs = [ "2.7/Python-2.7.16/Mac/Modules/_scproxy.c", ], compiler_flags = [ "-DDTRACE_PROBES_DISABLED=1", "-DEXEC_PREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DMACOSX", "-DNDEBUG", "-DPLATFORM=\"darwin\"", "-DPREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DPYTHONPATH=\":plat-darwin:plat-mac:plat-mac/lib-scriptpackages:lib-tk:lib-old\"", "-DSUFFIX=\"\"", "-DVERSION=\"2.7\"", "-DVPATH=\".\"", "-D_LIBC_NO_FEATURE_VERIFICATION", "-Dpy27__scproxy_EXPORTS", "-fPIC", "-std=c99", "-fno-common", "-fno-strict-aliasing", "-fwrapv", "-w", "-nostdinc", ], toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", "//vendor/src:fw_CoreFoundation", "//vendor/src:fw_Security", "//vendor/src:fw_SystemConfiguration", ":py27__scproxy_inc_python_2_7_Python_2_7_16", ], visibility = ["PUBLIC"],)# END generated: py27__scproxy# BEGIN generated: py27__scproxy dylibs# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) --dylibs py27__scproxy -- review before committing.# Links 1 cmake object library/ies, 1 flag groups in total.# buck-registry: src/external/python/2.7/Python-2.7.16/_scproxy.so = py27__scproxy_dylibdarwin_dylib( name = "py27__scproxy_dylib", dylib_name = "_scproxy.so", install_name = "", compatibility_version = "1.0.0", objs = [ # py27__scproxy ":py27__scproxy_obj", ], siblings = [ "//vendor/src:system_final", "//src/darwin/frameworks:SystemConfiguration_dylib", ], linker_flags = [ "-Wl,-bundle", "-Wl,-flat_namespace", ], link_flag_files = { "-Wl,-bundle_loader": "//vendor/src/python:python27exe", }, toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", "//vendor/src/python:Python_dylib", ], visibility = ["PUBLIC"],)# END generated: py27__scproxy dylibs# BEGIN generated: py27__socket# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) py27__socket -- review before committing.# cmake target: py27__socket -> py27__socket# TODO these include dirs are GENERATED (codegen output):# src/external/python/2.7/Python-2.7.16# Sibling include dirs, staged as ONE tree with -I into each: headers here# reach each other with `#include "../<dir>/x.h"`, which only resolves if# the sibling is in the same staged tree.cc_header_root( name = "py27__socket_inc_python_2_7_Python_2_7_16", headers = glob([ "2.7/Python-2.7.16/**/*", "2.7/Python-2.7.16/Include/*.h", "2.7/Python-2.7.16/Include/**/*.h", "2.7/Python-2.7.16/Include/*.c", ]), root = "2.7/Python-2.7.16", include_subdirs = [ ".", "Include", ], visibility = ["PUBLIC"],)cc_objects( name = "py27__socket_obj", srcs = [ "2.7/Python-2.7.16/Modules/socketmodule.c", "2.7/Python-2.7.16/Modules/timemodule.c", ], compiler_flags = [ "-DDTRACE_PROBES_DISABLED=1", "-DEXEC_PREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DMACOSX", "-DNDEBUG", "-DPLATFORM=\"darwin\"", "-DPREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DPYTHONPATH=\":plat-darwin:plat-mac:plat-mac/lib-scriptpackages:lib-tk:lib-old\"", "-DSUFFIX=\"\"", "-DVERSION=\"2.7\"", "-DVPATH=\".\"", "-D_LIBC_NO_FEATURE_VERIFICATION", "-Dpy27__socket_EXPORTS", "-fPIC", "-std=c99", "-fno-common", "-fno-strict-aliasing", "-fwrapv", "-w", "-nostdinc", ], toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", ":py27__socket_inc_python_2_7_Python_2_7_16", ], visibility = ["PUBLIC"],)# END generated: py27__socket# BEGIN generated: py27__socket dylibs# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) --dylibs py27__socket -- review before committing.# Links 1 cmake object library/ies, 1 flag groups in total.# buck-registry: src/external/python/2.7/Python-2.7.16/_socket.so = py27__socket_dylibdarwin_dylib( name = "py27__socket_dylib", dylib_name = "_socket.so", install_name = "", compatibility_version = "1.0.0", objs = [ # py27__socket ":py27__socket_obj", ], siblings = [ "//vendor/src:system_final", ], linker_flags = [ "-Wl,-bundle", "-Wl,-flat_namespace", ], link_flag_files = { "-Wl,-bundle_loader": "//vendor/src/python:python27exe", }, toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", "//vendor/src/python:Python_dylib", ], visibility = ["PUBLIC"],)# END generated: py27__socket dylibs# BEGIN generated: py27__sqlite# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) py27__sqlite -- review before committing.# cmake target: py27__sqlite -> py27__sqlite# TODO these include dirs are GENERATED (codegen output):# src/external/python/2.7/Python-2.7.16# Sibling include dirs, staged as ONE tree with -I into each: headers here# reach each other with `#include "../<dir>/x.h"`, which only resolves if# the sibling is in the same staged tree.cc_header_root( name = "py27__sqlite_inc_python_2_7_Python_2_7_16", headers = glob([ "2.7/Python-2.7.16/**/*", "2.7/Python-2.7.16/Include/*.h", "2.7/Python-2.7.16/Include/**/*.h", "2.7/Python-2.7.16/Include/*.c", ]), root = "2.7/Python-2.7.16", include_subdirs = [ ".", "Include", ], visibility = ["PUBLIC"],)cc_objects( name = "py27__sqlite_obj", srcs = [ "2.7/Python-2.7.16/Modules/_sqlite/cache.c", "2.7/Python-2.7.16/Modules/_sqlite/connection.c", "2.7/Python-2.7.16/Modules/_sqlite/cursor.c", "2.7/Python-2.7.16/Modules/_sqlite/microprotocols.c", "2.7/Python-2.7.16/Modules/_sqlite/module.c", "2.7/Python-2.7.16/Modules/_sqlite/prepare_protocol.c", "2.7/Python-2.7.16/Modules/_sqlite/row.c", "2.7/Python-2.7.16/Modules/_sqlite/statement.c", "2.7/Python-2.7.16/Modules/_sqlite/util.c", ], compiler_flags = [ "-DDTRACE_PROBES_DISABLED=1", "-DEXEC_PREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DMACOSX", "-DMODULE_NAME=\"sqlite3\"", "-DNDEBUG", "-DPLATFORM=\"darwin\"", "-DPREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DPYTHONPATH=\":plat-darwin:plat-mac:plat-mac/lib-scriptpackages:lib-tk:lib-old\"", "-DSUFFIX=\"\"", "-DVERSION=\"2.7\"", "-DVPATH=\".\"", "-D_LIBC_NO_FEATURE_VERIFICATION", "-Dpy27__sqlite_EXPORTS", "-fPIC", "-std=c99", "-fno-common", "-fno-strict-aliasing", "-fwrapv", "-w", "-nostdinc", ], toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", ":py27__sqlite_inc_python_2_7_Python_2_7_16", ], visibility = ["PUBLIC"],)# END generated: py27__sqlite# BEGIN generated: py27__sqlite dylibs# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) --dylibs py27__sqlite -- review before committing.# Links 1 cmake object library/ies, 1 flag groups in total.# buck-registry: src/external/python/2.7/Python-2.7.16/_sqlite.so = py27__sqlite_dylibdarwin_dylib( name = "py27__sqlite_dylib", dylib_name = "_sqlite.so", install_name = "", compatibility_version = "1.0.0", objs = [ # py27__sqlite ":py27__sqlite_obj", ], siblings = [ "//vendor/src:sqlite3_dylib", "//vendor/src:system_final", ], linker_flags = [ "-Wl,-bundle", "-Wl,-flat_namespace", ], link_flag_files = { "-Wl,-bundle_loader": "//vendor/src/python:python27exe", }, toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", "//vendor/src/python:Python_dylib", ], visibility = ["PUBLIC"],)# END generated: py27__sqlite dylibs# BEGIN generated: py27__ssl# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) py27__ssl -- review before committing.# cmake target: py27__ssl -> py27__ssl# TODO these include dirs are GENERATED (codegen output):# src/external/python/2.7/Python-2.7.16# Sibling include dirs, staged as ONE tree with -I into each: headers here# reach each other with `#include "../<dir>/x.h"`, which only resolves if# the sibling is in the same staged tree.cc_header_root( name = "py27__ssl_inc_python_2_7_Python_2_7_16", headers = glob([ "2.7/Python-2.7.16/**/*", "2.7/Python-2.7.16/Include/*.h", "2.7/Python-2.7.16/Include/**/*.h", "2.7/Python-2.7.16/Include/*.c", ]), root = "2.7/Python-2.7.16", include_subdirs = [ ".", "Include", ], visibility = ["PUBLIC"],)cc_objects( name = "py27__ssl_obj", srcs = [ "2.7/Python-2.7.16/Modules/_ssl.c", ], compiler_flags = [ "-DDTRACE_PROBES_DISABLED=1", "-DEXEC_PREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DMACOSX", "-DNDEBUG", "-DPLATFORM=\"darwin\"", "-DPREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DPYTHONPATH=\":plat-darwin:plat-mac:plat-mac/lib-scriptpackages:lib-tk:lib-old\"", "-DSUFFIX=\"\"", "-DVERSION=\"2.7\"", "-DVPATH=\".\"", "-D_LIBC_NO_FEATURE_VERIFICATION", "-Dpy27__ssl_EXPORTS", "-fPIC", "-std=c99", "-fno-common", "-fno-strict-aliasing", "-fwrapv", "-w", "-nostdinc", ], toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", ":py27__ssl_inc_python_2_7_Python_2_7_16", ], visibility = ["PUBLIC"],)# END generated: py27__ssl# BEGIN generated: py27__ssl dylibs# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) --dylibs py27__ssl -- review before committing.# Links 1 cmake object library/ies, 1 flag groups in total.# buck-registry: src/external/python/2.7/Python-2.7.16/_ssl.so = py27__ssl_dylibdarwin_dylib( name = "py27__ssl_dylib", dylib_name = "_ssl.so", install_name = "", compatibility_version = "1.0.0", objs = [ # py27__ssl ":py27__ssl_obj", ], siblings = [ "//vendor/src:ssl46_dylib", "//vendor/src:crypto44_dylib", "//vendor/src:system_final", ], linker_flags = [ "-Wl,-bundle", "-Wl,-flat_namespace", ], link_flag_files = { "-Wl,-bundle_loader": "//vendor/src/python:python27exe", }, toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", "//vendor/src/python:Python_dylib", ], visibility = ["PUBLIC"],)# END generated: py27__ssl dylibs# BEGIN generated: py27__struct# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) py27__struct -- review before committing.# cmake target: py27__struct -> py27__struct# TODO these include dirs are GENERATED (codegen output):# src/external/python/2.7/Python-2.7.16# Sibling include dirs, staged as ONE tree with -I into each: headers here# reach each other with `#include "../<dir>/x.h"`, which only resolves if# the sibling is in the same staged tree.cc_header_root( name = "py27__struct_inc_python_2_7_Python_2_7_16", headers = glob([ "2.7/Python-2.7.16/**/*", "2.7/Python-2.7.16/Include/*.h", "2.7/Python-2.7.16/Include/**/*.h", "2.7/Python-2.7.16/Include/*.c", ]), root = "2.7/Python-2.7.16", include_subdirs = [ ".", "Include", ], visibility = ["PUBLIC"],)cc_objects( name = "py27__struct_obj", srcs = [ "2.7/Python-2.7.16/Modules/_struct.c", ], compiler_flags = [ "-DDTRACE_PROBES_DISABLED=1", "-DEXEC_PREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DMACOSX", "-DNDEBUG", "-DPLATFORM=\"darwin\"", "-DPREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DPYTHONPATH=\":plat-darwin:plat-mac:plat-mac/lib-scriptpackages:lib-tk:lib-old\"", "-DSUFFIX=\"\"", "-DVERSION=\"2.7\"", "-DVPATH=\".\"", "-D_LIBC_NO_FEATURE_VERIFICATION", "-Dpy27__struct_EXPORTS", "-fPIC", "-std=c99", "-fno-common", "-fno-strict-aliasing", "-fwrapv", "-w", "-nostdinc", ], toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", ":py27__struct_inc_python_2_7_Python_2_7_16", ], visibility = ["PUBLIC"],)# END generated: py27__struct# BEGIN generated: py27__struct dylibs# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) --dylibs py27__struct -- review before committing.# Links 1 cmake object library/ies, 1 flag groups in total.# buck-registry: src/external/python/2.7/Python-2.7.16/_struct.so = py27__struct_dylibdarwin_dylib( name = "py27__struct_dylib", dylib_name = "_struct.so", install_name = "", compatibility_version = "1.0.0", objs = [ # py27__struct ":py27__struct_obj", ], siblings = [ "//vendor/src:system_final", ], linker_flags = [ "-Wl,-bundle", "-Wl,-flat_namespace", ], link_flag_files = { "-Wl,-bundle_loader": "//vendor/src/python:python27exe", }, toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", "//vendor/src/python:Python_dylib", ], visibility = ["PUBLIC"],)# END generated: py27__struct dylibs# BEGIN generated: py27__testcapi# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) py27__testcapi -- review before committing.# cmake target: py27__testcapi -> py27__testcapi# TODO these include dirs are GENERATED (codegen output):# src/external/python/2.7/Python-2.7.16# Sibling include dirs, staged as ONE tree with -I into each: headers here# reach each other with `#include "../<dir>/x.h"`, which only resolves if# the sibling is in the same staged tree.cc_header_root( name = "py27__testcapi_inc_python_2_7_Python_2_7_16", headers = glob([ "2.7/Python-2.7.16/**/*", "2.7/Python-2.7.16/Include/*.h", "2.7/Python-2.7.16/Include/**/*.h", "2.7/Python-2.7.16/Include/*.c", ]), root = "2.7/Python-2.7.16", include_subdirs = [ ".", "Include", ], visibility = ["PUBLIC"],)cc_objects( name = "py27__testcapi_obj", srcs = [ "2.7/Python-2.7.16/Modules/_testcapimodule.c", ], compiler_flags = [ "-DDTRACE_PROBES_DISABLED=1", "-DEXEC_PREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DMACOSX", "-DNDEBUG", "-DPLATFORM=\"darwin\"", "-DPREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DPYTHONPATH=\":plat-darwin:plat-mac:plat-mac/lib-scriptpackages:lib-tk:lib-old\"", "-DSUFFIX=\"\"", "-DVERSION=\"2.7\"", "-DVPATH=\".\"", "-D_LIBC_NO_FEATURE_VERIFICATION", "-Dpy27__testcapi_EXPORTS", "-fPIC", "-std=c99", "-fno-common", "-fno-strict-aliasing", "-fwrapv", "-w", "-nostdinc", ], toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", ":py27__testcapi_inc_python_2_7_Python_2_7_16", ], visibility = ["PUBLIC"],)# END generated: py27__testcapi# BEGIN generated: py27__testcapi dylibs# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) --dylibs py27__testcapi -- review before committing.# Links 1 cmake object library/ies, 1 flag groups in total.# buck-registry: src/external/python/2.7/Python-2.7.16/_testcapi.so = py27__testcapi_dylibdarwin_dylib( name = "py27__testcapi_dylib", dylib_name = "_testcapi.so", install_name = "", compatibility_version = "1.0.0", objs = [ # py27__testcapi ":py27__testcapi_obj", ], siblings = [ "//vendor/src:system_final", ], linker_flags = [ "-Wl,-bundle", "-Wl,-flat_namespace", ], link_flag_files = { "-Wl,-bundle_loader": "//vendor/src/python:python27exe", }, toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", "//vendor/src/python:Python_dylib", ], visibility = ["PUBLIC"],)# END generated: py27__testcapi dylibs# BEGIN generated: py27_dbm# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) py27_dbm -- review before committing.# cmake target: py27_dbm -> py27_dbm# TODO these include dirs are GENERATED (codegen output):# src/external/python/2.7/Python-2.7.16# Sibling include dirs, staged as ONE tree with -I into each: headers here# reach each other with `#include "../<dir>/x.h"`, which only resolves if# the sibling is in the same staged tree.cc_header_root( name = "py27_dbm_inc_python_2_7_Python_2_7_16", headers = glob([ "2.7/Python-2.7.16/**/*", "2.7/Python-2.7.16/Include/*.h", "2.7/Python-2.7.16/Include/**/*.h", "2.7/Python-2.7.16/Include/*.c", ]), root = "2.7/Python-2.7.16", include_subdirs = [ ".", "Include", ], visibility = ["PUBLIC"],)cc_objects( name = "py27_dbm_obj", srcs = [ "2.7/Python-2.7.16/Modules/dbmmodule.c", ], compiler_flags = [ "-DDB_DBM_HSEARCH", "-DDTRACE_PROBES_DISABLED=1", "-DEXEC_PREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DHAVE_BERKDB_H", "-DMACOSX", "-DNDEBUG", "-DPLATFORM=\"darwin\"", "-DPREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DPYTHONPATH=\":plat-darwin:plat-mac:plat-mac/lib-scriptpackages:lib-tk:lib-old\"", "-DSUFFIX=\"\"", "-DVERSION=\"2.7\"", "-DVPATH=\".\"", "-D_LIBC_NO_FEATURE_VERIFICATION", "-Dpy27_dbm_EXPORTS", "-fPIC", "-std=c99", "-fno-common", "-fno-strict-aliasing", "-fwrapv", "-w", "-nostdinc", ], toolchain = "toolchains//:darwin_cc", deps = [ "//vendor/src:berkeley_db_inc_BerkeleyDB_db", "//src/darwin:sdk_env", ":py27_dbm_inc_python_2_7_Python_2_7_16", ], visibility = ["PUBLIC"],)# END generated: py27_dbm# BEGIN generated: py27_dbm dylibs# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) --dylibs py27_dbm -- review before committing.# Links 1 cmake object library/ies, 1 flag groups in total.# buck-registry: src/external/python/2.7/Python-2.7.16/dbm.so = py27_dbm_dylibdarwin_dylib( name = "py27_dbm_dylib", dylib_name = "dbm.so", install_name = "", compatibility_version = "1.0.0", objs = [ # py27_dbm ":py27_dbm_obj", ], siblings = [ "//vendor/src:system_final", ], linker_flags = [ "-Wl,-bundle", "-Wl,-flat_namespace", ], link_flag_files = { "-Wl,-bundle_loader": "//vendor/src/python:python27exe", }, toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", "//vendor/src:berkeley_db", "//vendor/src/python:Python_dylib", ], visibility = ["PUBLIC"],)# END generated: py27_dbm dylibs# BEGIN generated: prefix dirs# GENERATED from the reference build's install entries by# cider-install-from-manifests -- review before committing.prefix_dir( name = "prefix_2_7_Python_2_7_16_Include", srcs = glob( ["2.7/Python-2.7.16/Include/**"], exclude = [], ), strip = "2.7/Python-2.7.16/Include", visibility = ["PUBLIC"],)# END generated: prefix dirs# BEGIN generated: py27_datetime# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) py27_datetime -- review before committing.# cmake target: py27_datetime -> py27_datetime# TODO these include dirs are GENERATED (codegen output):# src/external/python/2.7/Python-2.7.16# Sibling include dirs, staged as ONE tree with -I into each: headers here# reach each other with `#include "../<dir>/x.h"`, which only resolves if# the sibling is in the same staged tree.cc_header_root( name = "py27_datetime_inc_python_2_7_Python_2_7_16", headers = glob([ "2.7/Python-2.7.16/**/*", "2.7/Python-2.7.16/Include/*.h", "2.7/Python-2.7.16/Include/**/*.h", "2.7/Python-2.7.16/Include/*.c", ]), root = "2.7/Python-2.7.16", include_subdirs = [ ".", "Include", ], visibility = ["PUBLIC"],)cc_objects( name = "py27_datetime_obj", srcs = [ "2.7/Python-2.7.16/Modules/datetimemodule.c", "2.7/Python-2.7.16/Modules/timemodule.c", ], compiler_flags = [ "-DDTRACE_PROBES_DISABLED=1", "-DEXEC_PREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DMACOSX", "-DNDEBUG", "-DPLATFORM=\"darwin\"", "-DPREFIX=\"/System/Library/Frameworks/Python.framework/Versions/2.7\"", "-DPYTHONPATH=\":plat-darwin:plat-mac:plat-mac/lib-scriptpackages:lib-tk:lib-old\"", "-DSUFFIX=\"\"", "-DVERSION=\"2.7\"", "-DVPATH=\".\"", "-D_LIBC_NO_FEATURE_VERIFICATION", "-Dpy27_datetime_EXPORTS", "-fPIC", "-std=c99", "-fno-common", "-fno-strict-aliasing", "-fwrapv", "-w", "-nostdinc", ], toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", ":py27_datetime_inc_python_2_7_Python_2_7_16", ], visibility = ["PUBLIC"],)# END generated: py27_datetime# BEGIN generated: py27_datetime dylibs# GENERATED from the reference build.ninja by# gen-buck-from-ninja (deleted) --dylibs py27_datetime -- review before committing.# Links 1 cmake object library/ies, 1 flag groups in total.# buck-registry: src/external/python/2.7/Python-2.7.16/datetime.so = py27_datetime_dylibdarwin_dylib( name = "py27_datetime_dylib", dylib_name = "datetime.so", install_name = "", compatibility_version = "1.0.0", objs = [ # py27_datetime ":py27_datetime_obj", ], siblings = [ "//vendor/src:system_final", ], linker_flags = [ "-Wl,-bundle", "-Wl,-flat_namespace", ], link_flag_files = { "-Wl,-bundle_loader": "//vendor/src/python:python27exe", }, toolchain = "toolchains//:darwin_cc", deps = [ "//src/darwin:sdk_env", "//vendor/src/python:Python_dylib", "//src/darwin/frameworks:HIServices_dylib", "//src/darwin/frameworks:ApplicationServices_dylib", "//vendor/src:CoreGraphics_dylib", "//vendor/src:CoreText_dylib", "//src/darwin/frameworks:ImageIO_dylib", "//src/darwin/frameworks:CoreVideo_dylib", "//vendor/src:CoreData_dylib", "//vendor/src:QuartzCore_dylib", "//src/darwin/frameworks:OpenGL_dylib", "//vendor/src:Onyx2D_dylib", ], visibility = ["PUBLIC"],)# END generated: py27_datetime dylibs# python-config, which cmake writes at CONFIGURE time rather than building:# `configure_file(Misc/python-config.in python-config)` in the pin's CMakeLists, installed# as usr/bin/python2.7-config. There is no ninja edge for it, which is why the install# entry read as a build output with no target -- nothing builds it, cmake just writes it.configure_file( name = "python_config", src = "2.7/Python-2.7.16/Misc/python-config.in", out = "python-config", values = { "EXENAME": "/System/Library/Frameworks/Python.framework/Versions/2.7/bin/python2.7", }, visibility = ["PUBLIC"],)