chrome.json 123 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209
  1. {
  2. "AAAAA1 AUTOGENERATED FILE DO NOT EDIT": {},
  3. "AAAAA2 See generate_buildbot_json.py to make changes": {},
  4. "chromeos-arm-generic-cfi-thin-lto-chrome": {
  5. "additional_compile_targets": [
  6. "chromiumos_preflight"
  7. ]
  8. },
  9. "chromeos-arm64-generic-cfi-thin-lto-chrome": {
  10. "additional_compile_targets": [
  11. "chromiumos_preflight"
  12. ]
  13. },
  14. "chromeos-betty-arc-r-chrome": {
  15. "additional_compile_targets": [
  16. "chromiumos_preflight"
  17. ],
  18. "gtest_tests": [
  19. {
  20. "merge": {
  21. "args": [],
  22. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  23. },
  24. "resultdb": {
  25. "enable": true,
  26. "has_native_resultdb_integration": true
  27. },
  28. "swarming": {
  29. "can_use_on_swarming_builders": true,
  30. "dimension_sets": [
  31. {
  32. "device_type": "eve-arc-r|kevin",
  33. "os": "ChromeOS",
  34. "pool": "chrome.tests"
  35. }
  36. ],
  37. "idempotent": false,
  38. "io_timeout": 3600,
  39. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com",
  40. "shards": 10
  41. },
  42. "test": "chrome_all_tast_tests",
  43. "test_id_prefix": "ninja://chromeos:chrome_all_tast_tests/"
  44. },
  45. {
  46. "args": [
  47. "--strip-chrome"
  48. ],
  49. "merge": {
  50. "script": "//tools/perf/process_perf_results.py"
  51. },
  52. "resultdb": {
  53. "enable": true,
  54. "has_native_resultdb_integration": true
  55. },
  56. "swarming": {
  57. "can_use_on_swarming_builders": true,
  58. "dimension_sets": [
  59. {
  60. "device_type": "eve-arc-r|kevin",
  61. "os": "ChromeOS",
  62. "pool": "chrome.tests"
  63. }
  64. ],
  65. "idempotent": false,
  66. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  67. },
  68. "test": "disk_usage_tast_test",
  69. "test_id_prefix": "ninja://chromeos:disk_usage_tast_test/"
  70. }
  71. ]
  72. },
  73. "chromeos-betty-pi-arc-cfi-thin-lto-chrome": {
  74. "additional_compile_targets": [
  75. "chromiumos_preflight"
  76. ],
  77. "gtest_tests": [
  78. {
  79. "args": [
  80. "--strip-chrome"
  81. ],
  82. "merge": {
  83. "args": [],
  84. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  85. },
  86. "resultdb": {
  87. "enable": true,
  88. "has_native_resultdb_integration": true
  89. },
  90. "swarming": {
  91. "can_use_on_swarming_builders": true,
  92. "dimension_sets": [
  93. {
  94. "cpu": "x86",
  95. "gce": "1",
  96. "kvm": "1",
  97. "os": "Ubuntu-18.04",
  98. "pool": "chrome.tests"
  99. }
  100. ],
  101. "idempotent": false,
  102. "io_timeout": 3600,
  103. "named_caches": [
  104. {
  105. "name": "cros_vm",
  106. "path": "magic_cros_vm_cache"
  107. }
  108. ],
  109. "optional_dimensions": {
  110. "60": [
  111. {
  112. "caches": "cros_vm"
  113. }
  114. ]
  115. },
  116. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com",
  117. "shards": 10
  118. },
  119. "test": "chrome_all_tast_tests",
  120. "test_id_prefix": "ninja://chromeos:chrome_all_tast_tests/"
  121. },
  122. {
  123. "args": [
  124. "--strip-chrome"
  125. ],
  126. "merge": {
  127. "script": "//tools/perf/process_perf_results.py"
  128. },
  129. "resultdb": {
  130. "enable": true,
  131. "has_native_resultdb_integration": true
  132. },
  133. "swarming": {
  134. "can_use_on_swarming_builders": true,
  135. "dimension_sets": [
  136. {
  137. "cpu": "x86",
  138. "gce": "1",
  139. "kvm": "1",
  140. "os": "Ubuntu-18.04",
  141. "pool": "chrome.tests"
  142. }
  143. ],
  144. "idempotent": false,
  145. "named_caches": [
  146. {
  147. "name": "cros_vm",
  148. "path": "magic_cros_vm_cache"
  149. }
  150. ],
  151. "optional_dimensions": {
  152. "60": [
  153. {
  154. "caches": "cros_vm"
  155. }
  156. ]
  157. },
  158. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  159. },
  160. "test": "disk_usage_tast_test",
  161. "test_id_prefix": "ninja://chromeos:disk_usage_tast_test/"
  162. }
  163. ]
  164. },
  165. "chromeos-betty-pi-arc-chrome": {
  166. "additional_compile_targets": [
  167. "chromiumos_preflight"
  168. ],
  169. "gtest_tests": [
  170. {
  171. "args": [
  172. "--ozone-platform=headless"
  173. ],
  174. "merge": {
  175. "args": [],
  176. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  177. },
  178. "swarming": {
  179. "can_use_on_swarming_builders": true,
  180. "dimension_sets": [
  181. {
  182. "cpu": "x86",
  183. "gce": "1",
  184. "kvm": "1",
  185. "os": "Ubuntu-18.04",
  186. "pool": "chrome.tests"
  187. }
  188. ],
  189. "named_caches": [
  190. {
  191. "name": "cros_vm",
  192. "path": "magic_cros_vm_cache"
  193. }
  194. ],
  195. "optional_dimensions": {
  196. "60": [
  197. {
  198. "caches": "cros_vm"
  199. }
  200. ]
  201. },
  202. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  203. },
  204. "test": "aura_unittests",
  205. "test_id_prefix": "ninja://ui/aura:aura_unittests/"
  206. },
  207. {
  208. "merge": {
  209. "args": [],
  210. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  211. },
  212. "swarming": {
  213. "can_use_on_swarming_builders": true,
  214. "dimension_sets": [
  215. {
  216. "cpu": "x86",
  217. "gce": "1",
  218. "kvm": "1",
  219. "os": "Ubuntu-18.04",
  220. "pool": "chrome.tests"
  221. }
  222. ],
  223. "named_caches": [
  224. {
  225. "name": "cros_vm",
  226. "path": "magic_cros_vm_cache"
  227. }
  228. ],
  229. "optional_dimensions": {
  230. "60": [
  231. {
  232. "caches": "cros_vm"
  233. }
  234. ]
  235. },
  236. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  237. },
  238. "test": "base_unittests",
  239. "test_id_prefix": "ninja://base:base_unittests/"
  240. },
  241. {
  242. "args": [
  243. "--test-launcher-jobs=1",
  244. "--gtest_filter=-*UsingRealWebcam_CaptureMjpeg*"
  245. ],
  246. "merge": {
  247. "args": [],
  248. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  249. },
  250. "swarming": {
  251. "can_use_on_swarming_builders": true,
  252. "dimension_sets": [
  253. {
  254. "cpu": "x86",
  255. "gce": "1",
  256. "kvm": "1",
  257. "os": "Ubuntu-18.04",
  258. "pool": "chrome.tests"
  259. }
  260. ],
  261. "named_caches": [
  262. {
  263. "name": "cros_vm",
  264. "path": "magic_cros_vm_cache"
  265. }
  266. ],
  267. "optional_dimensions": {
  268. "60": [
  269. {
  270. "caches": "cros_vm"
  271. }
  272. ]
  273. },
  274. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  275. },
  276. "test": "capture_unittests",
  277. "test_id_prefix": "ninja://media/capture:capture_unittests/"
  278. },
  279. {
  280. "merge": {
  281. "args": [],
  282. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  283. },
  284. "swarming": {
  285. "can_use_on_swarming_builders": true,
  286. "dimension_sets": [
  287. {
  288. "cpu": "x86",
  289. "gce": "1",
  290. "kvm": "1",
  291. "os": "Ubuntu-18.04",
  292. "pool": "chrome.tests"
  293. }
  294. ],
  295. "named_caches": [
  296. {
  297. "name": "cros_vm",
  298. "path": "magic_cros_vm_cache"
  299. }
  300. ],
  301. "optional_dimensions": {
  302. "60": [
  303. {
  304. "caches": "cros_vm"
  305. }
  306. ]
  307. },
  308. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  309. },
  310. "test": "cc_unittests",
  311. "test_id_prefix": "ninja://cc:cc_unittests/"
  312. },
  313. {
  314. "merge": {
  315. "args": [],
  316. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  317. },
  318. "resultdb": {
  319. "enable": true,
  320. "has_native_resultdb_integration": true
  321. },
  322. "swarming": {
  323. "can_use_on_swarming_builders": true,
  324. "dimension_sets": [
  325. {
  326. "cpu": "x86",
  327. "gce": "1",
  328. "kvm": "1",
  329. "os": "Ubuntu-18.04",
  330. "pool": "chrome.tests"
  331. }
  332. ],
  333. "idempotent": false,
  334. "io_timeout": 3600,
  335. "named_caches": [
  336. {
  337. "name": "cros_vm",
  338. "path": "magic_cros_vm_cache"
  339. }
  340. ],
  341. "optional_dimensions": {
  342. "60": [
  343. {
  344. "caches": "cros_vm"
  345. }
  346. ]
  347. },
  348. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com",
  349. "shards": 10
  350. },
  351. "test": "chrome_all_tast_tests",
  352. "test_id_prefix": "ninja://chromeos:chrome_all_tast_tests/"
  353. },
  354. {
  355. "experiment_percentage": 100,
  356. "merge": {
  357. "args": [],
  358. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  359. },
  360. "resultdb": {
  361. "enable": true,
  362. "has_native_resultdb_integration": true
  363. },
  364. "swarming": {
  365. "can_use_on_swarming_builders": true,
  366. "dimension_sets": [
  367. {
  368. "cpu": "x86",
  369. "gce": "1",
  370. "kvm": "1",
  371. "os": "Ubuntu-18.04",
  372. "pool": "chrome.tests"
  373. }
  374. ],
  375. "idempotent": false,
  376. "named_caches": [
  377. {
  378. "name": "cros_vm",
  379. "path": "magic_cros_vm_cache"
  380. }
  381. ],
  382. "optional_dimensions": {
  383. "60": [
  384. {
  385. "caches": "cros_vm"
  386. }
  387. ]
  388. },
  389. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  390. },
  391. "test": "chrome_variations_tast_tests",
  392. "test_id_prefix": "ninja://chromeos:chrome_variations_tast_tests/"
  393. },
  394. {
  395. "merge": {
  396. "args": [],
  397. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  398. },
  399. "swarming": {
  400. "can_use_on_swarming_builders": true,
  401. "dimension_sets": [
  402. {
  403. "cpu": "x86",
  404. "gce": "1",
  405. "kvm": "1",
  406. "os": "Ubuntu-18.04",
  407. "pool": "chrome.tests"
  408. }
  409. ],
  410. "named_caches": [
  411. {
  412. "name": "cros_vm",
  413. "path": "magic_cros_vm_cache"
  414. }
  415. ],
  416. "optional_dimensions": {
  417. "60": [
  418. {
  419. "caches": "cros_vm"
  420. }
  421. ]
  422. },
  423. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  424. },
  425. "test": "crypto_unittests",
  426. "test_id_prefix": "ninja://crypto:crypto_unittests/"
  427. },
  428. {
  429. "args": [
  430. "--strip-chrome"
  431. ],
  432. "merge": {
  433. "script": "//tools/perf/process_perf_results.py"
  434. },
  435. "resultdb": {
  436. "enable": true,
  437. "has_native_resultdb_integration": true
  438. },
  439. "swarming": {
  440. "can_use_on_swarming_builders": true,
  441. "dimension_sets": [
  442. {
  443. "cpu": "x86",
  444. "gce": "1",
  445. "kvm": "1",
  446. "os": "Ubuntu-18.04",
  447. "pool": "chrome.tests"
  448. }
  449. ],
  450. "idempotent": false,
  451. "named_caches": [
  452. {
  453. "name": "cros_vm",
  454. "path": "magic_cros_vm_cache"
  455. }
  456. ],
  457. "optional_dimensions": {
  458. "60": [
  459. {
  460. "caches": "cros_vm"
  461. }
  462. ]
  463. },
  464. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  465. },
  466. "test": "disk_usage_tast_test",
  467. "test_id_prefix": "ninja://chromeos:disk_usage_tast_test/"
  468. },
  469. {
  470. "merge": {
  471. "args": [],
  472. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  473. },
  474. "swarming": {
  475. "can_use_on_swarming_builders": true,
  476. "dimension_sets": [
  477. {
  478. "cpu": "x86",
  479. "gce": "1",
  480. "kvm": "1",
  481. "os": "Ubuntu-18.04",
  482. "pool": "chrome.tests"
  483. }
  484. ],
  485. "named_caches": [
  486. {
  487. "name": "cros_vm",
  488. "path": "magic_cros_vm_cache"
  489. }
  490. ],
  491. "optional_dimensions": {
  492. "60": [
  493. {
  494. "caches": "cros_vm"
  495. }
  496. ]
  497. },
  498. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  499. },
  500. "test": "display_unittests",
  501. "test_id_prefix": "ninja://ui/display:display_unittests/"
  502. },
  503. {
  504. "merge": {
  505. "args": [],
  506. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  507. },
  508. "swarming": {
  509. "can_use_on_swarming_builders": true,
  510. "dimension_sets": [
  511. {
  512. "cpu": "x86",
  513. "gce": "1",
  514. "kvm": "1",
  515. "os": "Ubuntu-18.04",
  516. "pool": "chrome.tests"
  517. }
  518. ],
  519. "named_caches": [
  520. {
  521. "name": "cros_vm",
  522. "path": "magic_cros_vm_cache"
  523. }
  524. ],
  525. "optional_dimensions": {
  526. "60": [
  527. {
  528. "caches": "cros_vm"
  529. }
  530. ]
  531. },
  532. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  533. },
  534. "test": "google_apis_unittests",
  535. "test_id_prefix": "ninja://google_apis:google_apis_unittests/"
  536. },
  537. {
  538. "merge": {
  539. "args": [],
  540. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  541. },
  542. "swarming": {
  543. "can_use_on_swarming_builders": true,
  544. "dimension_sets": [
  545. {
  546. "cpu": "x86",
  547. "gce": "1",
  548. "kvm": "1",
  549. "os": "Ubuntu-18.04",
  550. "pool": "chrome.tests"
  551. }
  552. ],
  553. "named_caches": [
  554. {
  555. "name": "cros_vm",
  556. "path": "magic_cros_vm_cache"
  557. }
  558. ],
  559. "optional_dimensions": {
  560. "60": [
  561. {
  562. "caches": "cros_vm"
  563. }
  564. ]
  565. },
  566. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  567. },
  568. "test": "ipc_tests",
  569. "test_id_prefix": "ninja://ipc:ipc_tests/"
  570. },
  571. {
  572. "merge": {
  573. "args": [],
  574. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  575. },
  576. "swarming": {
  577. "can_use_on_swarming_builders": true,
  578. "dimension_sets": [
  579. {
  580. "cpu": "x86",
  581. "gce": "1",
  582. "kvm": "1",
  583. "os": "Ubuntu-18.04",
  584. "pool": "chrome.tests"
  585. }
  586. ],
  587. "named_caches": [
  588. {
  589. "name": "cros_vm",
  590. "path": "magic_cros_vm_cache"
  591. }
  592. ],
  593. "optional_dimensions": {
  594. "60": [
  595. {
  596. "caches": "cros_vm"
  597. }
  598. ]
  599. },
  600. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  601. },
  602. "test": "latency_unittests",
  603. "test_id_prefix": "ninja://ui/latency:latency_unittests/"
  604. },
  605. {
  606. "merge": {
  607. "args": [],
  608. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  609. },
  610. "swarming": {
  611. "can_use_on_swarming_builders": true,
  612. "dimension_sets": [
  613. {
  614. "cpu": "x86",
  615. "gce": "1",
  616. "kvm": "1",
  617. "os": "Ubuntu-18.04",
  618. "pool": "chrome.tests"
  619. }
  620. ],
  621. "named_caches": [
  622. {
  623. "name": "cros_vm",
  624. "path": "magic_cros_vm_cache"
  625. }
  626. ],
  627. "optional_dimensions": {
  628. "60": [
  629. {
  630. "caches": "cros_vm"
  631. }
  632. ]
  633. },
  634. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  635. },
  636. "test": "libcups_unittests",
  637. "test_id_prefix": "ninja://chrome/services/cups_proxy:libcups_unittests/"
  638. },
  639. {
  640. "args": [
  641. "--test-launcher-filter-file=../../testing/buildbot/filters/chromeos.media_unittests.filter"
  642. ],
  643. "merge": {
  644. "args": [],
  645. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  646. },
  647. "swarming": {
  648. "can_use_on_swarming_builders": true,
  649. "dimension_sets": [
  650. {
  651. "cpu": "x86",
  652. "gce": "1",
  653. "kvm": "1",
  654. "os": "Ubuntu-18.04",
  655. "pool": "chrome.tests"
  656. }
  657. ],
  658. "named_caches": [
  659. {
  660. "name": "cros_vm",
  661. "path": "magic_cros_vm_cache"
  662. }
  663. ],
  664. "optional_dimensions": {
  665. "60": [
  666. {
  667. "caches": "cros_vm"
  668. }
  669. ]
  670. },
  671. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  672. },
  673. "test": "media_unittests",
  674. "test_id_prefix": "ninja://media:media_unittests/"
  675. },
  676. {
  677. "merge": {
  678. "args": [],
  679. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  680. },
  681. "swarming": {
  682. "can_use_on_swarming_builders": true,
  683. "dimension_sets": [
  684. {
  685. "cpu": "x86",
  686. "gce": "1",
  687. "kvm": "1",
  688. "os": "Ubuntu-18.04",
  689. "pool": "chrome.tests"
  690. }
  691. ],
  692. "named_caches": [
  693. {
  694. "name": "cros_vm",
  695. "path": "magic_cros_vm_cache"
  696. }
  697. ],
  698. "optional_dimensions": {
  699. "60": [
  700. {
  701. "caches": "cros_vm"
  702. }
  703. ]
  704. },
  705. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  706. },
  707. "test": "midi_unittests",
  708. "test_id_prefix": "ninja://media/midi:midi_unittests/"
  709. },
  710. {
  711. "merge": {
  712. "args": [],
  713. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  714. },
  715. "swarming": {
  716. "can_use_on_swarming_builders": true,
  717. "dimension_sets": [
  718. {
  719. "cpu": "x86",
  720. "gce": "1",
  721. "kvm": "1",
  722. "os": "Ubuntu-18.04",
  723. "pool": "chrome.tests"
  724. }
  725. ],
  726. "named_caches": [
  727. {
  728. "name": "cros_vm",
  729. "path": "magic_cros_vm_cache"
  730. }
  731. ],
  732. "optional_dimensions": {
  733. "60": [
  734. {
  735. "caches": "cros_vm"
  736. }
  737. ]
  738. },
  739. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  740. },
  741. "test": "mojo_unittests",
  742. "test_id_prefix": "ninja://mojo:mojo_unittests/"
  743. },
  744. {
  745. "args": [
  746. "--vpython-dir=../../vpython_dir_linux_amd64",
  747. "--gtest_filter=-PythonUtils.PythonRunTime"
  748. ],
  749. "merge": {
  750. "args": [],
  751. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  752. },
  753. "swarming": {
  754. "can_use_on_swarming_builders": true,
  755. "cipd_packages": [
  756. {
  757. "cipd_package": "infra/3pp/tools/cpython3/linux-amd64",
  758. "location": "vpython_dir_linux_amd64",
  759. "revision": "version:2@3.8.10.chromium.21"
  760. },
  761. {
  762. "cipd_package": "infra/tools/luci/vpython/linux-amd64",
  763. "location": "vpython_dir_linux_amd64",
  764. "revision": "git_revision:0f694cdc06ba054b9960aa1ae9766e45b53d02c1"
  765. }
  766. ],
  767. "dimension_sets": [
  768. {
  769. "cpu": "x86",
  770. "gce": "1",
  771. "kvm": "1",
  772. "os": "Ubuntu-18.04",
  773. "pool": "chrome.tests"
  774. }
  775. ],
  776. "named_caches": [
  777. {
  778. "name": "cros_vm",
  779. "path": "magic_cros_vm_cache"
  780. }
  781. ],
  782. "optional_dimensions": {
  783. "60": [
  784. {
  785. "caches": "cros_vm"
  786. }
  787. ]
  788. },
  789. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com",
  790. "shards": 3
  791. },
  792. "test": "net_unittests",
  793. "test_id_prefix": "ninja://net:net_unittests/"
  794. },
  795. {
  796. "args": [
  797. "--stop-ui"
  798. ],
  799. "merge": {
  800. "args": [],
  801. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  802. },
  803. "swarming": {
  804. "can_use_on_swarming_builders": true,
  805. "dimension_sets": [
  806. {
  807. "cpu": "x86",
  808. "gce": "1",
  809. "kvm": "1",
  810. "os": "Ubuntu-18.04",
  811. "pool": "chrome.tests"
  812. }
  813. ],
  814. "named_caches": [
  815. {
  816. "name": "cros_vm",
  817. "path": "magic_cros_vm_cache"
  818. }
  819. ],
  820. "optional_dimensions": {
  821. "60": [
  822. {
  823. "caches": "cros_vm"
  824. }
  825. ]
  826. },
  827. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  828. },
  829. "test": "ozone_gl_unittests",
  830. "test_id_prefix": "ninja://ui/ozone/gl:ozone_gl_unittests/"
  831. },
  832. {
  833. "args": [
  834. "--test-launcher-filter-file=../../testing/buildbot/filters/chromeos.ozone_unittests.filter"
  835. ],
  836. "merge": {
  837. "args": [],
  838. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  839. },
  840. "swarming": {
  841. "can_use_on_swarming_builders": true,
  842. "dimension_sets": [
  843. {
  844. "cpu": "x86",
  845. "gce": "1",
  846. "kvm": "1",
  847. "os": "Ubuntu-18.04",
  848. "pool": "chrome.tests"
  849. }
  850. ],
  851. "named_caches": [
  852. {
  853. "name": "cros_vm",
  854. "path": "magic_cros_vm_cache"
  855. }
  856. ],
  857. "optional_dimensions": {
  858. "60": [
  859. {
  860. "caches": "cros_vm"
  861. }
  862. ]
  863. },
  864. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  865. },
  866. "test": "ozone_unittests",
  867. "test_id_prefix": "ninja://ui/ozone:ozone_unittests/"
  868. },
  869. {
  870. "merge": {
  871. "args": [],
  872. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  873. },
  874. "swarming": {
  875. "can_use_on_swarming_builders": true,
  876. "dimension_sets": [
  877. {
  878. "cpu": "x86",
  879. "gce": "1",
  880. "kvm": "1",
  881. "os": "Ubuntu-18.04",
  882. "pool": "chrome.tests"
  883. }
  884. ],
  885. "named_caches": [
  886. {
  887. "name": "cros_vm",
  888. "path": "magic_cros_vm_cache"
  889. }
  890. ],
  891. "optional_dimensions": {
  892. "60": [
  893. {
  894. "caches": "cros_vm"
  895. }
  896. ]
  897. },
  898. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  899. },
  900. "test": "pdf_unittests",
  901. "test_id_prefix": "ninja://pdf:pdf_unittests/"
  902. },
  903. {
  904. "merge": {
  905. "args": [],
  906. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  907. },
  908. "swarming": {
  909. "can_use_on_swarming_builders": true,
  910. "dimension_sets": [
  911. {
  912. "cpu": "x86",
  913. "gce": "1",
  914. "kvm": "1",
  915. "os": "Ubuntu-18.04",
  916. "pool": "chrome.tests"
  917. }
  918. ],
  919. "named_caches": [
  920. {
  921. "name": "cros_vm",
  922. "path": "magic_cros_vm_cache"
  923. }
  924. ],
  925. "optional_dimensions": {
  926. "60": [
  927. {
  928. "caches": "cros_vm"
  929. }
  930. ]
  931. },
  932. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  933. },
  934. "test": "printing_unittests",
  935. "test_id_prefix": "ninja://printing:printing_unittests/"
  936. },
  937. {
  938. "args": [
  939. "--stop-ui",
  940. "--test-launcher-jobs=1"
  941. ],
  942. "merge": {
  943. "args": [],
  944. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  945. },
  946. "swarming": {
  947. "can_use_on_swarming_builders": true,
  948. "dimension_sets": [
  949. {
  950. "cpu": "x86",
  951. "gce": "1",
  952. "kvm": "1",
  953. "os": "Ubuntu-18.04",
  954. "pool": "chrome.tests"
  955. }
  956. ],
  957. "named_caches": [
  958. {
  959. "name": "cros_vm",
  960. "path": "magic_cros_vm_cache"
  961. }
  962. ],
  963. "optional_dimensions": {
  964. "60": [
  965. {
  966. "caches": "cros_vm"
  967. }
  968. ]
  969. },
  970. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  971. },
  972. "test": "profile_provider_unittest",
  973. "test_id_prefix": "ninja://chrome/browser/metrics/perf:profile_provider_unittest/"
  974. },
  975. {
  976. "merge": {
  977. "args": [],
  978. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  979. },
  980. "swarming": {
  981. "can_use_on_swarming_builders": true,
  982. "dimension_sets": [
  983. {
  984. "cpu": "x86",
  985. "gce": "1",
  986. "kvm": "1",
  987. "os": "Ubuntu-18.04",
  988. "pool": "chrome.tests"
  989. }
  990. ],
  991. "named_caches": [
  992. {
  993. "name": "cros_vm",
  994. "path": "magic_cros_vm_cache"
  995. }
  996. ],
  997. "optional_dimensions": {
  998. "60": [
  999. {
  1000. "caches": "cros_vm"
  1001. }
  1002. ]
  1003. },
  1004. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  1005. },
  1006. "test": "sql_unittests",
  1007. "test_id_prefix": "ninja://sql:sql_unittests/"
  1008. },
  1009. {
  1010. "merge": {
  1011. "args": [],
  1012. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  1013. },
  1014. "swarming": {
  1015. "can_use_on_swarming_builders": true,
  1016. "dimension_sets": [
  1017. {
  1018. "cpu": "x86",
  1019. "gce": "1",
  1020. "kvm": "1",
  1021. "os": "Ubuntu-18.04",
  1022. "pool": "chrome.tests"
  1023. }
  1024. ],
  1025. "named_caches": [
  1026. {
  1027. "name": "cros_vm",
  1028. "path": "magic_cros_vm_cache"
  1029. }
  1030. ],
  1031. "optional_dimensions": {
  1032. "60": [
  1033. {
  1034. "caches": "cros_vm"
  1035. }
  1036. ]
  1037. },
  1038. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  1039. },
  1040. "test": "url_unittests",
  1041. "test_id_prefix": "ninja://url:url_unittests/"
  1042. },
  1043. {
  1044. "args": [
  1045. "--stop-ui",
  1046. "--env-var",
  1047. "LIBVA_DRIVERS_PATH",
  1048. "/usr/local/lib64",
  1049. "--env-var",
  1050. "LIBVA_DRIVER_NAME",
  1051. "fake",
  1052. "--env-var",
  1053. "LIBVA_FOOL_DECODE",
  1054. "1",
  1055. "--env-var",
  1056. "LIBVA_FOOL_POSTP",
  1057. "1",
  1058. "--gtest_filter=\"VaapiTest.*\""
  1059. ],
  1060. "merge": {
  1061. "args": [],
  1062. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  1063. },
  1064. "swarming": {
  1065. "can_use_on_swarming_builders": true,
  1066. "dimension_sets": [
  1067. {
  1068. "cpu": "x86",
  1069. "gce": "1",
  1070. "kvm": "1",
  1071. "os": "Ubuntu-18.04",
  1072. "pool": "chrome.tests"
  1073. }
  1074. ],
  1075. "named_caches": [
  1076. {
  1077. "name": "cros_vm",
  1078. "path": "magic_cros_vm_cache"
  1079. }
  1080. ],
  1081. "optional_dimensions": {
  1082. "60": [
  1083. {
  1084. "caches": "cros_vm"
  1085. }
  1086. ]
  1087. },
  1088. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  1089. },
  1090. "test": "vaapi_unittest",
  1091. "test_id_prefix": "ninja://media/gpu/vaapi:vaapi_unittest/"
  1092. }
  1093. ],
  1094. "isolated_scripts": [
  1095. {
  1096. "args": [
  1097. "--browser=cros-chrome",
  1098. "--remote=127.0.0.1",
  1099. "--remote-ssh-port=9222",
  1100. "--xvfb",
  1101. "--typ-max-failures=3"
  1102. ],
  1103. "isolate_name": "telemetry_perf_unittests",
  1104. "merge": {
  1105. "args": [],
  1106. "script": "//testing/merge_scripts/standard_isolated_script_merge.py"
  1107. },
  1108. "name": "telemetry_perf_unittests",
  1109. "resultdb": {
  1110. "enable": true,
  1111. "has_native_resultdb_integration": true
  1112. },
  1113. "swarming": {
  1114. "can_use_on_swarming_builders": true,
  1115. "dimension_sets": [
  1116. {
  1117. "cpu": "x86",
  1118. "gce": "1",
  1119. "kvm": "1",
  1120. "os": "Ubuntu-18.04",
  1121. "pool": "chrome.tests"
  1122. }
  1123. ],
  1124. "idempotent": false,
  1125. "named_caches": [
  1126. {
  1127. "name": "cros_vm",
  1128. "path": "magic_cros_vm_cache"
  1129. }
  1130. ],
  1131. "optional_dimensions": {
  1132. "60": [
  1133. {
  1134. "caches": "cros_vm"
  1135. }
  1136. ]
  1137. },
  1138. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com",
  1139. "shards": 12
  1140. },
  1141. "test_id_prefix": "ninja://chrome/test:telemetry_perf_unittests/"
  1142. },
  1143. {
  1144. "args": [
  1145. "--jobs=1",
  1146. "--browser=cros-chrome",
  1147. "--remote=127.0.0.1",
  1148. "--remote-ssh-port=9222",
  1149. "--typ-max-failures=3"
  1150. ],
  1151. "isolate_name": "telemetry_unittests",
  1152. "merge": {
  1153. "args": [],
  1154. "script": "//testing/merge_scripts/standard_isolated_script_merge.py"
  1155. },
  1156. "name": "telemetry_unittests",
  1157. "resultdb": {
  1158. "enable": true,
  1159. "has_native_resultdb_integration": true
  1160. },
  1161. "swarming": {
  1162. "can_use_on_swarming_builders": true,
  1163. "dimension_sets": [
  1164. {
  1165. "cpu": "x86",
  1166. "gce": "1",
  1167. "kvm": "1",
  1168. "os": "Ubuntu-18.04",
  1169. "pool": "chrome.tests"
  1170. }
  1171. ],
  1172. "idempotent": false,
  1173. "named_caches": [
  1174. {
  1175. "name": "cros_vm",
  1176. "path": "magic_cros_vm_cache"
  1177. }
  1178. ],
  1179. "optional_dimensions": {
  1180. "60": [
  1181. {
  1182. "caches": "cros_vm"
  1183. }
  1184. ]
  1185. },
  1186. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com",
  1187. "shards": 24
  1188. },
  1189. "test_id_prefix": "ninja://chrome/test:telemetry_unittests/"
  1190. }
  1191. ]
  1192. },
  1193. "chromeos-eve-arc-r-chrome": {
  1194. "additional_compile_targets": [
  1195. "chromiumos_preflight"
  1196. ],
  1197. "gtest_tests": [
  1198. {
  1199. "args": [
  1200. "--test-launcher-filter-file=../../testing/buildbot/filters/chromeos.base_unittests.filter"
  1201. ],
  1202. "merge": {
  1203. "args": [],
  1204. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  1205. },
  1206. "swarming": {
  1207. "can_use_on_swarming_builders": true,
  1208. "dimension_sets": [
  1209. {
  1210. "device_type": "eve-arc-r",
  1211. "os": "ChromeOS",
  1212. "pool": "chrome.tests"
  1213. }
  1214. ],
  1215. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  1216. },
  1217. "test": "base_unittests",
  1218. "test_id_prefix": "ninja://base:base_unittests/",
  1219. "trigger_script": {
  1220. "script": "//testing/trigger_scripts/chromeos_device_trigger.py"
  1221. }
  1222. },
  1223. {
  1224. "merge": {
  1225. "args": [],
  1226. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  1227. },
  1228. "resultdb": {
  1229. "enable": true,
  1230. "has_native_resultdb_integration": true
  1231. },
  1232. "swarming": {
  1233. "can_use_on_swarming_builders": true,
  1234. "dimension_sets": [
  1235. {
  1236. "device_type": "eve-arc-r",
  1237. "os": "ChromeOS",
  1238. "pool": "chrome.tests"
  1239. }
  1240. ],
  1241. "idempotent": false,
  1242. "io_timeout": 3600,
  1243. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com",
  1244. "shards": 10
  1245. },
  1246. "test": "chrome_all_tast_tests",
  1247. "test_id_prefix": "ninja://chromeos:chrome_all_tast_tests/",
  1248. "trigger_script": {
  1249. "script": "//testing/trigger_scripts/chromeos_device_trigger.py"
  1250. }
  1251. },
  1252. {
  1253. "args": [
  1254. "--strip-chrome"
  1255. ],
  1256. "merge": {
  1257. "script": "//tools/perf/process_perf_results.py"
  1258. },
  1259. "resultdb": {
  1260. "enable": true,
  1261. "has_native_resultdb_integration": true
  1262. },
  1263. "swarming": {
  1264. "can_use_on_swarming_builders": true,
  1265. "dimension_sets": [
  1266. {
  1267. "device_type": "eve-arc-r",
  1268. "os": "ChromeOS",
  1269. "pool": "chrome.tests"
  1270. }
  1271. ],
  1272. "idempotent": false,
  1273. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  1274. },
  1275. "test": "disk_usage_tast_test",
  1276. "test_id_prefix": "ninja://chromeos:disk_usage_tast_test/",
  1277. "trigger_script": {
  1278. "script": "//testing/trigger_scripts/chromeos_device_trigger.py"
  1279. }
  1280. }
  1281. ]
  1282. },
  1283. "chromeos-eve-chrome": {
  1284. "additional_compile_targets": [
  1285. "chromiumos_preflight"
  1286. ],
  1287. "gtest_tests": [
  1288. {
  1289. "args": [
  1290. "--test-launcher-filter-file=../../testing/buildbot/filters/chromeos.base_unittests.filter"
  1291. ],
  1292. "merge": {
  1293. "args": [],
  1294. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  1295. },
  1296. "swarming": {
  1297. "can_use_on_swarming_builders": true,
  1298. "dimension_sets": [
  1299. {
  1300. "device_type": "eve",
  1301. "os": "ChromeOS",
  1302. "pool": "chrome.tests"
  1303. }
  1304. ],
  1305. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  1306. },
  1307. "test": "base_unittests",
  1308. "test_id_prefix": "ninja://base:base_unittests/",
  1309. "trigger_script": {
  1310. "script": "//testing/trigger_scripts/chromeos_device_trigger.py"
  1311. }
  1312. },
  1313. {
  1314. "merge": {
  1315. "args": [],
  1316. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  1317. },
  1318. "resultdb": {
  1319. "enable": true,
  1320. "has_native_resultdb_integration": true
  1321. },
  1322. "swarming": {
  1323. "can_use_on_swarming_builders": true,
  1324. "dimension_sets": [
  1325. {
  1326. "device_type": "eve",
  1327. "os": "ChromeOS",
  1328. "pool": "chrome.tests"
  1329. }
  1330. ],
  1331. "idempotent": false,
  1332. "io_timeout": 3600,
  1333. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com",
  1334. "shards": 10
  1335. },
  1336. "test": "chrome_all_tast_tests",
  1337. "test_id_prefix": "ninja://chromeos:chrome_all_tast_tests/",
  1338. "trigger_script": {
  1339. "script": "//testing/trigger_scripts/chromeos_device_trigger.py"
  1340. }
  1341. },
  1342. {
  1343. "args": [
  1344. "--strip-chrome"
  1345. ],
  1346. "merge": {
  1347. "script": "//tools/perf/process_perf_results.py"
  1348. },
  1349. "resultdb": {
  1350. "enable": true,
  1351. "has_native_resultdb_integration": true
  1352. },
  1353. "swarming": {
  1354. "can_use_on_swarming_builders": true,
  1355. "dimension_sets": [
  1356. {
  1357. "device_type": "eve",
  1358. "os": "ChromeOS",
  1359. "pool": "chrome.tests"
  1360. }
  1361. ],
  1362. "idempotent": false,
  1363. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  1364. },
  1365. "test": "disk_usage_tast_test",
  1366. "test_id_prefix": "ninja://chromeos:disk_usage_tast_test/",
  1367. "trigger_script": {
  1368. "script": "//testing/trigger_scripts/chromeos_device_trigger.py"
  1369. }
  1370. }
  1371. ],
  1372. "isolated_scripts": [
  1373. {
  1374. "args": [
  1375. "--browser=cros-chrome",
  1376. "--remote=variable_chromeos_device_hostname",
  1377. "--xvfb",
  1378. "--skip=benchmarks.benchmark_smoke_unittest.BenchmarkSmokeTest.wasmpspdfkit"
  1379. ],
  1380. "isolate_name": "telemetry_perf_unittests",
  1381. "merge": {
  1382. "args": [],
  1383. "script": "//testing/merge_scripts/standard_isolated_script_merge.py"
  1384. },
  1385. "name": "telemetry_perf_unittests",
  1386. "resultdb": {
  1387. "enable": true,
  1388. "has_native_resultdb_integration": true
  1389. },
  1390. "swarming": {
  1391. "can_use_on_swarming_builders": true,
  1392. "dimension_sets": [
  1393. {
  1394. "device_type": "eve",
  1395. "os": "ChromeOS",
  1396. "pool": "chrome.tests"
  1397. }
  1398. ],
  1399. "idempotent": false,
  1400. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com",
  1401. "shards": 2
  1402. },
  1403. "test_id_prefix": "ninja://chrome/test:telemetry_perf_unittests/",
  1404. "trigger_script": {
  1405. "script": "//testing/trigger_scripts/chromeos_device_trigger.py"
  1406. }
  1407. }
  1408. ]
  1409. },
  1410. "chromeos-jacuzzi-chrome": {
  1411. "additional_compile_targets": [
  1412. "chromiumos_preflight"
  1413. ],
  1414. "gtest_tests": [
  1415. {
  1416. "args": [
  1417. "--test-launcher-filter-file=../../testing/buildbot/filters/chromeos.base_unittests.filter"
  1418. ],
  1419. "merge": {
  1420. "args": [],
  1421. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  1422. },
  1423. "swarming": {
  1424. "can_use_on_swarming_builders": true,
  1425. "dimension_sets": [
  1426. {
  1427. "device_type": "jacuzzi",
  1428. "os": "ChromeOS",
  1429. "pool": "chrome.tests"
  1430. }
  1431. ],
  1432. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  1433. },
  1434. "test": "base_unittests",
  1435. "test_id_prefix": "ninja://base:base_unittests/",
  1436. "trigger_script": {
  1437. "script": "//testing/trigger_scripts/chromeos_device_trigger.py"
  1438. }
  1439. },
  1440. {
  1441. "experiment_percentage": 100,
  1442. "merge": {
  1443. "args": [],
  1444. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  1445. },
  1446. "resultdb": {
  1447. "enable": true,
  1448. "has_native_resultdb_integration": true
  1449. },
  1450. "swarming": {
  1451. "can_use_on_swarming_builders": true,
  1452. "dimension_sets": [
  1453. {
  1454. "device_type": "jacuzzi",
  1455. "os": "ChromeOS",
  1456. "pool": "chrome.tests"
  1457. }
  1458. ],
  1459. "idempotent": false,
  1460. "io_timeout": 3600,
  1461. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com",
  1462. "shards": 10
  1463. },
  1464. "test": "chrome_all_tast_tests",
  1465. "test_id_prefix": "ninja://chromeos:chrome_all_tast_tests/",
  1466. "trigger_script": {
  1467. "script": "//testing/trigger_scripts/chromeos_device_trigger.py"
  1468. }
  1469. },
  1470. {
  1471. "args": [
  1472. "--strip-chrome"
  1473. ],
  1474. "merge": {
  1475. "script": "//tools/perf/process_perf_results.py"
  1476. },
  1477. "resultdb": {
  1478. "enable": true,
  1479. "has_native_resultdb_integration": true
  1480. },
  1481. "swarming": {
  1482. "can_use_on_swarming_builders": true,
  1483. "dimension_sets": [
  1484. {
  1485. "device_type": "jacuzzi",
  1486. "os": "ChromeOS",
  1487. "pool": "chrome.tests"
  1488. }
  1489. ],
  1490. "idempotent": false,
  1491. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  1492. },
  1493. "test": "disk_usage_tast_test",
  1494. "test_id_prefix": "ninja://chromeos:disk_usage_tast_test/",
  1495. "trigger_script": {
  1496. "script": "//testing/trigger_scripts/chromeos_device_trigger.py"
  1497. }
  1498. }
  1499. ]
  1500. },
  1501. "chromeos-kevin-chrome": {
  1502. "additional_compile_targets": [
  1503. "chromiumos_preflight"
  1504. ],
  1505. "gtest_tests": [
  1506. {
  1507. "args": [
  1508. "--test-launcher-filter-file=../../testing/buildbot/filters/chromeos.base_unittests.filter"
  1509. ],
  1510. "merge": {
  1511. "args": [],
  1512. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  1513. },
  1514. "swarming": {
  1515. "can_use_on_swarming_builders": true,
  1516. "dimension_sets": [
  1517. {
  1518. "device_type": "kevin",
  1519. "os": "ChromeOS",
  1520. "pool": "chrome.tests"
  1521. }
  1522. ],
  1523. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  1524. },
  1525. "test": "base_unittests",
  1526. "test_id_prefix": "ninja://base:base_unittests/",
  1527. "trigger_script": {
  1528. "script": "//testing/trigger_scripts/chromeos_device_trigger.py"
  1529. }
  1530. },
  1531. {
  1532. "merge": {
  1533. "args": [],
  1534. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  1535. },
  1536. "resultdb": {
  1537. "enable": true,
  1538. "has_native_resultdb_integration": true
  1539. },
  1540. "swarming": {
  1541. "can_use_on_swarming_builders": true,
  1542. "dimension_sets": [
  1543. {
  1544. "device_type": "kevin",
  1545. "os": "ChromeOS",
  1546. "pool": "chrome.tests"
  1547. }
  1548. ],
  1549. "idempotent": false,
  1550. "io_timeout": 3600,
  1551. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com",
  1552. "shards": 5
  1553. },
  1554. "test": "chrome_all_tast_tests",
  1555. "test_id_prefix": "ninja://chromeos:chrome_all_tast_tests/",
  1556. "trigger_script": {
  1557. "script": "//testing/trigger_scripts/chromeos_device_trigger.py"
  1558. }
  1559. },
  1560. {
  1561. "args": [
  1562. "--strip-chrome"
  1563. ],
  1564. "merge": {
  1565. "script": "//tools/perf/process_perf_results.py"
  1566. },
  1567. "resultdb": {
  1568. "enable": true,
  1569. "has_native_resultdb_integration": true
  1570. },
  1571. "swarming": {
  1572. "can_use_on_swarming_builders": true,
  1573. "dimension_sets": [
  1574. {
  1575. "device_type": "kevin",
  1576. "os": "ChromeOS",
  1577. "pool": "chrome.tests"
  1578. }
  1579. ],
  1580. "idempotent": false,
  1581. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  1582. },
  1583. "test": "disk_usage_tast_test",
  1584. "test_id_prefix": "ninja://chromeos:disk_usage_tast_test/",
  1585. "trigger_script": {
  1586. "script": "//testing/trigger_scripts/chromeos_device_trigger.py"
  1587. }
  1588. }
  1589. ],
  1590. "isolated_scripts": [
  1591. {
  1592. "args": [
  1593. "--browser=cros-chrome",
  1594. "--remote=variable_chromeos_device_hostname",
  1595. "--xvfb"
  1596. ],
  1597. "experiment_percentage": 0,
  1598. "isolate_name": "telemetry_perf_unittests",
  1599. "merge": {
  1600. "args": [],
  1601. "script": "//testing/merge_scripts/standard_isolated_script_merge.py"
  1602. },
  1603. "name": "telemetry_perf_unittests",
  1604. "resultdb": {
  1605. "enable": true,
  1606. "has_native_resultdb_integration": true
  1607. },
  1608. "swarming": {
  1609. "can_use_on_swarming_builders": true,
  1610. "dimension_sets": [
  1611. {
  1612. "device_type": "kevin",
  1613. "os": "ChromeOS",
  1614. "pool": "chrome.tests"
  1615. }
  1616. ],
  1617. "idempotent": false,
  1618. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com",
  1619. "shards": 2
  1620. },
  1621. "test_id_prefix": "ninja://chrome/test:telemetry_perf_unittests/",
  1622. "trigger_script": {
  1623. "script": "//testing/trigger_scripts/chromeos_device_trigger.py"
  1624. }
  1625. }
  1626. ]
  1627. },
  1628. "chromeos-octopus-chrome": {
  1629. "additional_compile_targets": [
  1630. "chromiumos_preflight"
  1631. ],
  1632. "gtest_tests": [
  1633. {
  1634. "args": [
  1635. "--test-launcher-filter-file=../../testing/buildbot/filters/chromeos.base_unittests.filter"
  1636. ],
  1637. "merge": {
  1638. "args": [],
  1639. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  1640. },
  1641. "swarming": {
  1642. "can_use_on_swarming_builders": true,
  1643. "dimension_sets": [
  1644. {
  1645. "device_type": "octopus",
  1646. "os": "ChromeOS",
  1647. "pool": "chrome.tests"
  1648. }
  1649. ],
  1650. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  1651. },
  1652. "test": "base_unittests",
  1653. "test_id_prefix": "ninja://base:base_unittests/",
  1654. "trigger_script": {
  1655. "script": "//testing/trigger_scripts/chromeos_device_trigger.py"
  1656. }
  1657. },
  1658. {
  1659. "experiment_percentage": 100,
  1660. "merge": {
  1661. "args": [],
  1662. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  1663. },
  1664. "resultdb": {
  1665. "enable": true,
  1666. "has_native_resultdb_integration": true
  1667. },
  1668. "swarming": {
  1669. "can_use_on_swarming_builders": true,
  1670. "dimension_sets": [
  1671. {
  1672. "device_type": "octopus",
  1673. "os": "ChromeOS",
  1674. "pool": "chrome.tests"
  1675. }
  1676. ],
  1677. "idempotent": false,
  1678. "io_timeout": 3600,
  1679. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com",
  1680. "shards": 10
  1681. },
  1682. "test": "chrome_all_tast_tests",
  1683. "test_id_prefix": "ninja://chromeos:chrome_all_tast_tests/",
  1684. "trigger_script": {
  1685. "script": "//testing/trigger_scripts/chromeos_device_trigger.py"
  1686. }
  1687. },
  1688. {
  1689. "args": [
  1690. "--strip-chrome"
  1691. ],
  1692. "merge": {
  1693. "script": "//tools/perf/process_perf_results.py"
  1694. },
  1695. "resultdb": {
  1696. "enable": true,
  1697. "has_native_resultdb_integration": true
  1698. },
  1699. "swarming": {
  1700. "can_use_on_swarming_builders": true,
  1701. "dimension_sets": [
  1702. {
  1703. "device_type": "octopus",
  1704. "os": "ChromeOS",
  1705. "pool": "chrome.tests"
  1706. }
  1707. ],
  1708. "idempotent": false,
  1709. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  1710. },
  1711. "test": "disk_usage_tast_test",
  1712. "test_id_prefix": "ninja://chromeos:disk_usage_tast_test/",
  1713. "trigger_script": {
  1714. "script": "//testing/trigger_scripts/chromeos_device_trigger.py"
  1715. }
  1716. }
  1717. ]
  1718. },
  1719. "chromeos-reven-chrome": {
  1720. "additional_compile_targets": [
  1721. "chromiumos_preflight"
  1722. ],
  1723. "gtest_tests": [
  1724. {
  1725. "merge": {
  1726. "args": [],
  1727. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  1728. },
  1729. "resultdb": {
  1730. "enable": true,
  1731. "has_native_resultdb_integration": true
  1732. },
  1733. "swarming": {
  1734. "can_use_on_swarming_builders": true,
  1735. "dimension_sets": [
  1736. {
  1737. "cpu": "x86",
  1738. "gce": "1",
  1739. "kvm": "1",
  1740. "os": "Ubuntu-18.04",
  1741. "pool": "chrome.tests"
  1742. }
  1743. ],
  1744. "idempotent": false,
  1745. "io_timeout": 3600,
  1746. "named_caches": [
  1747. {
  1748. "name": "cros_reven_vm",
  1749. "path": "magic_cros_reven_vm_cache"
  1750. }
  1751. ],
  1752. "optional_dimensions": {
  1753. "60": [
  1754. {
  1755. "caches": "cros_reven_vm"
  1756. }
  1757. ]
  1758. },
  1759. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com",
  1760. "shards": 10
  1761. },
  1762. "test": "chrome_all_tast_tests",
  1763. "test_id_prefix": "ninja://chromeos:chrome_all_tast_tests/"
  1764. },
  1765. {
  1766. "args": [
  1767. "--strip-chrome"
  1768. ],
  1769. "merge": {
  1770. "script": "//tools/perf/process_perf_results.py"
  1771. },
  1772. "resultdb": {
  1773. "enable": true,
  1774. "has_native_resultdb_integration": true
  1775. },
  1776. "swarming": {
  1777. "can_use_on_swarming_builders": true,
  1778. "dimension_sets": [
  1779. {
  1780. "cpu": "x86",
  1781. "gce": "1",
  1782. "kvm": "1",
  1783. "os": "Ubuntu-18.04",
  1784. "pool": "chrome.tests"
  1785. }
  1786. ],
  1787. "idempotent": false,
  1788. "named_caches": [
  1789. {
  1790. "name": "cros_reven_vm",
  1791. "path": "magic_cros_reven_vm_cache"
  1792. }
  1793. ],
  1794. "optional_dimensions": {
  1795. "60": [
  1796. {
  1797. "caches": "cros_reven_vm"
  1798. }
  1799. ]
  1800. },
  1801. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  1802. },
  1803. "test": "disk_usage_tast_test",
  1804. "test_id_prefix": "ninja://chromeos:disk_usage_tast_test/"
  1805. }
  1806. ]
  1807. },
  1808. "lacros-amd64-generic-chrome": {
  1809. "additional_compile_targets": [
  1810. "chrome",
  1811. "linux_symbols",
  1812. "symupload",
  1813. "strip_chrome_binary"
  1814. ],
  1815. "gtest_tests": [
  1816. {
  1817. "args": [
  1818. "--board=eve",
  1819. "--flash"
  1820. ],
  1821. "merge": {
  1822. "args": [],
  1823. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  1824. },
  1825. "name": "lacros_all_tast_tests eve",
  1826. "resultdb": {
  1827. "enable": true,
  1828. "has_native_resultdb_integration": true
  1829. },
  1830. "swarming": {
  1831. "can_use_on_swarming_builders": true,
  1832. "dimension_sets": [
  1833. {
  1834. "device_type": "eve",
  1835. "os": "ChromeOS",
  1836. "pool": "chrome.tests"
  1837. }
  1838. ],
  1839. "idempotent": false,
  1840. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  1841. },
  1842. "test": "lacros_all_tast_tests",
  1843. "test_id_prefix": "ninja://chromeos/lacros:lacros_all_tast_tests/",
  1844. "trigger_script": {
  1845. "script": "//testing/trigger_scripts/chromeos_device_trigger.py"
  1846. },
  1847. "variant_id": "eve"
  1848. },
  1849. {
  1850. "args": [
  1851. "--board=betty-pi-arc",
  1852. "--use-vm"
  1853. ],
  1854. "experiment_percentage": 100,
  1855. "merge": {
  1856. "args": [],
  1857. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  1858. },
  1859. "name": "lacros_variations_tast_tests betty-pi-arc",
  1860. "resultdb": {
  1861. "enable": true,
  1862. "has_native_resultdb_integration": true
  1863. },
  1864. "swarming": {
  1865. "can_use_on_swarming_builders": true,
  1866. "dimension_sets": [
  1867. {
  1868. "cpu": "x86",
  1869. "kvm": "1",
  1870. "os": "Ubuntu-18.04",
  1871. "pool": "chrome.tests"
  1872. }
  1873. ],
  1874. "idempotent": false,
  1875. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  1876. },
  1877. "test": "lacros_variations_tast_tests",
  1878. "test_id_prefix": "ninja://chromeos/lacros:lacros_variations_tast_tests/",
  1879. "variant_id": "betty-pi-arc"
  1880. }
  1881. ],
  1882. "isolated_scripts": [
  1883. {
  1884. "isolate_name": "chrome_sizes",
  1885. "merge": {
  1886. "script": "//tools/perf/process_perf_results.py"
  1887. },
  1888. "name": "chrome_sizes",
  1889. "resultdb": {
  1890. "enable": true,
  1891. "has_native_resultdb_integration": true
  1892. },
  1893. "swarming": {
  1894. "can_use_on_swarming_builders": true,
  1895. "dimension_sets": [
  1896. {
  1897. "cpu": "x86-64",
  1898. "os": "Ubuntu-18.04",
  1899. "pool": "chrome.tests"
  1900. }
  1901. ],
  1902. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  1903. },
  1904. "test_id_prefix": "ninja://chrome/test:chrome_sizes/"
  1905. }
  1906. ]
  1907. },
  1908. "lacros-amd64-generic-chrome-skylab": {
  1909. "additional_compile_targets": [
  1910. "chrome",
  1911. "linux_symbols",
  1912. "symupload",
  1913. "strip_chrome_binary"
  1914. ],
  1915. "skylab_tests": [
  1916. {
  1917. "args": [],
  1918. "cros_board": "atlas",
  1919. "cros_img": "atlas-release/R106-15048.0.0",
  1920. "name": "lacros_all_tast_tests ATLAS_RELEASE_DEV",
  1921. "resultdb": {
  1922. "enable": true,
  1923. "has_native_resultdb_integration": true
  1924. },
  1925. "swarming": {},
  1926. "tast_expr": "(\"group:mainline\" && \"dep:lacros\" && !informational)",
  1927. "test": "lacros_all_tast_tests",
  1928. "test_id_prefix": "ninja://chromeos/lacros:lacros_all_tast_tests/",
  1929. "timeout_sec": 10800,
  1930. "variant_id": "ATLAS_RELEASE_DEV"
  1931. },
  1932. {
  1933. "args": [],
  1934. "cros_board": "atlas",
  1935. "cros_img": "atlas-release/R105-14989.58.0",
  1936. "name": "lacros_all_tast_tests ATLAS_RELEASE_BETA",
  1937. "resultdb": {
  1938. "enable": true,
  1939. "has_native_resultdb_integration": true
  1940. },
  1941. "swarming": {},
  1942. "tast_expr": "(\"group:mainline\" && \"dep:lacros\" && !informational)",
  1943. "test": "lacros_all_tast_tests",
  1944. "test_id_prefix": "ninja://chromeos/lacros:lacros_all_tast_tests/",
  1945. "timeout_sec": 10800,
  1946. "variant_id": "ATLAS_RELEASE_BETA"
  1947. },
  1948. {
  1949. "args": [],
  1950. "cros_board": "atlas",
  1951. "cros_img": "atlas-release/R104-14909.124.0",
  1952. "name": "lacros_all_tast_tests ATLAS_RELEASE_STABLE",
  1953. "resultdb": {
  1954. "enable": true,
  1955. "has_native_resultdb_integration": true
  1956. },
  1957. "swarming": {},
  1958. "tast_expr": "(\"group:mainline\" && \"dep:lacros\" && !informational)",
  1959. "test": "lacros_all_tast_tests",
  1960. "test_id_prefix": "ninja://chromeos/lacros:lacros_all_tast_tests/",
  1961. "timeout_sec": 10800,
  1962. "variant_id": "ATLAS_RELEASE_STABLE"
  1963. },
  1964. {
  1965. "args": [],
  1966. "cros_board": "eve",
  1967. "cros_img": "eve-release/R106-15048.0.0",
  1968. "name": "lacros_all_tast_tests EVE_RELEASE_DEV",
  1969. "resultdb": {
  1970. "enable": true,
  1971. "has_native_resultdb_integration": true
  1972. },
  1973. "swarming": {},
  1974. "tast_expr": "(\"group:mainline\" && \"dep:lacros\" && !informational)",
  1975. "test": "lacros_all_tast_tests",
  1976. "test_id_prefix": "ninja://chromeos/lacros:lacros_all_tast_tests/",
  1977. "timeout_sec": 10800,
  1978. "variant_id": "EVE_RELEASE_DEV"
  1979. },
  1980. {
  1981. "args": [],
  1982. "cros_board": "eve",
  1983. "cros_img": "eve-release/R105-14989.58.0",
  1984. "name": "lacros_all_tast_tests EVE_RELEASE_BETA",
  1985. "resultdb": {
  1986. "enable": true,
  1987. "has_native_resultdb_integration": true
  1988. },
  1989. "swarming": {},
  1990. "tast_expr": "(\"group:mainline\" && \"dep:lacros\" && !informational)",
  1991. "test": "lacros_all_tast_tests",
  1992. "test_id_prefix": "ninja://chromeos/lacros:lacros_all_tast_tests/",
  1993. "timeout_sec": 10800,
  1994. "variant_id": "EVE_RELEASE_BETA"
  1995. },
  1996. {
  1997. "args": [],
  1998. "cros_board": "eve",
  1999. "cros_img": "eve-release/R104-14909.124.0",
  2000. "name": "lacros_all_tast_tests EVE_RELEASE_STABLE",
  2001. "resultdb": {
  2002. "enable": true,
  2003. "has_native_resultdb_integration": true
  2004. },
  2005. "swarming": {},
  2006. "tast_expr": "(\"group:mainline\" && \"dep:lacros\" && !informational)",
  2007. "test": "lacros_all_tast_tests",
  2008. "test_id_prefix": "ninja://chromeos/lacros:lacros_all_tast_tests/",
  2009. "timeout_sec": 10800,
  2010. "variant_id": "EVE_RELEASE_STABLE"
  2011. }
  2012. ]
  2013. },
  2014. "lacros-arm-generic-chrome": {
  2015. "additional_compile_targets": [
  2016. "chrome",
  2017. "linux_symbols",
  2018. "symupload",
  2019. "strip_chrome_binary"
  2020. ],
  2021. "isolated_scripts": [
  2022. {
  2023. "isolate_name": "chrome_sizes",
  2024. "merge": {
  2025. "script": "//tools/perf/process_perf_results.py"
  2026. },
  2027. "name": "chrome_sizes",
  2028. "resultdb": {
  2029. "enable": true,
  2030. "has_native_resultdb_integration": true
  2031. },
  2032. "swarming": {
  2033. "can_use_on_swarming_builders": true,
  2034. "dimension_sets": [
  2035. {
  2036. "cpu": "x86-64",
  2037. "os": "Ubuntu-18.04",
  2038. "pool": "chrome.tests"
  2039. }
  2040. ],
  2041. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  2042. },
  2043. "test_id_prefix": "ninja://chrome/test:chrome_sizes/"
  2044. }
  2045. ]
  2046. },
  2047. "lacros-arm-generic-chrome-skylab": {
  2048. "additional_compile_targets": [
  2049. "chrome",
  2050. "linux_symbols",
  2051. "symupload",
  2052. "strip_chrome_binary"
  2053. ],
  2054. "skylab_tests": [
  2055. {
  2056. "args": [],
  2057. "cros_board": "jacuzzi",
  2058. "cros_img": "jacuzzi-release/R106-15048.0.0",
  2059. "name": "lacros_all_tast_tests JACUZZI_RELEASE_DEV",
  2060. "resultdb": {
  2061. "enable": true,
  2062. "has_native_resultdb_integration": true
  2063. },
  2064. "swarming": {},
  2065. "tast_expr": "(\"group:mainline\" && \"dep:lacros\" && !informational)",
  2066. "test": "lacros_all_tast_tests",
  2067. "test_id_prefix": "ninja://chromeos/lacros:lacros_all_tast_tests/",
  2068. "timeout_sec": 10800,
  2069. "variant_id": "JACUZZI_RELEASE_DEV"
  2070. },
  2071. {
  2072. "args": [],
  2073. "cros_board": "jacuzzi",
  2074. "cros_img": "jacuzzi-release/R105-14989.58.0",
  2075. "name": "lacros_all_tast_tests JACUZZI_RELEASE_BETA",
  2076. "resultdb": {
  2077. "enable": true,
  2078. "has_native_resultdb_integration": true
  2079. },
  2080. "swarming": {},
  2081. "tast_expr": "(\"group:mainline\" && \"dep:lacros\" && !informational)",
  2082. "test": "lacros_all_tast_tests",
  2083. "test_id_prefix": "ninja://chromeos/lacros:lacros_all_tast_tests/",
  2084. "timeout_sec": 10800,
  2085. "variant_id": "JACUZZI_RELEASE_BETA"
  2086. },
  2087. {
  2088. "args": [],
  2089. "cros_board": "jacuzzi",
  2090. "cros_img": "jacuzzi-release/R104-14909.100.0",
  2091. "name": "lacros_all_tast_tests JACUZZI_RELEASE_STABLE",
  2092. "resultdb": {
  2093. "enable": true,
  2094. "has_native_resultdb_integration": true
  2095. },
  2096. "swarming": {},
  2097. "tast_expr": "(\"group:mainline\" && \"dep:lacros\" && !informational)",
  2098. "test": "lacros_all_tast_tests",
  2099. "test_id_prefix": "ninja://chromeos/lacros:lacros_all_tast_tests/",
  2100. "timeout_sec": 10800,
  2101. "variant_id": "JACUZZI_RELEASE_STABLE"
  2102. }
  2103. ]
  2104. },
  2105. "lacros-arm64-generic-chrome": {
  2106. "additional_compile_targets": [
  2107. "chrome",
  2108. "linux_symbols",
  2109. "symupload",
  2110. "strip_chrome_binary"
  2111. ],
  2112. "isolated_scripts": [
  2113. {
  2114. "isolate_name": "chrome_sizes",
  2115. "merge": {
  2116. "script": "//tools/perf/process_perf_results.py"
  2117. },
  2118. "name": "chrome_sizes",
  2119. "resultdb": {
  2120. "enable": true,
  2121. "has_native_resultdb_integration": true
  2122. },
  2123. "swarming": {
  2124. "can_use_on_swarming_builders": true,
  2125. "dimension_sets": [
  2126. {
  2127. "pool": "chrome.tests"
  2128. }
  2129. ],
  2130. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  2131. },
  2132. "test_id_prefix": "ninja://chrome/test:chrome_sizes/"
  2133. }
  2134. ]
  2135. },
  2136. "lacros-arm64-generic-chrome-skylab": {
  2137. "additional_compile_targets": [
  2138. "chrome",
  2139. "linux_symbols",
  2140. "symupload",
  2141. "strip_chrome_binary"
  2142. ],
  2143. "skylab_tests": []
  2144. },
  2145. "linux-chrome": {
  2146. "additional_compile_targets": [
  2147. "chrome",
  2148. "chrome/installer/linux"
  2149. ],
  2150. "gtest_tests": [
  2151. {
  2152. "merge": {
  2153. "args": [],
  2154. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  2155. },
  2156. "swarming": {
  2157. "can_use_on_swarming_builders": true,
  2158. "dimension_sets": [
  2159. {
  2160. "os": "Ubuntu-18.04",
  2161. "pool": "chrome.tests"
  2162. }
  2163. ],
  2164. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  2165. },
  2166. "test": "base_unittests",
  2167. "test_id_prefix": "ninja://base:base_unittests/"
  2168. }
  2169. ],
  2170. "isolated_scripts": [
  2171. {
  2172. "isolate_name": "chrome_sizes",
  2173. "merge": {
  2174. "script": "//tools/perf/process_perf_results.py"
  2175. },
  2176. "name": "chrome_sizes",
  2177. "resultdb": {
  2178. "enable": true,
  2179. "has_native_resultdb_integration": true
  2180. },
  2181. "swarming": {
  2182. "can_use_on_swarming_builders": true,
  2183. "dimension_sets": [
  2184. {
  2185. "os": "Ubuntu-18.04",
  2186. "pool": "chrome.tests"
  2187. }
  2188. ],
  2189. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  2190. },
  2191. "test_id_prefix": "ninja://chrome/test:chrome_sizes/"
  2192. },
  2193. {
  2194. "args": [
  2195. "--git-revision=${got_revision}"
  2196. ],
  2197. "isolate_name": "variations_smoke_tests",
  2198. "merge": {
  2199. "args": [],
  2200. "script": "//testing/merge_scripts/standard_isolated_script_merge.py"
  2201. },
  2202. "name": "variations_smoke_tests",
  2203. "precommit_args": [
  2204. "--gerrit-issue=${patch_issue}",
  2205. "--gerrit-patchset=${patch_set}",
  2206. "--buildbucket-id=${buildbucket_build_id}"
  2207. ],
  2208. "resultdb": {
  2209. "enable": true,
  2210. "result_format": "single"
  2211. },
  2212. "swarming": {
  2213. "can_use_on_swarming_builders": true,
  2214. "dimension_sets": [
  2215. {
  2216. "os": "Ubuntu-18.04",
  2217. "pool": "chrome.tests.finch"
  2218. }
  2219. ],
  2220. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  2221. },
  2222. "test_id_prefix": "ninja://chrome/test:variations_smoke_tests/"
  2223. }
  2224. ]
  2225. },
  2226. "linux-chromeos-chrome": {
  2227. "additional_compile_targets": [
  2228. "chrome",
  2229. "chrome_sandbox",
  2230. "linux_symbols",
  2231. "symupload"
  2232. ],
  2233. "gtest_tests": [
  2234. {
  2235. "merge": {
  2236. "args": [],
  2237. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  2238. },
  2239. "swarming": {
  2240. "can_use_on_swarming_builders": true,
  2241. "dimension_sets": [
  2242. {
  2243. "os": "Ubuntu-18.04",
  2244. "pool": "chrome.tests",
  2245. "ssd": "0"
  2246. }
  2247. ],
  2248. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  2249. },
  2250. "test": "absl_hardening_tests",
  2251. "test_id_prefix": "ninja://third_party/abseil-cpp:absl_hardening_tests/"
  2252. },
  2253. {
  2254. "merge": {
  2255. "args": [],
  2256. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  2257. },
  2258. "swarming": {
  2259. "can_use_on_swarming_builders": true,
  2260. "dimension_sets": [
  2261. {
  2262. "os": "Ubuntu-18.04",
  2263. "pool": "chrome.tests",
  2264. "ssd": "0"
  2265. }
  2266. ],
  2267. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  2268. },
  2269. "test": "accessibility_unittests",
  2270. "test_id_prefix": "ninja://ui/accessibility:accessibility_unittests/"
  2271. },
  2272. {
  2273. "merge": {
  2274. "args": [],
  2275. "script": "//testing/merge_scripts/standard_isolated_script_merge.py"
  2276. },
  2277. "swarming": {
  2278. "can_use_on_swarming_builders": true,
  2279. "dimension_sets": [
  2280. {
  2281. "os": "Ubuntu-18.04",
  2282. "pool": "chrome.tests",
  2283. "ssd": "0"
  2284. }
  2285. ],
  2286. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  2287. },
  2288. "test": "angle_unittests",
  2289. "test_id_prefix": "ninja://third_party/angle/src/tests:angle_unittests/",
  2290. "use_isolated_scripts_api": true
  2291. },
  2292. {
  2293. "merge": {
  2294. "args": [],
  2295. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  2296. },
  2297. "swarming": {
  2298. "can_use_on_swarming_builders": true,
  2299. "dimension_sets": [
  2300. {
  2301. "os": "Ubuntu-18.04",
  2302. "pool": "chrome.tests",
  2303. "ssd": "0"
  2304. }
  2305. ],
  2306. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  2307. },
  2308. "test": "app_shell_unittests",
  2309. "test_id_prefix": "ninja://extensions/shell:app_shell_unittests/"
  2310. },
  2311. {
  2312. "merge": {
  2313. "args": [],
  2314. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  2315. },
  2316. "swarming": {
  2317. "can_use_on_swarming_builders": true,
  2318. "dimension_sets": [
  2319. {
  2320. "os": "Ubuntu-18.04",
  2321. "pool": "chrome.tests",
  2322. "ssd": "0"
  2323. }
  2324. ],
  2325. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  2326. },
  2327. "test": "ash_components_unittests",
  2328. "test_id_prefix": "ninja://ash/components:ash_components_unittests/"
  2329. },
  2330. {
  2331. "merge": {
  2332. "args": [],
  2333. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  2334. },
  2335. "swarming": {
  2336. "can_use_on_swarming_builders": true,
  2337. "dimension_sets": [
  2338. {
  2339. "os": "Ubuntu-18.04",
  2340. "pool": "chrome.tests",
  2341. "ssd": "0"
  2342. }
  2343. ],
  2344. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com",
  2345. "shards": 5
  2346. },
  2347. "test": "ash_unittests",
  2348. "test_id_prefix": "ninja://ash:ash_unittests/"
  2349. },
  2350. {
  2351. "merge": {
  2352. "args": [],
  2353. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  2354. },
  2355. "swarming": {
  2356. "can_use_on_swarming_builders": true,
  2357. "dimension_sets": [
  2358. {
  2359. "os": "Ubuntu-18.04",
  2360. "pool": "chrome.tests",
  2361. "ssd": "0"
  2362. }
  2363. ],
  2364. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  2365. },
  2366. "test": "ash_webui_unittests",
  2367. "test_id_prefix": "ninja://ash/webui:ash_webui_unittests/"
  2368. },
  2369. {
  2370. "merge": {
  2371. "args": [],
  2372. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  2373. },
  2374. "swarming": {
  2375. "can_use_on_swarming_builders": true,
  2376. "dimension_sets": [
  2377. {
  2378. "os": "Ubuntu-18.04",
  2379. "pool": "chrome.tests",
  2380. "ssd": "0"
  2381. }
  2382. ],
  2383. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  2384. },
  2385. "test": "aura_unittests",
  2386. "test_id_prefix": "ninja://ui/aura:aura_unittests/"
  2387. },
  2388. {
  2389. "merge": {
  2390. "args": [],
  2391. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  2392. },
  2393. "swarming": {
  2394. "can_use_on_swarming_builders": true,
  2395. "dimension_sets": [
  2396. {
  2397. "os": "Ubuntu-18.04",
  2398. "pool": "chrome.tests",
  2399. "ssd": "0"
  2400. }
  2401. ],
  2402. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  2403. },
  2404. "test": "base_unittests",
  2405. "test_id_prefix": "ninja://base:base_unittests/"
  2406. },
  2407. {
  2408. "merge": {
  2409. "args": [],
  2410. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  2411. },
  2412. "swarming": {
  2413. "can_use_on_swarming_builders": true,
  2414. "dimension_sets": [
  2415. {
  2416. "os": "Ubuntu-18.04",
  2417. "pool": "chrome.tests",
  2418. "ssd": "0"
  2419. }
  2420. ],
  2421. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  2422. },
  2423. "test": "blink_common_unittests",
  2424. "test_id_prefix": "ninja://third_party/blink/common:blink_common_unittests/"
  2425. },
  2426. {
  2427. "merge": {
  2428. "args": [],
  2429. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  2430. },
  2431. "swarming": {
  2432. "can_use_on_swarming_builders": true,
  2433. "dimension_sets": [
  2434. {
  2435. "os": "Ubuntu-18.04",
  2436. "pool": "chrome.tests",
  2437. "ssd": "0"
  2438. }
  2439. ],
  2440. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  2441. },
  2442. "test": "blink_fuzzer_unittests",
  2443. "test_id_prefix": "ninja://third_party/blink/renderer/platform:blink_fuzzer_unittests/"
  2444. },
  2445. {
  2446. "merge": {
  2447. "args": [],
  2448. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  2449. },
  2450. "swarming": {
  2451. "can_use_on_swarming_builders": true,
  2452. "dimension_sets": [
  2453. {
  2454. "os": "Ubuntu-18.04",
  2455. "pool": "chrome.tests",
  2456. "ssd": "0"
  2457. }
  2458. ],
  2459. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  2460. },
  2461. "test": "blink_heap_unittests",
  2462. "test_id_prefix": "ninja://third_party/blink/renderer/platform/heap:blink_heap_unittests/"
  2463. },
  2464. {
  2465. "merge": {
  2466. "args": [],
  2467. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  2468. },
  2469. "swarming": {
  2470. "can_use_on_swarming_builders": true,
  2471. "dimension_sets": [
  2472. {
  2473. "os": "Ubuntu-18.04",
  2474. "pool": "chrome.tests",
  2475. "ssd": "0"
  2476. }
  2477. ],
  2478. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  2479. },
  2480. "test": "blink_platform_unittests",
  2481. "test_id_prefix": "ninja://third_party/blink/renderer/platform:blink_platform_unittests/"
  2482. },
  2483. {
  2484. "merge": {
  2485. "args": [],
  2486. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  2487. },
  2488. "name": "webkit_unit_tests",
  2489. "swarming": {
  2490. "can_use_on_swarming_builders": true,
  2491. "dimension_sets": [
  2492. {
  2493. "os": "Ubuntu-18.04",
  2494. "pool": "chrome.tests",
  2495. "ssd": "0"
  2496. }
  2497. ],
  2498. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  2499. },
  2500. "test": "blink_unittests",
  2501. "test_id_prefix": "ninja://third_party/blink/renderer/controller:blink_unittests/"
  2502. },
  2503. {
  2504. "merge": {
  2505. "args": [],
  2506. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  2507. },
  2508. "swarming": {
  2509. "can_use_on_swarming_builders": true,
  2510. "dimension_sets": [
  2511. {
  2512. "os": "Ubuntu-18.04",
  2513. "pool": "chrome.tests",
  2514. "ssd": "0"
  2515. }
  2516. ],
  2517. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  2518. },
  2519. "test": "boringssl_crypto_tests",
  2520. "test_id_prefix": "ninja://third_party/boringssl:boringssl_crypto_tests/"
  2521. },
  2522. {
  2523. "merge": {
  2524. "args": [],
  2525. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  2526. },
  2527. "swarming": {
  2528. "can_use_on_swarming_builders": true,
  2529. "dimension_sets": [
  2530. {
  2531. "os": "Ubuntu-18.04",
  2532. "pool": "chrome.tests",
  2533. "ssd": "0"
  2534. }
  2535. ],
  2536. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  2537. },
  2538. "test": "boringssl_ssl_tests",
  2539. "test_id_prefix": "ninja://third_party/boringssl:boringssl_ssl_tests/"
  2540. },
  2541. {
  2542. "args": [
  2543. "--test-launcher-filter-file=../../testing/buildbot/filters/chromeos.browser_tests.filter"
  2544. ],
  2545. "merge": {
  2546. "args": [],
  2547. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  2548. },
  2549. "swarming": {
  2550. "can_use_on_swarming_builders": true,
  2551. "dimension_sets": [
  2552. {
  2553. "os": "Ubuntu-18.04",
  2554. "pool": "chrome.tests",
  2555. "ssd": "0"
  2556. }
  2557. ],
  2558. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com",
  2559. "shards": 20
  2560. },
  2561. "test": "browser_tests",
  2562. "test_id_prefix": "ninja://chrome/test:browser_tests/"
  2563. },
  2564. {
  2565. "args": [
  2566. "--gtest_filter=-*UsingRealWebcam*"
  2567. ],
  2568. "merge": {
  2569. "args": [],
  2570. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  2571. },
  2572. "swarming": {
  2573. "can_use_on_swarming_builders": true,
  2574. "dimension_sets": [
  2575. {
  2576. "os": "Ubuntu-18.04",
  2577. "pool": "chrome.tests",
  2578. "ssd": "0"
  2579. }
  2580. ],
  2581. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  2582. },
  2583. "test": "capture_unittests",
  2584. "test_id_prefix": "ninja://media/capture:capture_unittests/"
  2585. },
  2586. {
  2587. "merge": {
  2588. "args": [],
  2589. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  2590. },
  2591. "swarming": {
  2592. "can_use_on_swarming_builders": true,
  2593. "dimension_sets": [
  2594. {
  2595. "os": "Ubuntu-18.04",
  2596. "pool": "chrome.tests",
  2597. "ssd": "0"
  2598. }
  2599. ],
  2600. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  2601. },
  2602. "test": "cast_unittests",
  2603. "test_id_prefix": "ninja://media/cast:cast_unittests/"
  2604. },
  2605. {
  2606. "merge": {
  2607. "args": [],
  2608. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  2609. },
  2610. "swarming": {
  2611. "can_use_on_swarming_builders": true,
  2612. "dimension_sets": [
  2613. {
  2614. "os": "Ubuntu-18.04",
  2615. "pool": "chrome.tests",
  2616. "ssd": "0"
  2617. }
  2618. ],
  2619. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  2620. },
  2621. "test": "cc_unittests",
  2622. "test_id_prefix": "ninja://cc:cc_unittests/"
  2623. },
  2624. {
  2625. "merge": {
  2626. "args": [],
  2627. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  2628. },
  2629. "swarming": {
  2630. "can_use_on_swarming_builders": true,
  2631. "dimension_sets": [
  2632. {
  2633. "os": "Ubuntu-18.04",
  2634. "pool": "chrome.tests",
  2635. "ssd": "0"
  2636. }
  2637. ],
  2638. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  2639. },
  2640. "test": "chrome_app_unittests",
  2641. "test_id_prefix": "ninja://chrome/test:chrome_app_unittests/"
  2642. },
  2643. {
  2644. "merge": {
  2645. "args": [],
  2646. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  2647. },
  2648. "swarming": {
  2649. "can_use_on_swarming_builders": true,
  2650. "dimension_sets": [
  2651. {
  2652. "os": "Ubuntu-18.04",
  2653. "pool": "chrome.tests",
  2654. "ssd": "0"
  2655. }
  2656. ],
  2657. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  2658. },
  2659. "test": "chromedriver_unittests",
  2660. "test_id_prefix": "ninja://chrome/test/chromedriver:chromedriver_unittests/"
  2661. },
  2662. {
  2663. "merge": {
  2664. "args": [],
  2665. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  2666. },
  2667. "swarming": {
  2668. "can_use_on_swarming_builders": true,
  2669. "dimension_sets": [
  2670. {
  2671. "os": "Ubuntu-18.04",
  2672. "pool": "chrome.tests",
  2673. "ssd": "0"
  2674. }
  2675. ],
  2676. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  2677. },
  2678. "test": "chromeos_components_unittests",
  2679. "test_id_prefix": "ninja://chromeos/components:chromeos_components_unittests/"
  2680. },
  2681. {
  2682. "merge": {
  2683. "args": [],
  2684. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  2685. },
  2686. "swarming": {
  2687. "can_use_on_swarming_builders": true,
  2688. "dimension_sets": [
  2689. {
  2690. "os": "Ubuntu-18.04",
  2691. "pool": "chrome.tests",
  2692. "ssd": "0"
  2693. }
  2694. ],
  2695. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  2696. },
  2697. "test": "chromeos_unittests",
  2698. "test_id_prefix": "ninja://chromeos:chromeos_unittests/"
  2699. },
  2700. {
  2701. "merge": {
  2702. "args": [],
  2703. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  2704. },
  2705. "swarming": {
  2706. "can_use_on_swarming_builders": true,
  2707. "dimension_sets": [
  2708. {
  2709. "os": "Ubuntu-18.04",
  2710. "pool": "chrome.tests",
  2711. "ssd": "0"
  2712. }
  2713. ],
  2714. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  2715. },
  2716. "test": "color_unittests",
  2717. "test_id_prefix": "ninja://ui/color:color_unittests/"
  2718. },
  2719. {
  2720. "merge": {
  2721. "args": [],
  2722. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  2723. },
  2724. "swarming": {
  2725. "can_use_on_swarming_builders": true,
  2726. "dimension_sets": [
  2727. {
  2728. "os": "Ubuntu-18.04",
  2729. "pool": "chrome.tests",
  2730. "ssd": "0"
  2731. }
  2732. ],
  2733. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  2734. },
  2735. "test": "components_browsertests",
  2736. "test_id_prefix": "ninja://components:components_browsertests/"
  2737. },
  2738. {
  2739. "merge": {
  2740. "args": [],
  2741. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  2742. },
  2743. "swarming": {
  2744. "can_use_on_swarming_builders": true,
  2745. "dimension_sets": [
  2746. {
  2747. "os": "Ubuntu-18.04",
  2748. "pool": "chrome.tests",
  2749. "ssd": "0"
  2750. }
  2751. ],
  2752. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  2753. },
  2754. "test": "components_unittests",
  2755. "test_id_prefix": "ninja://components:components_unittests/"
  2756. },
  2757. {
  2758. "merge": {
  2759. "args": [],
  2760. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  2761. },
  2762. "swarming": {
  2763. "can_use_on_swarming_builders": true,
  2764. "dimension_sets": [
  2765. {
  2766. "os": "Ubuntu-18.04",
  2767. "pool": "chrome.tests",
  2768. "ssd": "0"
  2769. }
  2770. ],
  2771. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  2772. },
  2773. "test": "compositor_unittests",
  2774. "test_id_prefix": "ninja://ui/compositor:compositor_unittests/"
  2775. },
  2776. {
  2777. "merge": {
  2778. "args": [],
  2779. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  2780. },
  2781. "swarming": {
  2782. "can_use_on_swarming_builders": true,
  2783. "dimension_sets": [
  2784. {
  2785. "os": "Ubuntu-18.04",
  2786. "pool": "chrome.tests",
  2787. "ssd": "0"
  2788. }
  2789. ],
  2790. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com",
  2791. "shards": 8
  2792. },
  2793. "test": "content_browsertests",
  2794. "test_id_prefix": "ninja://content/test:content_browsertests/"
  2795. },
  2796. {
  2797. "merge": {
  2798. "args": [],
  2799. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  2800. },
  2801. "swarming": {
  2802. "can_use_on_swarming_builders": true,
  2803. "dimension_sets": [
  2804. {
  2805. "os": "Ubuntu-18.04",
  2806. "pool": "chrome.tests",
  2807. "ssd": "0"
  2808. }
  2809. ],
  2810. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  2811. },
  2812. "test": "content_unittests",
  2813. "test_id_prefix": "ninja://content/test:content_unittests/"
  2814. },
  2815. {
  2816. "merge": {
  2817. "args": [],
  2818. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  2819. },
  2820. "swarming": {
  2821. "can_use_on_swarming_builders": true,
  2822. "dimension_sets": [
  2823. {
  2824. "os": "Ubuntu-18.04",
  2825. "pool": "chrome.tests",
  2826. "ssd": "0"
  2827. }
  2828. ],
  2829. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  2830. },
  2831. "test": "crashpad_tests",
  2832. "test_id_prefix": "ninja://third_party/crashpad/crashpad:crashpad_tests/"
  2833. },
  2834. {
  2835. "merge": {
  2836. "args": [],
  2837. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  2838. },
  2839. "swarming": {
  2840. "can_use_on_swarming_builders": true,
  2841. "dimension_sets": [
  2842. {
  2843. "os": "Ubuntu-18.04",
  2844. "pool": "chrome.tests",
  2845. "ssd": "0"
  2846. }
  2847. ],
  2848. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  2849. },
  2850. "test": "crypto_unittests",
  2851. "test_id_prefix": "ninja://crypto:crypto_unittests/"
  2852. },
  2853. {
  2854. "merge": {
  2855. "args": [],
  2856. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  2857. },
  2858. "swarming": {
  2859. "can_use_on_swarming_builders": true,
  2860. "dimension_sets": [
  2861. {
  2862. "os": "Ubuntu-18.04",
  2863. "pool": "chrome.tests",
  2864. "ssd": "0"
  2865. }
  2866. ],
  2867. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  2868. },
  2869. "test": "dbus_unittests",
  2870. "test_id_prefix": "ninja://dbus:dbus_unittests/"
  2871. },
  2872. {
  2873. "merge": {
  2874. "args": [],
  2875. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  2876. },
  2877. "swarming": {
  2878. "can_use_on_swarming_builders": true,
  2879. "dimension_sets": [
  2880. {
  2881. "os": "Ubuntu-18.04",
  2882. "pool": "chrome.tests",
  2883. "ssd": "0"
  2884. }
  2885. ],
  2886. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  2887. },
  2888. "test": "device_unittests",
  2889. "test_id_prefix": "ninja://device:device_unittests/"
  2890. },
  2891. {
  2892. "merge": {
  2893. "args": [],
  2894. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  2895. },
  2896. "swarming": {
  2897. "can_use_on_swarming_builders": true,
  2898. "dimension_sets": [
  2899. {
  2900. "os": "Ubuntu-18.04",
  2901. "pool": "chrome.tests",
  2902. "ssd": "0"
  2903. }
  2904. ],
  2905. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  2906. },
  2907. "test": "display_unittests",
  2908. "test_id_prefix": "ninja://ui/display:display_unittests/"
  2909. },
  2910. {
  2911. "merge": {
  2912. "args": [],
  2913. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  2914. },
  2915. "swarming": {
  2916. "can_use_on_swarming_builders": true,
  2917. "dimension_sets": [
  2918. {
  2919. "os": "Ubuntu-18.04",
  2920. "pool": "chrome.tests",
  2921. "ssd": "0"
  2922. }
  2923. ],
  2924. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  2925. },
  2926. "test": "events_unittests",
  2927. "test_id_prefix": "ninja://ui/events:events_unittests/"
  2928. },
  2929. {
  2930. "merge": {
  2931. "args": [],
  2932. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  2933. },
  2934. "swarming": {
  2935. "can_use_on_swarming_builders": true,
  2936. "dimension_sets": [
  2937. {
  2938. "os": "Ubuntu-18.04",
  2939. "pool": "chrome.tests",
  2940. "ssd": "0"
  2941. }
  2942. ],
  2943. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  2944. },
  2945. "test": "exo_unittests",
  2946. "test_id_prefix": "ninja://components/exo:exo_unittests/"
  2947. },
  2948. {
  2949. "merge": {
  2950. "args": [],
  2951. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  2952. },
  2953. "swarming": {
  2954. "can_use_on_swarming_builders": true,
  2955. "dimension_sets": [
  2956. {
  2957. "os": "Ubuntu-18.04",
  2958. "pool": "chrome.tests",
  2959. "ssd": "0"
  2960. }
  2961. ],
  2962. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  2963. },
  2964. "test": "extensions_browsertests",
  2965. "test_id_prefix": "ninja://extensions:extensions_browsertests/"
  2966. },
  2967. {
  2968. "merge": {
  2969. "args": [],
  2970. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  2971. },
  2972. "swarming": {
  2973. "can_use_on_swarming_builders": true,
  2974. "dimension_sets": [
  2975. {
  2976. "os": "Ubuntu-18.04",
  2977. "pool": "chrome.tests",
  2978. "ssd": "0"
  2979. }
  2980. ],
  2981. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  2982. },
  2983. "test": "extensions_unittests",
  2984. "test_id_prefix": "ninja://extensions:extensions_unittests/"
  2985. },
  2986. {
  2987. "merge": {
  2988. "args": [],
  2989. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  2990. },
  2991. "swarming": {
  2992. "can_use_on_swarming_builders": true,
  2993. "dimension_sets": [
  2994. {
  2995. "os": "Ubuntu-18.04",
  2996. "pool": "chrome.tests",
  2997. "ssd": "0"
  2998. }
  2999. ],
  3000. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  3001. },
  3002. "test": "filesystem_service_unittests",
  3003. "test_id_prefix": "ninja://components/services/filesystem:filesystem_service_unittests/"
  3004. },
  3005. {
  3006. "merge": {
  3007. "args": [],
  3008. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  3009. },
  3010. "swarming": {
  3011. "can_use_on_swarming_builders": true,
  3012. "dimension_sets": [
  3013. {
  3014. "os": "Ubuntu-18.04",
  3015. "pool": "chrome.tests",
  3016. "ssd": "0"
  3017. }
  3018. ],
  3019. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  3020. },
  3021. "test": "gcm_unit_tests",
  3022. "test_id_prefix": "ninja://google_apis/gcm:gcm_unit_tests/"
  3023. },
  3024. {
  3025. "merge": {
  3026. "args": [],
  3027. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  3028. },
  3029. "swarming": {
  3030. "can_use_on_swarming_builders": true,
  3031. "dimension_sets": [
  3032. {
  3033. "os": "Ubuntu-18.04",
  3034. "pool": "chrome.tests",
  3035. "ssd": "0"
  3036. }
  3037. ],
  3038. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  3039. },
  3040. "test": "gfx_unittests",
  3041. "test_id_prefix": "ninja://ui/gfx:gfx_unittests/"
  3042. },
  3043. {
  3044. "merge": {
  3045. "args": [],
  3046. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  3047. },
  3048. "swarming": {
  3049. "can_use_on_swarming_builders": true,
  3050. "dimension_sets": [
  3051. {
  3052. "os": "Ubuntu-18.04",
  3053. "pool": "chrome.tests",
  3054. "ssd": "0"
  3055. }
  3056. ],
  3057. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  3058. },
  3059. "test": "gin_unittests",
  3060. "test_id_prefix": "ninja://gin:gin_unittests/"
  3061. },
  3062. {
  3063. "merge": {
  3064. "args": [],
  3065. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  3066. },
  3067. "swarming": {
  3068. "can_use_on_swarming_builders": true,
  3069. "dimension_sets": [
  3070. {
  3071. "os": "Ubuntu-18.04",
  3072. "pool": "chrome.tests",
  3073. "ssd": "0"
  3074. }
  3075. ],
  3076. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  3077. },
  3078. "test": "gl_unittests_ozone",
  3079. "test_id_prefix": "ninja://ui/gl:gl_unittests_ozone/"
  3080. },
  3081. {
  3082. "merge": {
  3083. "args": [],
  3084. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  3085. },
  3086. "swarming": {
  3087. "can_use_on_swarming_builders": true,
  3088. "dimension_sets": [
  3089. {
  3090. "os": "Ubuntu-18.04",
  3091. "pool": "chrome.tests",
  3092. "ssd": "0"
  3093. }
  3094. ],
  3095. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  3096. },
  3097. "test": "google_apis_unittests",
  3098. "test_id_prefix": "ninja://google_apis:google_apis_unittests/"
  3099. },
  3100. {
  3101. "merge": {
  3102. "args": [],
  3103. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  3104. },
  3105. "swarming": {
  3106. "can_use_on_swarming_builders": true,
  3107. "dimension_sets": [
  3108. {
  3109. "os": "Ubuntu-18.04",
  3110. "pool": "chrome.tests",
  3111. "ssd": "0"
  3112. }
  3113. ],
  3114. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  3115. },
  3116. "test": "gpu_unittests",
  3117. "test_id_prefix": "ninja://gpu:gpu_unittests/"
  3118. },
  3119. {
  3120. "merge": {
  3121. "args": [],
  3122. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  3123. },
  3124. "swarming": {
  3125. "can_use_on_swarming_builders": true,
  3126. "dimension_sets": [
  3127. {
  3128. "os": "Ubuntu-18.04",
  3129. "pool": "chrome.tests",
  3130. "ssd": "0"
  3131. }
  3132. ],
  3133. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  3134. },
  3135. "test": "gwp_asan_unittests",
  3136. "test_id_prefix": "ninja://components/gwp_asan:gwp_asan_unittests/"
  3137. },
  3138. {
  3139. "args": [
  3140. "--gtest_filter=-SadTabViewInteractiveUITest.ReloadMultipleSadTabs"
  3141. ],
  3142. "merge": {
  3143. "args": [],
  3144. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  3145. },
  3146. "swarming": {
  3147. "can_use_on_swarming_builders": true,
  3148. "dimension_sets": [
  3149. {
  3150. "os": "Ubuntu-18.04",
  3151. "pool": "chrome.tests",
  3152. "ssd": "0"
  3153. }
  3154. ],
  3155. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com",
  3156. "shards": 3
  3157. },
  3158. "test": "interactive_ui_tests",
  3159. "test_id_prefix": "ninja://chrome/test:interactive_ui_tests/"
  3160. },
  3161. {
  3162. "merge": {
  3163. "args": [],
  3164. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  3165. },
  3166. "swarming": {
  3167. "can_use_on_swarming_builders": true,
  3168. "dimension_sets": [
  3169. {
  3170. "os": "Ubuntu-18.04",
  3171. "pool": "chrome.tests",
  3172. "ssd": "0"
  3173. }
  3174. ],
  3175. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  3176. },
  3177. "test": "ipc_tests",
  3178. "test_id_prefix": "ninja://ipc:ipc_tests/"
  3179. },
  3180. {
  3181. "merge": {
  3182. "args": [],
  3183. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  3184. },
  3185. "swarming": {
  3186. "can_use_on_swarming_builders": true,
  3187. "dimension_sets": [
  3188. {
  3189. "os": "Ubuntu-18.04",
  3190. "pool": "chrome.tests",
  3191. "ssd": "0"
  3192. }
  3193. ],
  3194. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  3195. },
  3196. "test": "keyboard_unittests",
  3197. "test_id_prefix": "ninja://ash/keyboard/ui:keyboard_unittests/"
  3198. },
  3199. {
  3200. "merge": {
  3201. "args": [],
  3202. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  3203. },
  3204. "swarming": {
  3205. "can_use_on_swarming_builders": true,
  3206. "dimension_sets": [
  3207. {
  3208. "os": "Ubuntu-18.04",
  3209. "pool": "chrome.tests",
  3210. "ssd": "0"
  3211. }
  3212. ],
  3213. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  3214. },
  3215. "test": "latency_unittests",
  3216. "test_id_prefix": "ninja://ui/latency:latency_unittests/"
  3217. },
  3218. {
  3219. "merge": {
  3220. "args": [],
  3221. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  3222. },
  3223. "swarming": {
  3224. "can_use_on_swarming_builders": true,
  3225. "dimension_sets": [
  3226. {
  3227. "os": "Ubuntu-18.04",
  3228. "pool": "chrome.tests",
  3229. "ssd": "0"
  3230. }
  3231. ],
  3232. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  3233. },
  3234. "test": "libjingle_xmpp_unittests",
  3235. "test_id_prefix": "ninja://third_party/libjingle_xmpp:libjingle_xmpp_unittests/"
  3236. },
  3237. {
  3238. "merge": {
  3239. "args": [],
  3240. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  3241. },
  3242. "swarming": {
  3243. "can_use_on_swarming_builders": true,
  3244. "dimension_sets": [
  3245. {
  3246. "os": "Ubuntu-18.04",
  3247. "pool": "chrome.tests",
  3248. "ssd": "0"
  3249. }
  3250. ],
  3251. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  3252. },
  3253. "test": "liburlpattern_unittests",
  3254. "test_id_prefix": "ninja://third_party/liburlpattern:liburlpattern_unittests/"
  3255. },
  3256. {
  3257. "merge": {
  3258. "args": [],
  3259. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  3260. },
  3261. "swarming": {
  3262. "can_use_on_swarming_builders": true,
  3263. "dimension_sets": [
  3264. {
  3265. "os": "Ubuntu-18.04",
  3266. "pool": "chrome.tests",
  3267. "ssd": "0"
  3268. }
  3269. ],
  3270. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  3271. },
  3272. "test": "media_unittests",
  3273. "test_id_prefix": "ninja://media:media_unittests/"
  3274. },
  3275. {
  3276. "merge": {
  3277. "args": [],
  3278. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  3279. },
  3280. "swarming": {
  3281. "can_use_on_swarming_builders": true,
  3282. "dimension_sets": [
  3283. {
  3284. "os": "Ubuntu-18.04",
  3285. "pool": "chrome.tests",
  3286. "ssd": "0"
  3287. }
  3288. ],
  3289. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  3290. },
  3291. "test": "message_center_unittests",
  3292. "test_id_prefix": "ninja://ui/message_center:message_center_unittests/"
  3293. },
  3294. {
  3295. "merge": {
  3296. "args": [],
  3297. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  3298. },
  3299. "swarming": {
  3300. "can_use_on_swarming_builders": true,
  3301. "dimension_sets": [
  3302. {
  3303. "os": "Ubuntu-18.04",
  3304. "pool": "chrome.tests",
  3305. "ssd": "0"
  3306. }
  3307. ],
  3308. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  3309. },
  3310. "test": "midi_unittests",
  3311. "test_id_prefix": "ninja://media/midi:midi_unittests/"
  3312. },
  3313. {
  3314. "merge": {
  3315. "args": [],
  3316. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  3317. },
  3318. "swarming": {
  3319. "can_use_on_swarming_builders": true,
  3320. "dimension_sets": [
  3321. {
  3322. "os": "Ubuntu-18.04",
  3323. "pool": "chrome.tests",
  3324. "ssd": "0"
  3325. }
  3326. ],
  3327. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  3328. },
  3329. "test": "mojo_core_unittests",
  3330. "test_id_prefix": "ninja://mojo/core:mojo_core_unittests/"
  3331. },
  3332. {
  3333. "merge": {
  3334. "args": [],
  3335. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  3336. },
  3337. "swarming": {
  3338. "can_use_on_swarming_builders": true,
  3339. "dimension_sets": [
  3340. {
  3341. "os": "Ubuntu-18.04",
  3342. "pool": "chrome.tests",
  3343. "ssd": "0"
  3344. }
  3345. ],
  3346. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  3347. },
  3348. "test": "mojo_unittests",
  3349. "test_id_prefix": "ninja://mojo:mojo_unittests/"
  3350. },
  3351. {
  3352. "merge": {
  3353. "args": [],
  3354. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  3355. },
  3356. "swarming": {
  3357. "can_use_on_swarming_builders": true,
  3358. "dimension_sets": [
  3359. {
  3360. "os": "Ubuntu-18.04",
  3361. "pool": "chrome.tests",
  3362. "ssd": "0"
  3363. }
  3364. ],
  3365. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  3366. },
  3367. "test": "nacl_loader_unittests",
  3368. "test_id_prefix": "ninja://components/nacl/loader:nacl_loader_unittests/"
  3369. },
  3370. {
  3371. "merge": {
  3372. "args": [],
  3373. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  3374. },
  3375. "swarming": {
  3376. "can_use_on_swarming_builders": true,
  3377. "dimension_sets": [
  3378. {
  3379. "os": "Ubuntu-18.04",
  3380. "pool": "chrome.tests",
  3381. "ssd": "0"
  3382. }
  3383. ],
  3384. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  3385. },
  3386. "test": "native_theme_unittests",
  3387. "test_id_prefix": "ninja://ui/native_theme:native_theme_unittests/"
  3388. },
  3389. {
  3390. "merge": {
  3391. "args": [],
  3392. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  3393. },
  3394. "swarming": {
  3395. "can_use_on_swarming_builders": true,
  3396. "dimension_sets": [
  3397. {
  3398. "os": "Ubuntu-18.04",
  3399. "pool": "chrome.tests",
  3400. "ssd": "0"
  3401. }
  3402. ],
  3403. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  3404. },
  3405. "test": "net_unittests",
  3406. "test_id_prefix": "ninja://net:net_unittests/"
  3407. },
  3408. {
  3409. "args": [
  3410. "--ozone-platform=headless"
  3411. ],
  3412. "merge": {
  3413. "args": [],
  3414. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  3415. },
  3416. "swarming": {
  3417. "can_use_on_swarming_builders": true,
  3418. "dimension_sets": [
  3419. {
  3420. "os": "Ubuntu-18.04",
  3421. "pool": "chrome.tests",
  3422. "ssd": "0"
  3423. }
  3424. ],
  3425. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  3426. },
  3427. "test": "ozone_gl_unittests",
  3428. "test_id_prefix": "ninja://ui/ozone/gl:ozone_gl_unittests/"
  3429. },
  3430. {
  3431. "args": [
  3432. "--test-launcher-filter-file=../../testing/buildbot/filters/chromeos.ozone_unittests.filter"
  3433. ],
  3434. "merge": {
  3435. "args": [],
  3436. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  3437. },
  3438. "swarming": {
  3439. "can_use_on_swarming_builders": true,
  3440. "dimension_sets": [
  3441. {
  3442. "os": "Ubuntu-18.04",
  3443. "pool": "chrome.tests",
  3444. "ssd": "0"
  3445. }
  3446. ],
  3447. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  3448. },
  3449. "test": "ozone_unittests",
  3450. "test_id_prefix": "ninja://ui/ozone:ozone_unittests/"
  3451. },
  3452. {
  3453. "merge": {
  3454. "args": [],
  3455. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  3456. },
  3457. "swarming": {
  3458. "can_use_on_swarming_builders": true,
  3459. "dimension_sets": [
  3460. {
  3461. "os": "Ubuntu-18.04",
  3462. "pool": "chrome.tests",
  3463. "ssd": "0"
  3464. }
  3465. ],
  3466. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  3467. },
  3468. "test": "ozone_x11_unittests",
  3469. "test_id_prefix": "ninja://ui/ozone:ozone_x11_unittests/"
  3470. },
  3471. {
  3472. "merge": {
  3473. "args": [],
  3474. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  3475. },
  3476. "swarming": {
  3477. "can_use_on_swarming_builders": true,
  3478. "dimension_sets": [
  3479. {
  3480. "os": "Ubuntu-18.04",
  3481. "pool": "chrome.tests",
  3482. "ssd": "0"
  3483. }
  3484. ],
  3485. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  3486. },
  3487. "test": "pdf_unittests",
  3488. "test_id_prefix": "ninja://pdf:pdf_unittests/"
  3489. },
  3490. {
  3491. "merge": {
  3492. "args": [],
  3493. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  3494. },
  3495. "swarming": {
  3496. "can_use_on_swarming_builders": true,
  3497. "dimension_sets": [
  3498. {
  3499. "os": "Ubuntu-18.04",
  3500. "pool": "chrome.tests",
  3501. "ssd": "0"
  3502. }
  3503. ],
  3504. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  3505. },
  3506. "test": "perfetto_unittests",
  3507. "test_id_prefix": "ninja://third_party/perfetto:perfetto_unittests/"
  3508. },
  3509. {
  3510. "merge": {
  3511. "args": [],
  3512. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  3513. },
  3514. "swarming": {
  3515. "can_use_on_swarming_builders": true,
  3516. "dimension_sets": [
  3517. {
  3518. "os": "Ubuntu-18.04",
  3519. "pool": "chrome.tests",
  3520. "ssd": "0"
  3521. }
  3522. ],
  3523. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  3524. },
  3525. "test": "ppapi_unittests",
  3526. "test_id_prefix": "ninja://ppapi:ppapi_unittests/"
  3527. },
  3528. {
  3529. "merge": {
  3530. "args": [],
  3531. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  3532. },
  3533. "swarming": {
  3534. "can_use_on_swarming_builders": true,
  3535. "dimension_sets": [
  3536. {
  3537. "os": "Ubuntu-18.04",
  3538. "pool": "chrome.tests",
  3539. "ssd": "0"
  3540. }
  3541. ],
  3542. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  3543. },
  3544. "test": "printing_unittests",
  3545. "test_id_prefix": "ninja://printing:printing_unittests/"
  3546. },
  3547. {
  3548. "merge": {
  3549. "args": [],
  3550. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  3551. },
  3552. "swarming": {
  3553. "can_use_on_swarming_builders": true,
  3554. "dimension_sets": [
  3555. {
  3556. "os": "Ubuntu-18.04",
  3557. "pool": "chrome.tests",
  3558. "ssd": "0"
  3559. }
  3560. ],
  3561. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  3562. },
  3563. "test": "remoting_unittests",
  3564. "test_id_prefix": "ninja://remoting:remoting_unittests/"
  3565. },
  3566. {
  3567. "merge": {
  3568. "args": [],
  3569. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  3570. },
  3571. "swarming": {
  3572. "can_use_on_swarming_builders": true,
  3573. "dimension_sets": [
  3574. {
  3575. "os": "Ubuntu-18.04",
  3576. "pool": "chrome.tests",
  3577. "ssd": "0"
  3578. }
  3579. ],
  3580. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  3581. },
  3582. "test": "sandbox_linux_unittests",
  3583. "test_id_prefix": "ninja://sandbox/linux:sandbox_linux_unittests/"
  3584. },
  3585. {
  3586. "merge": {
  3587. "args": [],
  3588. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  3589. },
  3590. "swarming": {
  3591. "can_use_on_swarming_builders": true,
  3592. "dimension_sets": [
  3593. {
  3594. "os": "Ubuntu-18.04",
  3595. "pool": "chrome.tests",
  3596. "ssd": "0"
  3597. }
  3598. ],
  3599. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  3600. },
  3601. "test": "service_manager_unittests",
  3602. "test_id_prefix": "ninja://services/service_manager/tests:service_manager_unittests/"
  3603. },
  3604. {
  3605. "merge": {
  3606. "args": [],
  3607. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  3608. },
  3609. "swarming": {
  3610. "can_use_on_swarming_builders": true,
  3611. "dimension_sets": [
  3612. {
  3613. "os": "Ubuntu-18.04",
  3614. "pool": "chrome.tests",
  3615. "ssd": "0"
  3616. }
  3617. ],
  3618. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  3619. },
  3620. "test": "services_unittests",
  3621. "test_id_prefix": "ninja://services:services_unittests/"
  3622. },
  3623. {
  3624. "merge": {
  3625. "args": [],
  3626. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  3627. },
  3628. "swarming": {
  3629. "can_use_on_swarming_builders": true,
  3630. "dimension_sets": [
  3631. {
  3632. "os": "Ubuntu-18.04",
  3633. "pool": "chrome.tests",
  3634. "ssd": "0"
  3635. }
  3636. ],
  3637. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  3638. },
  3639. "test": "shell_dialogs_unittests",
  3640. "test_id_prefix": "ninja://ui/shell_dialogs:shell_dialogs_unittests/"
  3641. },
  3642. {
  3643. "merge": {
  3644. "args": [],
  3645. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  3646. },
  3647. "swarming": {
  3648. "can_use_on_swarming_builders": true,
  3649. "dimension_sets": [
  3650. {
  3651. "os": "Ubuntu-18.04",
  3652. "pool": "chrome.tests",
  3653. "ssd": "0"
  3654. }
  3655. ],
  3656. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  3657. },
  3658. "test": "shell_encryption_unittests",
  3659. "test_id_prefix": "ninja://third_party/shell-encryption:shell_encryption_unittests/"
  3660. },
  3661. {
  3662. "merge": {
  3663. "args": [],
  3664. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  3665. },
  3666. "swarming": {
  3667. "can_use_on_swarming_builders": true,
  3668. "dimension_sets": [
  3669. {
  3670. "os": "Ubuntu-18.04",
  3671. "pool": "chrome.tests",
  3672. "ssd": "0"
  3673. }
  3674. ],
  3675. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  3676. },
  3677. "test": "skia_unittests",
  3678. "test_id_prefix": "ninja://skia:skia_unittests/"
  3679. },
  3680. {
  3681. "merge": {
  3682. "args": [],
  3683. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  3684. },
  3685. "swarming": {
  3686. "can_use_on_swarming_builders": true,
  3687. "dimension_sets": [
  3688. {
  3689. "os": "Ubuntu-18.04",
  3690. "pool": "chrome.tests",
  3691. "ssd": "0"
  3692. }
  3693. ],
  3694. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  3695. },
  3696. "test": "snapshot_unittests",
  3697. "test_id_prefix": "ninja://ui/snapshot:snapshot_unittests/"
  3698. },
  3699. {
  3700. "merge": {
  3701. "args": [],
  3702. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  3703. },
  3704. "swarming": {
  3705. "can_use_on_swarming_builders": true,
  3706. "dimension_sets": [
  3707. {
  3708. "os": "Ubuntu-18.04",
  3709. "pool": "chrome.tests",
  3710. "ssd": "0"
  3711. }
  3712. ],
  3713. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  3714. },
  3715. "test": "sql_unittests",
  3716. "test_id_prefix": "ninja://sql:sql_unittests/"
  3717. },
  3718. {
  3719. "merge": {
  3720. "args": [],
  3721. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  3722. },
  3723. "swarming": {
  3724. "can_use_on_swarming_builders": true,
  3725. "dimension_sets": [
  3726. {
  3727. "os": "Ubuntu-18.04",
  3728. "pool": "chrome.tests",
  3729. "ssd": "0"
  3730. }
  3731. ],
  3732. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  3733. },
  3734. "test": "storage_unittests",
  3735. "test_id_prefix": "ninja://storage:storage_unittests/"
  3736. },
  3737. {
  3738. "merge": {
  3739. "args": [],
  3740. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  3741. },
  3742. "swarming": {
  3743. "can_use_on_swarming_builders": true,
  3744. "dimension_sets": [
  3745. {
  3746. "os": "Ubuntu-18.04",
  3747. "pool": "chrome.tests",
  3748. "ssd": "0"
  3749. }
  3750. ],
  3751. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  3752. },
  3753. "test": "sync_integration_tests",
  3754. "test_id_prefix": "ninja://chrome/test:sync_integration_tests/"
  3755. },
  3756. {
  3757. "merge": {
  3758. "args": [],
  3759. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  3760. },
  3761. "swarming": {
  3762. "can_use_on_swarming_builders": true,
  3763. "dimension_sets": [
  3764. {
  3765. "os": "Ubuntu-18.04",
  3766. "pool": "chrome.tests",
  3767. "ssd": "0"
  3768. }
  3769. ],
  3770. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  3771. },
  3772. "test": "ui_base_unittests",
  3773. "test_id_prefix": "ninja://ui/base:ui_base_unittests/"
  3774. },
  3775. {
  3776. "merge": {
  3777. "args": [],
  3778. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  3779. },
  3780. "swarming": {
  3781. "can_use_on_swarming_builders": true,
  3782. "dimension_sets": [
  3783. {
  3784. "os": "Ubuntu-18.04",
  3785. "pool": "chrome.tests",
  3786. "ssd": "0"
  3787. }
  3788. ],
  3789. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  3790. },
  3791. "test": "ui_chromeos_unittests",
  3792. "test_id_prefix": "ninja://ui/chromeos:ui_chromeos_unittests/"
  3793. },
  3794. {
  3795. "merge": {
  3796. "args": [],
  3797. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  3798. },
  3799. "swarming": {
  3800. "can_use_on_swarming_builders": true,
  3801. "dimension_sets": [
  3802. {
  3803. "os": "Ubuntu-18.04",
  3804. "pool": "chrome.tests",
  3805. "ssd": "0"
  3806. }
  3807. ],
  3808. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  3809. },
  3810. "test": "ui_touch_selection_unittests",
  3811. "test_id_prefix": "ninja://ui/touch_selection:ui_touch_selection_unittests/"
  3812. },
  3813. {
  3814. "args": [
  3815. "--test-launcher-filter-file=../../testing/buildbot/filters/chromeos.unit_tests.filter"
  3816. ],
  3817. "merge": {
  3818. "args": [],
  3819. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  3820. },
  3821. "swarming": {
  3822. "can_use_on_swarming_builders": true,
  3823. "dimension_sets": [
  3824. {
  3825. "os": "Ubuntu-18.04",
  3826. "pool": "chrome.tests",
  3827. "ssd": "0"
  3828. }
  3829. ],
  3830. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  3831. },
  3832. "test": "unit_tests",
  3833. "test_id_prefix": "ninja://chrome/test:unit_tests/"
  3834. },
  3835. {
  3836. "merge": {
  3837. "args": [],
  3838. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  3839. },
  3840. "swarming": {
  3841. "can_use_on_swarming_builders": true,
  3842. "dimension_sets": [
  3843. {
  3844. "os": "Ubuntu-18.04",
  3845. "pool": "chrome.tests",
  3846. "ssd": "0"
  3847. }
  3848. ],
  3849. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  3850. },
  3851. "test": "url_unittests",
  3852. "test_id_prefix": "ninja://url:url_unittests/"
  3853. },
  3854. {
  3855. "experiment_percentage": 100,
  3856. "merge": {
  3857. "args": [],
  3858. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  3859. },
  3860. "swarming": {
  3861. "can_use_on_swarming_builders": true,
  3862. "dimension_sets": [
  3863. {
  3864. "os": "Ubuntu-18.04",
  3865. "pool": "chrome.tests",
  3866. "ssd": "0"
  3867. }
  3868. ],
  3869. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  3870. },
  3871. "test": "usage_time_limit_unittests",
  3872. "test_id_prefix": "ninja://chrome/test:usage_time_limit_unittests/"
  3873. },
  3874. {
  3875. "merge": {
  3876. "args": [],
  3877. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  3878. },
  3879. "swarming": {
  3880. "can_use_on_swarming_builders": true,
  3881. "dimension_sets": [
  3882. {
  3883. "os": "Ubuntu-18.04",
  3884. "pool": "chrome.tests",
  3885. "ssd": "0"
  3886. }
  3887. ],
  3888. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  3889. },
  3890. "test": "views_unittests",
  3891. "test_id_prefix": "ninja://ui/views:views_unittests/"
  3892. },
  3893. {
  3894. "merge": {
  3895. "args": [],
  3896. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  3897. },
  3898. "swarming": {
  3899. "can_use_on_swarming_builders": true,
  3900. "dimension_sets": [
  3901. {
  3902. "os": "Ubuntu-18.04",
  3903. "pool": "chrome.tests",
  3904. "ssd": "0"
  3905. }
  3906. ],
  3907. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  3908. },
  3909. "test": "viz_unittests",
  3910. "test_id_prefix": "ninja://components/viz:viz_unittests/"
  3911. },
  3912. {
  3913. "merge": {
  3914. "args": [],
  3915. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  3916. },
  3917. "swarming": {
  3918. "can_use_on_swarming_builders": true,
  3919. "dimension_sets": [
  3920. {
  3921. "os": "Ubuntu-18.04",
  3922. "pool": "chrome.tests",
  3923. "ssd": "0"
  3924. }
  3925. ],
  3926. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  3927. },
  3928. "test": "wayland_client_perftests",
  3929. "test_id_prefix": "ninja://components/exo/wayland:wayland_client_perftests/"
  3930. },
  3931. {
  3932. "merge": {
  3933. "args": [],
  3934. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  3935. },
  3936. "swarming": {
  3937. "can_use_on_swarming_builders": true,
  3938. "dimension_sets": [
  3939. {
  3940. "os": "Ubuntu-18.04",
  3941. "pool": "chrome.tests",
  3942. "ssd": "0"
  3943. }
  3944. ],
  3945. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  3946. },
  3947. "test": "wayland_client_tests",
  3948. "test_id_prefix": "ninja://components/exo/wayland:wayland_client_tests/"
  3949. },
  3950. {
  3951. "merge": {
  3952. "args": [],
  3953. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  3954. },
  3955. "swarming": {
  3956. "can_use_on_swarming_builders": true,
  3957. "dimension_sets": [
  3958. {
  3959. "os": "Ubuntu-18.04",
  3960. "pool": "chrome.tests",
  3961. "ssd": "0"
  3962. }
  3963. ],
  3964. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  3965. },
  3966. "test": "wm_unittests",
  3967. "test_id_prefix": "ninja://ui/wm:wm_unittests/"
  3968. },
  3969. {
  3970. "merge": {
  3971. "args": [],
  3972. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  3973. },
  3974. "swarming": {
  3975. "can_use_on_swarming_builders": true,
  3976. "dimension_sets": [
  3977. {
  3978. "os": "Ubuntu-18.04",
  3979. "pool": "chrome.tests",
  3980. "ssd": "0"
  3981. }
  3982. ],
  3983. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  3984. },
  3985. "test": "wtf_unittests",
  3986. "test_id_prefix": "ninja://third_party/blink/renderer/platform/wtf:wtf_unittests/"
  3987. },
  3988. {
  3989. "merge": {
  3990. "args": [],
  3991. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  3992. },
  3993. "swarming": {
  3994. "can_use_on_swarming_builders": true,
  3995. "dimension_sets": [
  3996. {
  3997. "os": "Ubuntu-18.04",
  3998. "pool": "chrome.tests",
  3999. "ssd": "0"
  4000. }
  4001. ],
  4002. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  4003. },
  4004. "test": "zlib_unittests",
  4005. "test_id_prefix": "ninja://third_party/zlib:zlib_unittests/"
  4006. }
  4007. ],
  4008. "isolated_scripts": [
  4009. {
  4010. "isolate_name": "chrome_sizes",
  4011. "merge": {
  4012. "script": "//tools/perf/process_perf_results.py"
  4013. },
  4014. "name": "chrome_sizes",
  4015. "resultdb": {
  4016. "enable": true,
  4017. "has_native_resultdb_integration": true
  4018. },
  4019. "swarming": {
  4020. "can_use_on_swarming_builders": true,
  4021. "dimension_sets": [
  4022. {
  4023. "os": "Ubuntu-18.04",
  4024. "pool": "chrome.tests",
  4025. "ssd": "0"
  4026. }
  4027. ],
  4028. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  4029. },
  4030. "test_id_prefix": "ninja://chrome/test:chrome_sizes/"
  4031. }
  4032. ]
  4033. },
  4034. "mac-chrome": {
  4035. "additional_compile_targets": [
  4036. "chrome",
  4037. "chrome/installer/mac"
  4038. ],
  4039. "isolated_scripts": [
  4040. {
  4041. "isolate_name": "chrome_sizes",
  4042. "merge": {
  4043. "script": "//tools/perf/process_perf_results.py"
  4044. },
  4045. "name": "chrome_sizes",
  4046. "resultdb": {
  4047. "enable": true,
  4048. "has_native_resultdb_integration": true
  4049. },
  4050. "swarming": {
  4051. "can_use_on_swarming_builders": true,
  4052. "dimension_sets": [
  4053. {
  4054. "cpu": "x86-64",
  4055. "os": "Mac-10.15",
  4056. "pool": "chrome.tests"
  4057. }
  4058. ],
  4059. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  4060. },
  4061. "test_id_prefix": "ninja://chrome/test:chrome_sizes/"
  4062. },
  4063. {
  4064. "args": [
  4065. "--git-revision=${got_revision}"
  4066. ],
  4067. "isolate_name": "variations_smoke_tests",
  4068. "merge": {
  4069. "args": [],
  4070. "script": "//testing/merge_scripts/standard_isolated_script_merge.py"
  4071. },
  4072. "name": "variations_smoke_tests",
  4073. "precommit_args": [
  4074. "--gerrit-issue=${patch_issue}",
  4075. "--gerrit-patchset=${patch_set}",
  4076. "--buildbucket-id=${buildbucket_build_id}"
  4077. ],
  4078. "resultdb": {
  4079. "enable": true,
  4080. "result_format": "single"
  4081. },
  4082. "swarming": {
  4083. "can_use_on_swarming_builders": true,
  4084. "dimension_sets": [
  4085. {
  4086. "cpu": "x86-64",
  4087. "os": "Mac-10.15",
  4088. "pool": "chrome.tests"
  4089. }
  4090. ],
  4091. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  4092. },
  4093. "test_id_prefix": "ninja://chrome/test:variations_smoke_tests/"
  4094. }
  4095. ]
  4096. },
  4097. "win-chrome": {
  4098. "additional_compile_targets": [
  4099. "chrome",
  4100. "chrome_official_builder"
  4101. ],
  4102. "gtest_tests": [
  4103. {
  4104. "merge": {
  4105. "args": [],
  4106. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  4107. },
  4108. "swarming": {
  4109. "can_use_on_swarming_builders": true,
  4110. "dimension_sets": [
  4111. {
  4112. "os": "Windows-10-19042",
  4113. "pool": "chrome.tests"
  4114. }
  4115. ],
  4116. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  4117. },
  4118. "test": "base_unittests",
  4119. "test_id_prefix": "ninja://base:base_unittests/"
  4120. }
  4121. ],
  4122. "isolated_scripts": [
  4123. {
  4124. "isolate_name": "chrome_sizes",
  4125. "merge": {
  4126. "script": "//tools/perf/process_perf_results.py"
  4127. },
  4128. "name": "chrome_sizes",
  4129. "resultdb": {
  4130. "enable": true,
  4131. "has_native_resultdb_integration": true
  4132. },
  4133. "swarming": {
  4134. "can_use_on_swarming_builders": true,
  4135. "dimension_sets": [
  4136. {
  4137. "os": "Windows-10-19042",
  4138. "pool": "chrome.tests"
  4139. }
  4140. ],
  4141. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  4142. },
  4143. "test_id_prefix": "ninja://chrome/test:chrome_sizes/"
  4144. },
  4145. {
  4146. "args": [
  4147. "--git-revision=${got_revision}"
  4148. ],
  4149. "experiment_percentage": 100,
  4150. "isolate_name": "variations_smoke_tests",
  4151. "merge": {
  4152. "args": [],
  4153. "script": "//testing/merge_scripts/standard_isolated_script_merge.py"
  4154. },
  4155. "name": "variations_smoke_tests",
  4156. "precommit_args": [
  4157. "--gerrit-issue=${patch_issue}",
  4158. "--gerrit-patchset=${patch_set}",
  4159. "--buildbucket-id=${buildbucket_build_id}"
  4160. ],
  4161. "resultdb": {
  4162. "enable": true,
  4163. "result_format": "single"
  4164. },
  4165. "swarming": {
  4166. "can_use_on_swarming_builders": true,
  4167. "dimension_sets": [
  4168. {
  4169. "os": "Windows-10-19042",
  4170. "pool": "chrome.tests.finch"
  4171. }
  4172. ],
  4173. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  4174. },
  4175. "test_id_prefix": "ninja://chrome/test:variations_smoke_tests/"
  4176. }
  4177. ]
  4178. },
  4179. "win64-chrome": {
  4180. "additional_compile_targets": [
  4181. "chrome",
  4182. "chrome_official_builder"
  4183. ],
  4184. "isolated_scripts": [
  4185. {
  4186. "isolate_name": "chrome_sizes",
  4187. "merge": {
  4188. "script": "//tools/perf/process_perf_results.py"
  4189. },
  4190. "name": "chrome_sizes",
  4191. "resultdb": {
  4192. "enable": true,
  4193. "has_native_resultdb_integration": true
  4194. },
  4195. "swarming": {
  4196. "can_use_on_swarming_builders": true,
  4197. "dimension_sets": [
  4198. {
  4199. "os": "Windows-10-19042",
  4200. "pool": "chrome.tests"
  4201. }
  4202. ],
  4203. "service_account": "chrome-tester@chops-service-accounts.iam.gserviceaccount.com"
  4204. },
  4205. "test_id_prefix": "ninja://chrome/test:chrome_sizes/"
  4206. }
  4207. ]
  4208. }
  4209. }