chromium.gpu.json 133 KB

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