client.v8.fyi.json 76 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316
  1. {
  2. "AAAAA1 AUTOGENERATED FILE DO NOT EDIT": {},
  3. "AAAAA2 See generate_buildbot_json.py to make changes": {},
  4. "Android V8 FYI 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. "dimension_sets": [
  36. {
  37. "device_os": "MMB29Q",
  38. "device_os_type": "userdebug",
  39. "device_type": "bullhead",
  40. "os": "Android"
  41. }
  42. ],
  43. "idempotent": false,
  44. "service_account": "chromium-tester@chops-service-accounts.iam.gserviceaccount.com"
  45. },
  46. "test_id_prefix": "ninja://chrome/test:telemetry_gpu_integration_test_android_chrome/"
  47. },
  48. {
  49. "args": [
  50. "gpu_process",
  51. "--show-stdout",
  52. "--browser=android-chromium",
  53. "--passthrough",
  54. "-v",
  55. "--extra-browser-args=--enable-logging=stderr --js-flags=--expose-gc"
  56. ],
  57. "isolate_name": "telemetry_gpu_integration_test_android_chrome",
  58. "merge": {
  59. "args": [],
  60. "script": "//testing/merge_scripts/standard_isolated_script_merge.py"
  61. },
  62. "name": "gpu_process_launch_tests",
  63. "resultdb": {
  64. "enable": true,
  65. "has_native_resultdb_integration": true
  66. },
  67. "should_retry_with_patch": false,
  68. "swarming": {
  69. "can_use_on_swarming_builders": true,
  70. "cipd_packages": [
  71. {
  72. "cipd_package": "infra/tools/luci/logdog/butler/${platform}",
  73. "location": "bin",
  74. "revision": "git_revision:ff387eadf445b24c935f1cf7d6ddd279f8a6b04c"
  75. }
  76. ],
  77. "dimension_sets": [
  78. {
  79. "device_os": "MMB29Q",
  80. "device_os_type": "userdebug",
  81. "device_type": "bullhead",
  82. "os": "Android"
  83. }
  84. ],
  85. "idempotent": false,
  86. "service_account": "chromium-tester@chops-service-accounts.iam.gserviceaccount.com"
  87. },
  88. "test_id_prefix": "ninja://chrome/test:telemetry_gpu_integration_test_android_chrome/"
  89. },
  90. {
  91. "args": [
  92. "hardware_accelerated_feature",
  93. "--show-stdout",
  94. "--browser=android-chromium",
  95. "--passthrough",
  96. "-v",
  97. "--extra-browser-args=--enable-logging=stderr --js-flags=--expose-gc"
  98. ],
  99. "isolate_name": "telemetry_gpu_integration_test_android_chrome",
  100. "merge": {
  101. "args": [],
  102. "script": "//testing/merge_scripts/standard_isolated_script_merge.py"
  103. },
  104. "name": "hardware_accelerated_feature_tests",
  105. "resultdb": {
  106. "enable": true,
  107. "has_native_resultdb_integration": true
  108. },
  109. "should_retry_with_patch": false,
  110. "swarming": {
  111. "can_use_on_swarming_builders": true,
  112. "cipd_packages": [
  113. {
  114. "cipd_package": "infra/tools/luci/logdog/butler/${platform}",
  115. "location": "bin",
  116. "revision": "git_revision:ff387eadf445b24c935f1cf7d6ddd279f8a6b04c"
  117. }
  118. ],
  119. "dimension_sets": [
  120. {
  121. "device_os": "MMB29Q",
  122. "device_os_type": "userdebug",
  123. "device_type": "bullhead",
  124. "os": "Android"
  125. }
  126. ],
  127. "idempotent": false,
  128. "service_account": "chromium-tester@chops-service-accounts.iam.gserviceaccount.com"
  129. },
  130. "test_id_prefix": "ninja://chrome/test:telemetry_gpu_integration_test_android_chrome/"
  131. },
  132. {
  133. "args": [
  134. "maps",
  135. "--show-stdout",
  136. "--browser=android-chromium",
  137. "--passthrough",
  138. "-v",
  139. "--extra-browser-args=--enable-logging=stderr --js-flags=--expose-gc --use-cmd-decoder=validating --force-online-connection-state-for-indicator",
  140. "--dont-restore-color-profile-after-test",
  141. "--test-machine-name",
  142. "${buildername}",
  143. "--git-revision=${got_cr_revision}"
  144. ],
  145. "isolate_name": "telemetry_gpu_integration_test_android_chrome",
  146. "merge": {
  147. "args": [],
  148. "script": "//testing/merge_scripts/standard_isolated_script_merge.py"
  149. },
  150. "name": "maps_pixel_validating_test",
  151. "precommit_args": [
  152. "--gerrit-issue=${patch_issue}",
  153. "--gerrit-patchset=${patch_set}",
  154. "--buildbucket-id=${buildbucket_build_id}"
  155. ],
  156. "resultdb": {
  157. "enable": true,
  158. "has_native_resultdb_integration": true
  159. },
  160. "should_retry_with_patch": false,
  161. "swarming": {
  162. "can_use_on_swarming_builders": true,
  163. "cipd_packages": [
  164. {
  165. "cipd_package": "infra/tools/luci/logdog/butler/${platform}",
  166. "location": "bin",
  167. "revision": "git_revision:ff387eadf445b24c935f1cf7d6ddd279f8a6b04c"
  168. }
  169. ],
  170. "dimension_sets": [
  171. {
  172. "device_os": "MMB29Q",
  173. "device_os_type": "userdebug",
  174. "device_type": "bullhead",
  175. "os": "Android"
  176. }
  177. ],
  178. "idempotent": false,
  179. "service_account": "chromium-tester@chops-service-accounts.iam.gserviceaccount.com"
  180. },
  181. "test_id_prefix": "ninja://chrome/test:telemetry_gpu_integration_test_android_chrome/"
  182. },
  183. {
  184. "args": [
  185. "pixel",
  186. "--show-stdout",
  187. "--browser=android-chromium",
  188. "--passthrough",
  189. "-v",
  190. "--extra-browser-args=--enable-logging=stderr --js-flags=--expose-gc --use-cmd-decoder=validating --force-online-connection-state-for-indicator",
  191. "--dont-restore-color-profile-after-test",
  192. "--test-machine-name",
  193. "${buildername}",
  194. "--git-revision=${got_cr_revision}"
  195. ],
  196. "isolate_name": "telemetry_gpu_integration_test_android_chrome",
  197. "merge": {
  198. "args": [],
  199. "script": "//testing/merge_scripts/standard_isolated_script_merge.py"
  200. },
  201. "name": "pixel_skia_gold_validating_test",
  202. "precommit_args": [
  203. "--gerrit-issue=${patch_issue}",
  204. "--gerrit-patchset=${patch_set}",
  205. "--buildbucket-id=${buildbucket_build_id}"
  206. ],
  207. "resultdb": {
  208. "enable": true,
  209. "has_native_resultdb_integration": true
  210. },
  211. "should_retry_with_patch": false,
  212. "swarming": {
  213. "can_use_on_swarming_builders": true,
  214. "cipd_packages": [
  215. {
  216. "cipd_package": "infra/tools/luci/logdog/butler/${platform}",
  217. "location": "bin",
  218. "revision": "git_revision:ff387eadf445b24c935f1cf7d6ddd279f8a6b04c"
  219. }
  220. ],
  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. "screenshot_sync",
  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. ],
  244. "isolate_name": "telemetry_gpu_integration_test_android_chrome",
  245. "merge": {
  246. "args": [],
  247. "script": "//testing/merge_scripts/standard_isolated_script_merge.py"
  248. },
  249. "name": "screenshot_sync_validating_tests",
  250. "resultdb": {
  251. "enable": true,
  252. "has_native_resultdb_integration": true
  253. },
  254. "should_retry_with_patch": false,
  255. "swarming": {
  256. "can_use_on_swarming_builders": true,
  257. "cipd_packages": [
  258. {
  259. "cipd_package": "infra/tools/luci/logdog/butler/${platform}",
  260. "location": "bin",
  261. "revision": "git_revision:ff387eadf445b24c935f1cf7d6ddd279f8a6b04c"
  262. }
  263. ],
  264. "dimension_sets": [
  265. {
  266. "device_os": "MMB29Q",
  267. "device_os_type": "userdebug",
  268. "device_type": "bullhead",
  269. "os": "Android"
  270. }
  271. ],
  272. "idempotent": false,
  273. "service_account": "chromium-tester@chops-service-accounts.iam.gserviceaccount.com"
  274. },
  275. "test_id_prefix": "ninja://chrome/test:telemetry_gpu_integration_test_android_chrome/"
  276. },
  277. {
  278. "args": [
  279. "trace_test",
  280. "--show-stdout",
  281. "--browser=android-chromium",
  282. "--passthrough",
  283. "-v",
  284. "--extra-browser-args=--enable-logging=stderr --js-flags=--expose-gc"
  285. ],
  286. "isolate_name": "telemetry_gpu_integration_test_android_chrome",
  287. "merge": {
  288. "args": [],
  289. "script": "//testing/merge_scripts/standard_isolated_script_merge.py"
  290. },
  291. "name": "trace_test",
  292. "resultdb": {
  293. "enable": true,
  294. "has_native_resultdb_integration": true
  295. },
  296. "should_retry_with_patch": false,
  297. "swarming": {
  298. "can_use_on_swarming_builders": true,
  299. "cipd_packages": [
  300. {
  301. "cipd_package": "infra/tools/luci/logdog/butler/${platform}",
  302. "location": "bin",
  303. "revision": "git_revision:ff387eadf445b24c935f1cf7d6ddd279f8a6b04c"
  304. }
  305. ],
  306. "dimension_sets": [
  307. {
  308. "device_os": "MMB29Q",
  309. "device_os_type": "userdebug",
  310. "device_type": "bullhead",
  311. "os": "Android"
  312. }
  313. ],
  314. "idempotent": false,
  315. "service_account": "chromium-tester@chops-service-accounts.iam.gserviceaccount.com"
  316. },
  317. "test_id_prefix": "ninja://chrome/test:telemetry_gpu_integration_test_android_chrome/"
  318. },
  319. {
  320. "args": [
  321. "webgl_conformance",
  322. "--show-stdout",
  323. "--browser=android-chromium",
  324. "--passthrough",
  325. "-v",
  326. "--extra-browser-args=--enable-logging=stderr --js-flags=--expose-gc --use-gl=angle --use-angle=gles --use-cmd-decoder=passthrough --force_high_performance_gpu",
  327. "--read-abbreviated-json-results-from=../../content/test/data/gpu/webgl_conformance_tests_output.json",
  328. "--jobs=1"
  329. ],
  330. "isolate_name": "telemetry_gpu_integration_test_android_chrome",
  331. "merge": {
  332. "args": [],
  333. "script": "//testing/merge_scripts/standard_isolated_script_merge.py"
  334. },
  335. "name": "webgl_conformance_gles_passthrough_tests",
  336. "resultdb": {
  337. "enable": true,
  338. "has_native_resultdb_integration": true
  339. },
  340. "should_retry_with_patch": false,
  341. "swarming": {
  342. "can_use_on_swarming_builders": true,
  343. "cipd_packages": [
  344. {
  345. "cipd_package": "infra/tools/luci/logdog/butler/${platform}",
  346. "location": "bin",
  347. "revision": "git_revision:ff387eadf445b24c935f1cf7d6ddd279f8a6b04c"
  348. }
  349. ],
  350. "dimension_sets": [
  351. {
  352. "device_os": "MMB29Q",
  353. "device_os_type": "userdebug",
  354. "device_type": "bullhead",
  355. "os": "Android"
  356. }
  357. ],
  358. "idempotent": false,
  359. "service_account": "chromium-tester@chops-service-accounts.iam.gserviceaccount.com",
  360. "shards": 6
  361. },
  362. "test_id_prefix": "ninja://chrome/test:telemetry_gpu_integration_test_android_chrome/"
  363. },
  364. {
  365. "args": [
  366. "webgl_conformance",
  367. "--show-stdout",
  368. "--browser=android-chromium",
  369. "--passthrough",
  370. "-v",
  371. "--extra-browser-args=--enable-logging=stderr --js-flags=--expose-gc --use-cmd-decoder=validating --force_high_performance_gpu",
  372. "--read-abbreviated-json-results-from=../../content/test/data/gpu/webgl_conformance_tests_output.json",
  373. "--jobs=1"
  374. ],
  375. "isolate_name": "telemetry_gpu_integration_test_android_chrome",
  376. "merge": {
  377. "args": [],
  378. "script": "//testing/merge_scripts/standard_isolated_script_merge.py"
  379. },
  380. "name": "webgl_conformance_validating_tests",
  381. "resultdb": {
  382. "enable": true,
  383. "has_native_resultdb_integration": true
  384. },
  385. "should_retry_with_patch": false,
  386. "swarming": {
  387. "can_use_on_swarming_builders": true,
  388. "cipd_packages": [
  389. {
  390. "cipd_package": "infra/tools/luci/logdog/butler/${platform}",
  391. "location": "bin",
  392. "revision": "git_revision:ff387eadf445b24c935f1cf7d6ddd279f8a6b04c"
  393. }
  394. ],
  395. "dimension_sets": [
  396. {
  397. "device_os": "MMB29Q",
  398. "device_os_type": "userdebug",
  399. "device_type": "bullhead",
  400. "os": "Android"
  401. }
  402. ],
  403. "idempotent": false,
  404. "service_account": "chromium-tester@chops-service-accounts.iam.gserviceaccount.com",
  405. "shards": 6
  406. },
  407. "test_id_prefix": "ninja://chrome/test:telemetry_gpu_integration_test_android_chrome/"
  408. }
  409. ]
  410. },
  411. "Linux ASAN Builder": {
  412. "additional_compile_targets": [
  413. "extensions_browsertests",
  414. "net_unittests",
  415. "unit_tests"
  416. ]
  417. },
  418. "Linux V8 FYI Release (NVIDIA)": {
  419. "isolated_scripts": [
  420. {
  421. "args": [
  422. "context_lost",
  423. "--show-stdout",
  424. "--browser=release",
  425. "--passthrough",
  426. "-v",
  427. "--extra-browser-args=--enable-logging=stderr --js-flags=--expose-gc --use-cmd-decoder=passthrough --use-gl=angle"
  428. ],
  429. "isolate_name": "telemetry_gpu_integration_test",
  430. "merge": {
  431. "args": [],
  432. "script": "//testing/merge_scripts/standard_isolated_script_merge.py"
  433. },
  434. "name": "context_lost_passthrough_tests",
  435. "resultdb": {
  436. "enable": true,
  437. "has_native_resultdb_integration": true
  438. },
  439. "should_retry_with_patch": false,
  440. "swarming": {
  441. "can_use_on_swarming_builders": true,
  442. "dimension_sets": [
  443. {
  444. "gpu": "10de:2184-440.100",
  445. "os": "Ubuntu-18.04.5|Ubuntu-18.04.6",
  446. "pool": "chromium.tests.gpu"
  447. }
  448. ],
  449. "idempotent": false,
  450. "service_account": "chromium-tester@chops-service-accounts.iam.gserviceaccount.com"
  451. },
  452. "test_id_prefix": "ninja://chrome/test:telemetry_gpu_integration_test/"
  453. },
  454. {
  455. "args": [
  456. "gpu_process",
  457. "--show-stdout",
  458. "--browser=release",
  459. "--passthrough",
  460. "-v",
  461. "--extra-browser-args=--enable-logging=stderr --js-flags=--expose-gc"
  462. ],
  463. "isolate_name": "telemetry_gpu_integration_test",
  464. "merge": {
  465. "args": [],
  466. "script": "//testing/merge_scripts/standard_isolated_script_merge.py"
  467. },
  468. "name": "gpu_process_launch_tests",
  469. "resultdb": {
  470. "enable": true,
  471. "has_native_resultdb_integration": true
  472. },
  473. "should_retry_with_patch": false,
  474. "swarming": {
  475. "can_use_on_swarming_builders": true,
  476. "dimension_sets": [
  477. {
  478. "gpu": "10de:2184-440.100",
  479. "os": "Ubuntu-18.04.5|Ubuntu-18.04.6",
  480. "pool": "chromium.tests.gpu"
  481. }
  482. ],
  483. "idempotent": false,
  484. "service_account": "chromium-tester@chops-service-accounts.iam.gserviceaccount.com"
  485. },
  486. "test_id_prefix": "ninja://chrome/test:telemetry_gpu_integration_test/"
  487. },
  488. {
  489. "args": [
  490. "hardware_accelerated_feature",
  491. "--show-stdout",
  492. "--browser=release",
  493. "--passthrough",
  494. "-v",
  495. "--extra-browser-args=--enable-logging=stderr --js-flags=--expose-gc"
  496. ],
  497. "isolate_name": "telemetry_gpu_integration_test",
  498. "merge": {
  499. "args": [],
  500. "script": "//testing/merge_scripts/standard_isolated_script_merge.py"
  501. },
  502. "name": "hardware_accelerated_feature_tests",
  503. "resultdb": {
  504. "enable": true,
  505. "has_native_resultdb_integration": true
  506. },
  507. "should_retry_with_patch": false,
  508. "swarming": {
  509. "can_use_on_swarming_builders": true,
  510. "dimension_sets": [
  511. {
  512. "gpu": "10de:2184-440.100",
  513. "os": "Ubuntu-18.04.5|Ubuntu-18.04.6",
  514. "pool": "chromium.tests.gpu"
  515. }
  516. ],
  517. "idempotent": false,
  518. "service_account": "chromium-tester@chops-service-accounts.iam.gserviceaccount.com"
  519. },
  520. "test_id_prefix": "ninja://chrome/test:telemetry_gpu_integration_test/"
  521. },
  522. {
  523. "args": [
  524. "maps",
  525. "--show-stdout",
  526. "--browser=release",
  527. "--passthrough",
  528. "-v",
  529. "--extra-browser-args=--enable-logging=stderr --js-flags=--expose-gc --use-cmd-decoder=passthrough --use-gl=angle",
  530. "--dont-restore-color-profile-after-test",
  531. "--test-machine-name",
  532. "${buildername}",
  533. "--git-revision=${got_cr_revision}"
  534. ],
  535. "isolate_name": "telemetry_gpu_integration_test",
  536. "merge": {
  537. "args": [],
  538. "script": "//testing/merge_scripts/standard_isolated_script_merge.py"
  539. },
  540. "name": "maps_pixel_passthrough_test",
  541. "precommit_args": [
  542. "--gerrit-issue=${patch_issue}",
  543. "--gerrit-patchset=${patch_set}",
  544. "--buildbucket-id=${buildbucket_build_id}"
  545. ],
  546. "resultdb": {
  547. "enable": true,
  548. "has_native_resultdb_integration": true
  549. },
  550. "should_retry_with_patch": false,
  551. "swarming": {
  552. "can_use_on_swarming_builders": true,
  553. "dimension_sets": [
  554. {
  555. "gpu": "10de:2184-440.100",
  556. "os": "Ubuntu-18.04.5|Ubuntu-18.04.6",
  557. "pool": "chromium.tests.gpu"
  558. }
  559. ],
  560. "idempotent": false,
  561. "service_account": "chromium-tester@chops-service-accounts.iam.gserviceaccount.com"
  562. },
  563. "test_id_prefix": "ninja://chrome/test:telemetry_gpu_integration_test/"
  564. },
  565. {
  566. "args": [
  567. "pixel",
  568. "--show-stdout",
  569. "--browser=release",
  570. "--passthrough",
  571. "-v",
  572. "--extra-browser-args=--enable-logging=stderr --js-flags=--expose-gc --use-cmd-decoder=passthrough --use-gl=angle",
  573. "--dont-restore-color-profile-after-test",
  574. "--test-machine-name",
  575. "${buildername}",
  576. "--git-revision=${got_cr_revision}"
  577. ],
  578. "isolate_name": "telemetry_gpu_integration_test",
  579. "merge": {
  580. "args": [],
  581. "script": "//testing/merge_scripts/standard_isolated_script_merge.py"
  582. },
  583. "name": "pixel_skia_gold_passthrough_test",
  584. "precommit_args": [
  585. "--gerrit-issue=${patch_issue}",
  586. "--gerrit-patchset=${patch_set}",
  587. "--buildbucket-id=${buildbucket_build_id}"
  588. ],
  589. "resultdb": {
  590. "enable": true,
  591. "has_native_resultdb_integration": true
  592. },
  593. "should_retry_with_patch": false,
  594. "swarming": {
  595. "can_use_on_swarming_builders": true,
  596. "dimension_sets": [
  597. {
  598. "gpu": "10de:2184-440.100",
  599. "os": "Ubuntu-18.04.5|Ubuntu-18.04.6",
  600. "pool": "chromium.tests.gpu"
  601. }
  602. ],
  603. "idempotent": false,
  604. "service_account": "chromium-tester@chops-service-accounts.iam.gserviceaccount.com"
  605. },
  606. "test_id_prefix": "ninja://chrome/test:telemetry_gpu_integration_test/"
  607. },
  608. {
  609. "args": [
  610. "screenshot_sync",
  611. "--show-stdout",
  612. "--browser=release",
  613. "--passthrough",
  614. "-v",
  615. "--extra-browser-args=--enable-logging=stderr --js-flags=--expose-gc --use-cmd-decoder=passthrough --use-gl=angle",
  616. "--dont-restore-color-profile-after-test"
  617. ],
  618. "isolate_name": "telemetry_gpu_integration_test",
  619. "merge": {
  620. "args": [],
  621. "script": "//testing/merge_scripts/standard_isolated_script_merge.py"
  622. },
  623. "name": "screenshot_sync_passthrough_tests",
  624. "resultdb": {
  625. "enable": true,
  626. "has_native_resultdb_integration": true
  627. },
  628. "should_retry_with_patch": false,
  629. "swarming": {
  630. "can_use_on_swarming_builders": true,
  631. "dimension_sets": [
  632. {
  633. "gpu": "10de:2184-440.100",
  634. "os": "Ubuntu-18.04.5|Ubuntu-18.04.6",
  635. "pool": "chromium.tests.gpu"
  636. }
  637. ],
  638. "idempotent": false,
  639. "service_account": "chromium-tester@chops-service-accounts.iam.gserviceaccount.com"
  640. },
  641. "test_id_prefix": "ninja://chrome/test:telemetry_gpu_integration_test/"
  642. },
  643. {
  644. "args": [
  645. "trace_test",
  646. "--show-stdout",
  647. "--browser=release",
  648. "--passthrough",
  649. "-v",
  650. "--extra-browser-args=--enable-logging=stderr --js-flags=--expose-gc"
  651. ],
  652. "isolate_name": "telemetry_gpu_integration_test",
  653. "merge": {
  654. "args": [],
  655. "script": "//testing/merge_scripts/standard_isolated_script_merge.py"
  656. },
  657. "name": "trace_test",
  658. "resultdb": {
  659. "enable": true,
  660. "has_native_resultdb_integration": true
  661. },
  662. "should_retry_with_patch": false,
  663. "swarming": {
  664. "can_use_on_swarming_builders": true,
  665. "dimension_sets": [
  666. {
  667. "gpu": "10de:2184-440.100",
  668. "os": "Ubuntu-18.04.5|Ubuntu-18.04.6",
  669. "pool": "chromium.tests.gpu"
  670. }
  671. ],
  672. "idempotent": false,
  673. "service_account": "chromium-tester@chops-service-accounts.iam.gserviceaccount.com"
  674. },
  675. "test_id_prefix": "ninja://chrome/test:telemetry_gpu_integration_test/"
  676. },
  677. {
  678. "args": [
  679. "webgl_conformance",
  680. "--show-stdout",
  681. "--browser=release",
  682. "--passthrough",
  683. "-v",
  684. "--extra-browser-args=--enable-logging=stderr --js-flags=--expose-gc --force_high_performance_gpu",
  685. "--webgl-conformance-version=2.0.1",
  686. "--read-abbreviated-json-results-from=../../content/test/data/gpu/webgl2_conformance_tests_output.json",
  687. "--jobs=4"
  688. ],
  689. "isolate_name": "telemetry_gpu_integration_test",
  690. "merge": {
  691. "args": [],
  692. "script": "//testing/merge_scripts/standard_isolated_script_merge.py"
  693. },
  694. "name": "webgl2_conformance_tests",
  695. "resultdb": {
  696. "enable": true,
  697. "has_native_resultdb_integration": true
  698. },
  699. "should_retry_with_patch": false,
  700. "swarming": {
  701. "can_use_on_swarming_builders": true,
  702. "dimension_sets": [
  703. {
  704. "gpu": "10de:2184-440.100",
  705. "os": "Ubuntu-18.04.5|Ubuntu-18.04.6",
  706. "pool": "chromium.tests.gpu"
  707. }
  708. ],
  709. "idempotent": false,
  710. "service_account": "chromium-tester@chops-service-accounts.iam.gserviceaccount.com",
  711. "shards": 20
  712. },
  713. "test_id_prefix": "ninja://chrome/test:telemetry_gpu_integration_test/"
  714. },
  715. {
  716. "args": [
  717. "webgl_conformance",
  718. "--show-stdout",
  719. "--browser=release",
  720. "--passthrough",
  721. "-v",
  722. "--extra-browser-args=--enable-logging=stderr --js-flags=--expose-gc --force_high_performance_gpu",
  723. "--read-abbreviated-json-results-from=../../content/test/data/gpu/webgl_conformance_tests_output.json",
  724. "--jobs=4"
  725. ],
  726. "isolate_name": "telemetry_gpu_integration_test",
  727. "merge": {
  728. "args": [],
  729. "script": "//testing/merge_scripts/standard_isolated_script_merge.py"
  730. },
  731. "name": "webgl_conformance_tests",
  732. "resultdb": {
  733. "enable": true,
  734. "has_native_resultdb_integration": true
  735. },
  736. "should_retry_with_patch": false,
  737. "swarming": {
  738. "can_use_on_swarming_builders": true,
  739. "dimension_sets": [
  740. {
  741. "gpu": "10de:2184-440.100",
  742. "os": "Ubuntu-18.04.5|Ubuntu-18.04.6",
  743. "pool": "chromium.tests.gpu"
  744. }
  745. ],
  746. "idempotent": false,
  747. "service_account": "chromium-tester@chops-service-accounts.iam.gserviceaccount.com",
  748. "shards": 2
  749. },
  750. "test_id_prefix": "ninja://chrome/test:telemetry_gpu_integration_test/"
  751. }
  752. ]
  753. },
  754. "Linux V8 FYI Release - pointer compression (NVIDIA)": {
  755. "isolated_scripts": [
  756. {
  757. "args": [
  758. "context_lost",
  759. "--show-stdout",
  760. "--browser=release",
  761. "--passthrough",
  762. "-v",
  763. "--extra-browser-args=--enable-logging=stderr --js-flags=--expose-gc --use-cmd-decoder=passthrough --use-gl=angle"
  764. ],
  765. "isolate_name": "telemetry_gpu_integration_test",
  766. "merge": {
  767. "args": [],
  768. "script": "//testing/merge_scripts/standard_isolated_script_merge.py"
  769. },
  770. "name": "context_lost_passthrough_tests",
  771. "resultdb": {
  772. "enable": true,
  773. "has_native_resultdb_integration": true
  774. },
  775. "should_retry_with_patch": false,
  776. "swarming": {
  777. "can_use_on_swarming_builders": true,
  778. "dimension_sets": [
  779. {
  780. "gpu": "10de:2184-440.100",
  781. "os": "Ubuntu-18.04.5|Ubuntu-18.04.6",
  782. "pool": "chromium.tests.gpu"
  783. }
  784. ],
  785. "idempotent": false,
  786. "service_account": "chromium-tester@chops-service-accounts.iam.gserviceaccount.com"
  787. },
  788. "test_id_prefix": "ninja://chrome/test:telemetry_gpu_integration_test/"
  789. },
  790. {
  791. "args": [
  792. "gpu_process",
  793. "--show-stdout",
  794. "--browser=release",
  795. "--passthrough",
  796. "-v",
  797. "--extra-browser-args=--enable-logging=stderr --js-flags=--expose-gc"
  798. ],
  799. "isolate_name": "telemetry_gpu_integration_test",
  800. "merge": {
  801. "args": [],
  802. "script": "//testing/merge_scripts/standard_isolated_script_merge.py"
  803. },
  804. "name": "gpu_process_launch_tests",
  805. "resultdb": {
  806. "enable": true,
  807. "has_native_resultdb_integration": true
  808. },
  809. "should_retry_with_patch": false,
  810. "swarming": {
  811. "can_use_on_swarming_builders": true,
  812. "dimension_sets": [
  813. {
  814. "gpu": "10de:2184-440.100",
  815. "os": "Ubuntu-18.04.5|Ubuntu-18.04.6",
  816. "pool": "chromium.tests.gpu"
  817. }
  818. ],
  819. "idempotent": false,
  820. "service_account": "chromium-tester@chops-service-accounts.iam.gserviceaccount.com"
  821. },
  822. "test_id_prefix": "ninja://chrome/test:telemetry_gpu_integration_test/"
  823. },
  824. {
  825. "args": [
  826. "hardware_accelerated_feature",
  827. "--show-stdout",
  828. "--browser=release",
  829. "--passthrough",
  830. "-v",
  831. "--extra-browser-args=--enable-logging=stderr --js-flags=--expose-gc"
  832. ],
  833. "isolate_name": "telemetry_gpu_integration_test",
  834. "merge": {
  835. "args": [],
  836. "script": "//testing/merge_scripts/standard_isolated_script_merge.py"
  837. },
  838. "name": "hardware_accelerated_feature_tests",
  839. "resultdb": {
  840. "enable": true,
  841. "has_native_resultdb_integration": true
  842. },
  843. "should_retry_with_patch": false,
  844. "swarming": {
  845. "can_use_on_swarming_builders": true,
  846. "dimension_sets": [
  847. {
  848. "gpu": "10de:2184-440.100",
  849. "os": "Ubuntu-18.04.5|Ubuntu-18.04.6",
  850. "pool": "chromium.tests.gpu"
  851. }
  852. ],
  853. "idempotent": false,
  854. "service_account": "chromium-tester@chops-service-accounts.iam.gserviceaccount.com"
  855. },
  856. "test_id_prefix": "ninja://chrome/test:telemetry_gpu_integration_test/"
  857. },
  858. {
  859. "args": [
  860. "maps",
  861. "--show-stdout",
  862. "--browser=release",
  863. "--passthrough",
  864. "-v",
  865. "--extra-browser-args=--enable-logging=stderr --js-flags=--expose-gc --use-cmd-decoder=passthrough --use-gl=angle",
  866. "--dont-restore-color-profile-after-test",
  867. "--test-machine-name",
  868. "${buildername}",
  869. "--git-revision=${got_cr_revision}"
  870. ],
  871. "isolate_name": "telemetry_gpu_integration_test",
  872. "merge": {
  873. "args": [],
  874. "script": "//testing/merge_scripts/standard_isolated_script_merge.py"
  875. },
  876. "name": "maps_pixel_passthrough_test",
  877. "precommit_args": [
  878. "--gerrit-issue=${patch_issue}",
  879. "--gerrit-patchset=${patch_set}",
  880. "--buildbucket-id=${buildbucket_build_id}"
  881. ],
  882. "resultdb": {
  883. "enable": true,
  884. "has_native_resultdb_integration": true
  885. },
  886. "should_retry_with_patch": false,
  887. "swarming": {
  888. "can_use_on_swarming_builders": true,
  889. "dimension_sets": [
  890. {
  891. "gpu": "10de:2184-440.100",
  892. "os": "Ubuntu-18.04.5|Ubuntu-18.04.6",
  893. "pool": "chromium.tests.gpu"
  894. }
  895. ],
  896. "idempotent": false,
  897. "service_account": "chromium-tester@chops-service-accounts.iam.gserviceaccount.com"
  898. },
  899. "test_id_prefix": "ninja://chrome/test:telemetry_gpu_integration_test/"
  900. },
  901. {
  902. "args": [
  903. "pixel",
  904. "--show-stdout",
  905. "--browser=release",
  906. "--passthrough",
  907. "-v",
  908. "--extra-browser-args=--enable-logging=stderr --js-flags=--expose-gc --use-cmd-decoder=passthrough --use-gl=angle",
  909. "--dont-restore-color-profile-after-test",
  910. "--test-machine-name",
  911. "${buildername}",
  912. "--git-revision=${got_cr_revision}"
  913. ],
  914. "isolate_name": "telemetry_gpu_integration_test",
  915. "merge": {
  916. "args": [],
  917. "script": "//testing/merge_scripts/standard_isolated_script_merge.py"
  918. },
  919. "name": "pixel_skia_gold_passthrough_test",
  920. "precommit_args": [
  921. "--gerrit-issue=${patch_issue}",
  922. "--gerrit-patchset=${patch_set}",
  923. "--buildbucket-id=${buildbucket_build_id}"
  924. ],
  925. "resultdb": {
  926. "enable": true,
  927. "has_native_resultdb_integration": true
  928. },
  929. "should_retry_with_patch": false,
  930. "swarming": {
  931. "can_use_on_swarming_builders": true,
  932. "dimension_sets": [
  933. {
  934. "gpu": "10de:2184-440.100",
  935. "os": "Ubuntu-18.04.5|Ubuntu-18.04.6",
  936. "pool": "chromium.tests.gpu"
  937. }
  938. ],
  939. "idempotent": false,
  940. "service_account": "chromium-tester@chops-service-accounts.iam.gserviceaccount.com"
  941. },
  942. "test_id_prefix": "ninja://chrome/test:telemetry_gpu_integration_test/"
  943. },
  944. {
  945. "args": [
  946. "screenshot_sync",
  947. "--show-stdout",
  948. "--browser=release",
  949. "--passthrough",
  950. "-v",
  951. "--extra-browser-args=--enable-logging=stderr --js-flags=--expose-gc --use-cmd-decoder=passthrough --use-gl=angle",
  952. "--dont-restore-color-profile-after-test"
  953. ],
  954. "isolate_name": "telemetry_gpu_integration_test",
  955. "merge": {
  956. "args": [],
  957. "script": "//testing/merge_scripts/standard_isolated_script_merge.py"
  958. },
  959. "name": "screenshot_sync_passthrough_tests",
  960. "resultdb": {
  961. "enable": true,
  962. "has_native_resultdb_integration": true
  963. },
  964. "should_retry_with_patch": false,
  965. "swarming": {
  966. "can_use_on_swarming_builders": true,
  967. "dimension_sets": [
  968. {
  969. "gpu": "10de:2184-440.100",
  970. "os": "Ubuntu-18.04.5|Ubuntu-18.04.6",
  971. "pool": "chromium.tests.gpu"
  972. }
  973. ],
  974. "idempotent": false,
  975. "service_account": "chromium-tester@chops-service-accounts.iam.gserviceaccount.com"
  976. },
  977. "test_id_prefix": "ninja://chrome/test:telemetry_gpu_integration_test/"
  978. },
  979. {
  980. "args": [
  981. "trace_test",
  982. "--show-stdout",
  983. "--browser=release",
  984. "--passthrough",
  985. "-v",
  986. "--extra-browser-args=--enable-logging=stderr --js-flags=--expose-gc"
  987. ],
  988. "isolate_name": "telemetry_gpu_integration_test",
  989. "merge": {
  990. "args": [],
  991. "script": "//testing/merge_scripts/standard_isolated_script_merge.py"
  992. },
  993. "name": "trace_test",
  994. "resultdb": {
  995. "enable": true,
  996. "has_native_resultdb_integration": true
  997. },
  998. "should_retry_with_patch": false,
  999. "swarming": {
  1000. "can_use_on_swarming_builders": true,
  1001. "dimension_sets": [
  1002. {
  1003. "gpu": "10de:2184-440.100",
  1004. "os": "Ubuntu-18.04.5|Ubuntu-18.04.6",
  1005. "pool": "chromium.tests.gpu"
  1006. }
  1007. ],
  1008. "idempotent": false,
  1009. "service_account": "chromium-tester@chops-service-accounts.iam.gserviceaccount.com"
  1010. },
  1011. "test_id_prefix": "ninja://chrome/test:telemetry_gpu_integration_test/"
  1012. },
  1013. {
  1014. "args": [
  1015. "webgl_conformance",
  1016. "--show-stdout",
  1017. "--browser=release",
  1018. "--passthrough",
  1019. "-v",
  1020. "--extra-browser-args=--enable-logging=stderr --js-flags=--expose-gc --force_high_performance_gpu",
  1021. "--webgl-conformance-version=2.0.1",
  1022. "--read-abbreviated-json-results-from=../../content/test/data/gpu/webgl2_conformance_tests_output.json",
  1023. "--jobs=4"
  1024. ],
  1025. "isolate_name": "telemetry_gpu_integration_test",
  1026. "merge": {
  1027. "args": [],
  1028. "script": "//testing/merge_scripts/standard_isolated_script_merge.py"
  1029. },
  1030. "name": "webgl2_conformance_tests",
  1031. "resultdb": {
  1032. "enable": true,
  1033. "has_native_resultdb_integration": true
  1034. },
  1035. "should_retry_with_patch": false,
  1036. "swarming": {
  1037. "can_use_on_swarming_builders": true,
  1038. "dimension_sets": [
  1039. {
  1040. "gpu": "10de:2184-440.100",
  1041. "os": "Ubuntu-18.04.5|Ubuntu-18.04.6",
  1042. "pool": "chromium.tests.gpu"
  1043. }
  1044. ],
  1045. "idempotent": false,
  1046. "service_account": "chromium-tester@chops-service-accounts.iam.gserviceaccount.com",
  1047. "shards": 20
  1048. },
  1049. "test_id_prefix": "ninja://chrome/test:telemetry_gpu_integration_test/"
  1050. },
  1051. {
  1052. "args": [
  1053. "webgl_conformance",
  1054. "--show-stdout",
  1055. "--browser=release",
  1056. "--passthrough",
  1057. "-v",
  1058. "--extra-browser-args=--enable-logging=stderr --js-flags=--expose-gc --force_high_performance_gpu",
  1059. "--read-abbreviated-json-results-from=../../content/test/data/gpu/webgl_conformance_tests_output.json",
  1060. "--jobs=4"
  1061. ],
  1062. "isolate_name": "telemetry_gpu_integration_test",
  1063. "merge": {
  1064. "args": [],
  1065. "script": "//testing/merge_scripts/standard_isolated_script_merge.py"
  1066. },
  1067. "name": "webgl_conformance_tests",
  1068. "resultdb": {
  1069. "enable": true,
  1070. "has_native_resultdb_integration": true
  1071. },
  1072. "should_retry_with_patch": false,
  1073. "swarming": {
  1074. "can_use_on_swarming_builders": true,
  1075. "dimension_sets": [
  1076. {
  1077. "gpu": "10de:2184-440.100",
  1078. "os": "Ubuntu-18.04.5|Ubuntu-18.04.6",
  1079. "pool": "chromium.tests.gpu"
  1080. }
  1081. ],
  1082. "idempotent": false,
  1083. "service_account": "chromium-tester@chops-service-accounts.iam.gserviceaccount.com",
  1084. "shards": 2
  1085. },
  1086. "test_id_prefix": "ninja://chrome/test:telemetry_gpu_integration_test/"
  1087. }
  1088. ]
  1089. },
  1090. "Mac V8 FYI Release (Intel)": {
  1091. "isolated_scripts": [
  1092. {
  1093. "args": [
  1094. "context_lost",
  1095. "--show-stdout",
  1096. "--browser=release",
  1097. "--passthrough",
  1098. "-v",
  1099. "--extra-browser-args=--enable-logging=stderr --js-flags=--expose-gc --use-cmd-decoder=passthrough --use-gl=angle"
  1100. ],
  1101. "isolate_name": "telemetry_gpu_integration_test",
  1102. "merge": {
  1103. "args": [],
  1104. "script": "//testing/merge_scripts/standard_isolated_script_merge.py"
  1105. },
  1106. "name": "context_lost_passthrough_tests",
  1107. "resultdb": {
  1108. "enable": true,
  1109. "has_native_resultdb_integration": true
  1110. },
  1111. "should_retry_with_patch": false,
  1112. "swarming": {
  1113. "can_use_on_swarming_builders": true,
  1114. "dimension_sets": [
  1115. {
  1116. "cpu": "x86-64",
  1117. "display_attached": "1",
  1118. "gpu": "8086:3e9b",
  1119. "os": "Mac-11.5.2|Mac-12.4"
  1120. }
  1121. ],
  1122. "idempotent": false,
  1123. "service_account": "chromium-tester@chops-service-accounts.iam.gserviceaccount.com"
  1124. },
  1125. "test_id_prefix": "ninja://chrome/test:telemetry_gpu_integration_test/"
  1126. },
  1127. {
  1128. "args": [
  1129. "gpu_process",
  1130. "--show-stdout",
  1131. "--browser=release",
  1132. "--passthrough",
  1133. "-v",
  1134. "--extra-browser-args=--enable-logging=stderr --js-flags=--expose-gc"
  1135. ],
  1136. "isolate_name": "telemetry_gpu_integration_test",
  1137. "merge": {
  1138. "args": [],
  1139. "script": "//testing/merge_scripts/standard_isolated_script_merge.py"
  1140. },
  1141. "name": "gpu_process_launch_tests",
  1142. "resultdb": {
  1143. "enable": true,
  1144. "has_native_resultdb_integration": true
  1145. },
  1146. "should_retry_with_patch": false,
  1147. "swarming": {
  1148. "can_use_on_swarming_builders": true,
  1149. "dimension_sets": [
  1150. {
  1151. "cpu": "x86-64",
  1152. "display_attached": "1",
  1153. "gpu": "8086:3e9b",
  1154. "os": "Mac-11.5.2|Mac-12.4"
  1155. }
  1156. ],
  1157. "idempotent": false,
  1158. "service_account": "chromium-tester@chops-service-accounts.iam.gserviceaccount.com"
  1159. },
  1160. "test_id_prefix": "ninja://chrome/test:telemetry_gpu_integration_test/"
  1161. },
  1162. {
  1163. "args": [
  1164. "hardware_accelerated_feature",
  1165. "--show-stdout",
  1166. "--browser=release",
  1167. "--passthrough",
  1168. "-v",
  1169. "--extra-browser-args=--enable-logging=stderr --js-flags=--expose-gc"
  1170. ],
  1171. "isolate_name": "telemetry_gpu_integration_test",
  1172. "merge": {
  1173. "args": [],
  1174. "script": "//testing/merge_scripts/standard_isolated_script_merge.py"
  1175. },
  1176. "name": "hardware_accelerated_feature_tests",
  1177. "resultdb": {
  1178. "enable": true,
  1179. "has_native_resultdb_integration": true
  1180. },
  1181. "should_retry_with_patch": false,
  1182. "swarming": {
  1183. "can_use_on_swarming_builders": true,
  1184. "dimension_sets": [
  1185. {
  1186. "cpu": "x86-64",
  1187. "display_attached": "1",
  1188. "gpu": "8086:3e9b",
  1189. "os": "Mac-11.5.2|Mac-12.4"
  1190. }
  1191. ],
  1192. "idempotent": false,
  1193. "service_account": "chromium-tester@chops-service-accounts.iam.gserviceaccount.com"
  1194. },
  1195. "test_id_prefix": "ninja://chrome/test:telemetry_gpu_integration_test/"
  1196. },
  1197. {
  1198. "args": [
  1199. "maps",
  1200. "--show-stdout",
  1201. "--browser=release",
  1202. "--passthrough",
  1203. "-v",
  1204. "--extra-browser-args=--enable-logging=stderr --js-flags=--expose-gc --use-cmd-decoder=passthrough --use-gl=angle",
  1205. "--dont-restore-color-profile-after-test",
  1206. "--test-machine-name",
  1207. "${buildername}",
  1208. "--git-revision=${got_cr_revision}"
  1209. ],
  1210. "isolate_name": "telemetry_gpu_integration_test",
  1211. "merge": {
  1212. "args": [],
  1213. "script": "//testing/merge_scripts/standard_isolated_script_merge.py"
  1214. },
  1215. "name": "maps_pixel_passthrough_test",
  1216. "precommit_args": [
  1217. "--gerrit-issue=${patch_issue}",
  1218. "--gerrit-patchset=${patch_set}",
  1219. "--buildbucket-id=${buildbucket_build_id}"
  1220. ],
  1221. "resultdb": {
  1222. "enable": true,
  1223. "has_native_resultdb_integration": true
  1224. },
  1225. "should_retry_with_patch": false,
  1226. "swarming": {
  1227. "can_use_on_swarming_builders": true,
  1228. "dimension_sets": [
  1229. {
  1230. "cpu": "x86-64",
  1231. "display_attached": "1",
  1232. "gpu": "8086:3e9b",
  1233. "os": "Mac-11.5.2|Mac-12.4"
  1234. }
  1235. ],
  1236. "idempotent": false,
  1237. "service_account": "chromium-tester@chops-service-accounts.iam.gserviceaccount.com"
  1238. },
  1239. "test_id_prefix": "ninja://chrome/test:telemetry_gpu_integration_test/"
  1240. },
  1241. {
  1242. "args": [
  1243. "pixel",
  1244. "--show-stdout",
  1245. "--browser=release",
  1246. "--passthrough",
  1247. "-v",
  1248. "--extra-browser-args=--enable-logging=stderr --js-flags=--expose-gc --use-cmd-decoder=passthrough --use-gl=angle",
  1249. "--dont-restore-color-profile-after-test",
  1250. "--test-machine-name",
  1251. "${buildername}",
  1252. "--git-revision=${got_cr_revision}"
  1253. ],
  1254. "isolate_name": "telemetry_gpu_integration_test",
  1255. "merge": {
  1256. "args": [],
  1257. "script": "//testing/merge_scripts/standard_isolated_script_merge.py"
  1258. },
  1259. "name": "pixel_skia_gold_passthrough_test",
  1260. "precommit_args": [
  1261. "--gerrit-issue=${patch_issue}",
  1262. "--gerrit-patchset=${patch_set}",
  1263. "--buildbucket-id=${buildbucket_build_id}"
  1264. ],
  1265. "resultdb": {
  1266. "enable": true,
  1267. "has_native_resultdb_integration": true
  1268. },
  1269. "should_retry_with_patch": false,
  1270. "swarming": {
  1271. "can_use_on_swarming_builders": true,
  1272. "dimension_sets": [
  1273. {
  1274. "cpu": "x86-64",
  1275. "display_attached": "1",
  1276. "gpu": "8086:3e9b",
  1277. "os": "Mac-11.5.2|Mac-12.4"
  1278. }
  1279. ],
  1280. "idempotent": false,
  1281. "service_account": "chromium-tester@chops-service-accounts.iam.gserviceaccount.com"
  1282. },
  1283. "test_id_prefix": "ninja://chrome/test:telemetry_gpu_integration_test/"
  1284. },
  1285. {
  1286. "args": [
  1287. "screenshot_sync",
  1288. "--show-stdout",
  1289. "--browser=release",
  1290. "--passthrough",
  1291. "-v",
  1292. "--extra-browser-args=--enable-logging=stderr --js-flags=--expose-gc --use-cmd-decoder=passthrough --use-gl=angle",
  1293. "--dont-restore-color-profile-after-test"
  1294. ],
  1295. "isolate_name": "telemetry_gpu_integration_test",
  1296. "merge": {
  1297. "args": [],
  1298. "script": "//testing/merge_scripts/standard_isolated_script_merge.py"
  1299. },
  1300. "name": "screenshot_sync_passthrough_tests",
  1301. "resultdb": {
  1302. "enable": true,
  1303. "has_native_resultdb_integration": true
  1304. },
  1305. "should_retry_with_patch": false,
  1306. "swarming": {
  1307. "can_use_on_swarming_builders": true,
  1308. "dimension_sets": [
  1309. {
  1310. "cpu": "x86-64",
  1311. "display_attached": "1",
  1312. "gpu": "8086:3e9b",
  1313. "os": "Mac-11.5.2|Mac-12.4"
  1314. }
  1315. ],
  1316. "idempotent": false,
  1317. "service_account": "chromium-tester@chops-service-accounts.iam.gserviceaccount.com"
  1318. },
  1319. "test_id_prefix": "ninja://chrome/test:telemetry_gpu_integration_test/"
  1320. },
  1321. {
  1322. "args": [
  1323. "trace_test",
  1324. "--show-stdout",
  1325. "--browser=release",
  1326. "--passthrough",
  1327. "-v",
  1328. "--extra-browser-args=--enable-logging=stderr --js-flags=--expose-gc"
  1329. ],
  1330. "isolate_name": "telemetry_gpu_integration_test",
  1331. "merge": {
  1332. "args": [],
  1333. "script": "//testing/merge_scripts/standard_isolated_script_merge.py"
  1334. },
  1335. "name": "trace_test",
  1336. "resultdb": {
  1337. "enable": true,
  1338. "has_native_resultdb_integration": true
  1339. },
  1340. "should_retry_with_patch": false,
  1341. "swarming": {
  1342. "can_use_on_swarming_builders": true,
  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. "idempotent": false,
  1352. "service_account": "chromium-tester@chops-service-accounts.iam.gserviceaccount.com"
  1353. },
  1354. "test_id_prefix": "ninja://chrome/test:telemetry_gpu_integration_test/"
  1355. },
  1356. {
  1357. "args": [
  1358. "webgl_conformance",
  1359. "--show-stdout",
  1360. "--browser=release",
  1361. "--passthrough",
  1362. "-v",
  1363. "--extra-browser-args=--enable-logging=stderr --js-flags=--expose-gc --force_high_performance_gpu",
  1364. "--webgl-conformance-version=2.0.1",
  1365. "--read-abbreviated-json-results-from=../../content/test/data/gpu/webgl2_conformance_tests_output.json",
  1366. "--jobs=4"
  1367. ],
  1368. "isolate_name": "telemetry_gpu_integration_test",
  1369. "merge": {
  1370. "args": [],
  1371. "script": "//testing/merge_scripts/standard_isolated_script_merge.py"
  1372. },
  1373. "name": "webgl2_conformance_tests",
  1374. "resultdb": {
  1375. "enable": true,
  1376. "has_native_resultdb_integration": true
  1377. },
  1378. "should_retry_with_patch": false,
  1379. "swarming": {
  1380. "can_use_on_swarming_builders": true,
  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. "shards": 20
  1392. },
  1393. "test_id_prefix": "ninja://chrome/test:telemetry_gpu_integration_test/"
  1394. },
  1395. {
  1396. "args": [
  1397. "webgl_conformance",
  1398. "--show-stdout",
  1399. "--browser=release",
  1400. "--passthrough",
  1401. "-v",
  1402. "--extra-browser-args=--enable-logging=stderr --js-flags=--expose-gc --force_high_performance_gpu",
  1403. "--read-abbreviated-json-results-from=../../content/test/data/gpu/webgl_conformance_tests_output.json",
  1404. "--jobs=4"
  1405. ],
  1406. "isolate_name": "telemetry_gpu_integration_test",
  1407. "merge": {
  1408. "args": [],
  1409. "script": "//testing/merge_scripts/standard_isolated_script_merge.py"
  1410. },
  1411. "name": "webgl_conformance_tests",
  1412. "resultdb": {
  1413. "enable": true,
  1414. "has_native_resultdb_integration": true
  1415. },
  1416. "should_retry_with_patch": false,
  1417. "swarming": {
  1418. "can_use_on_swarming_builders": true,
  1419. "dimension_sets": [
  1420. {
  1421. "cpu": "x86-64",
  1422. "display_attached": "1",
  1423. "gpu": "8086:3e9b",
  1424. "os": "Mac-11.5.2|Mac-12.4"
  1425. }
  1426. ],
  1427. "idempotent": false,
  1428. "service_account": "chromium-tester@chops-service-accounts.iam.gserviceaccount.com",
  1429. "shards": 2
  1430. },
  1431. "test_id_prefix": "ninja://chrome/test:telemetry_gpu_integration_test/"
  1432. }
  1433. ]
  1434. },
  1435. "V8 Android GN (dbg)": {
  1436. "additional_compile_targets": [
  1437. "chrome_public_apk",
  1438. "blink_tests",
  1439. "gin_unittests",
  1440. "net_unittests"
  1441. ]
  1442. },
  1443. "V8 Blink Linux": {
  1444. "additional_compile_targets": [
  1445. "blink_tests"
  1446. ],
  1447. "gtest_tests": [
  1448. {
  1449. "merge": {
  1450. "args": [],
  1451. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  1452. },
  1453. "name": "blink_unit_tests",
  1454. "swarming": {
  1455. "can_use_on_swarming_builders": true,
  1456. "dimension_sets": [
  1457. {
  1458. "os": "Ubuntu-18.04"
  1459. }
  1460. ],
  1461. "service_account": "chromium-tester@chops-service-accounts.iam.gserviceaccount.com"
  1462. },
  1463. "test": "blink_unittests",
  1464. "test_id_prefix": "ninja://third_party/blink/renderer/controller:blink_unittests/"
  1465. }
  1466. ],
  1467. "isolated_scripts": [
  1468. {
  1469. "args": [
  1470. "--num-retries=3",
  1471. "--write-run-histories-to=${ISOLATED_OUTDIR}/run_histories.json",
  1472. "--git-revision=${got_revision}"
  1473. ],
  1474. "check_flakiness_for_new_tests": false,
  1475. "isolate_name": "blink_web_tests",
  1476. "merge": {
  1477. "args": [
  1478. "--verbose"
  1479. ],
  1480. "script": "//third_party/blink/tools/merge_web_test_results.py"
  1481. },
  1482. "name": "blink_web_tests",
  1483. "precommit_args": [
  1484. "--gerrit-issue=${patch_issue}",
  1485. "--gerrit-patchset=${patch_set}",
  1486. "--buildbucket-id=${buildbucket_build_id}"
  1487. ],
  1488. "resultdb": {
  1489. "enable": true
  1490. },
  1491. "results_handler": "layout tests",
  1492. "swarming": {
  1493. "can_use_on_swarming_builders": true,
  1494. "dimension_sets": [
  1495. {
  1496. "os": "Ubuntu-18.04"
  1497. }
  1498. ],
  1499. "service_account": "chromium-tester@chops-service-accounts.iam.gserviceaccount.com",
  1500. "shards": 5
  1501. },
  1502. "test_id_prefix": "ninja://:blink_web_tests/"
  1503. },
  1504. {
  1505. "args": [
  1506. "--num-retries=3",
  1507. "--write-run-histories-to=${ISOLATED_OUTDIR}/run_histories.json",
  1508. "--git-revision=${got_revision}"
  1509. ],
  1510. "check_flakiness_for_new_tests": false,
  1511. "isolate_name": "blink_wpt_tests",
  1512. "merge": {
  1513. "args": [
  1514. "--verbose"
  1515. ],
  1516. "script": "//third_party/blink/tools/merge_web_test_results.py"
  1517. },
  1518. "name": "blink_wpt_tests",
  1519. "precommit_args": [
  1520. "--gerrit-issue=${patch_issue}",
  1521. "--gerrit-patchset=${patch_set}",
  1522. "--buildbucket-id=${buildbucket_build_id}"
  1523. ],
  1524. "resultdb": {
  1525. "enable": true
  1526. },
  1527. "results_handler": "layout tests",
  1528. "swarming": {
  1529. "can_use_on_swarming_builders": true,
  1530. "dimension_sets": [
  1531. {
  1532. "os": "Ubuntu-18.04"
  1533. }
  1534. ],
  1535. "service_account": "chromium-tester@chops-service-accounts.iam.gserviceaccount.com",
  1536. "shards": 7
  1537. },
  1538. "test_id_prefix": "ninja://:blink_wpt_tests/"
  1539. }
  1540. ]
  1541. },
  1542. "V8 Blink Linux Debug": {
  1543. "additional_compile_targets": [
  1544. "blink_tests"
  1545. ],
  1546. "gtest_tests": [
  1547. {
  1548. "merge": {
  1549. "args": [],
  1550. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  1551. },
  1552. "name": "blink_unit_tests",
  1553. "swarming": {
  1554. "can_use_on_swarming_builders": true,
  1555. "dimension_sets": [
  1556. {
  1557. "os": "Ubuntu-18.04"
  1558. }
  1559. ],
  1560. "service_account": "chromium-tester@chops-service-accounts.iam.gserviceaccount.com"
  1561. },
  1562. "test": "blink_unittests",
  1563. "test_id_prefix": "ninja://third_party/blink/renderer/controller:blink_unittests/"
  1564. }
  1565. ],
  1566. "isolated_scripts": [
  1567. {
  1568. "args": [
  1569. "--num-retries=3",
  1570. "--write-run-histories-to=${ISOLATED_OUTDIR}/run_histories.json",
  1571. "--git-revision=${got_revision}",
  1572. "-t",
  1573. "Debug",
  1574. "--release"
  1575. ],
  1576. "check_flakiness_for_new_tests": false,
  1577. "isolate_name": "blink_web_tests",
  1578. "merge": {
  1579. "args": [
  1580. "--verbose"
  1581. ],
  1582. "script": "//third_party/blink/tools/merge_web_test_results.py"
  1583. },
  1584. "name": "blink_web_tests",
  1585. "precommit_args": [
  1586. "--gerrit-issue=${patch_issue}",
  1587. "--gerrit-patchset=${patch_set}",
  1588. "--buildbucket-id=${buildbucket_build_id}"
  1589. ],
  1590. "resultdb": {
  1591. "enable": true
  1592. },
  1593. "results_handler": "layout tests",
  1594. "swarming": {
  1595. "can_use_on_swarming_builders": true,
  1596. "dimension_sets": [
  1597. {
  1598. "os": "Ubuntu-18.04"
  1599. }
  1600. ],
  1601. "service_account": "chromium-tester@chops-service-accounts.iam.gserviceaccount.com",
  1602. "shards": 5
  1603. },
  1604. "test_id_prefix": "ninja://:blink_web_tests/"
  1605. },
  1606. {
  1607. "args": [
  1608. "--num-retries=3",
  1609. "--write-run-histories-to=${ISOLATED_OUTDIR}/run_histories.json",
  1610. "--git-revision=${got_revision}",
  1611. "-t",
  1612. "Debug",
  1613. "--release"
  1614. ],
  1615. "check_flakiness_for_new_tests": false,
  1616. "isolate_name": "blink_wpt_tests",
  1617. "merge": {
  1618. "args": [
  1619. "--verbose"
  1620. ],
  1621. "script": "//third_party/blink/tools/merge_web_test_results.py"
  1622. },
  1623. "name": "blink_wpt_tests",
  1624. "precommit_args": [
  1625. "--gerrit-issue=${patch_issue}",
  1626. "--gerrit-patchset=${patch_set}",
  1627. "--buildbucket-id=${buildbucket_build_id}"
  1628. ],
  1629. "resultdb": {
  1630. "enable": true
  1631. },
  1632. "results_handler": "layout tests",
  1633. "swarming": {
  1634. "can_use_on_swarming_builders": true,
  1635. "dimension_sets": [
  1636. {
  1637. "os": "Ubuntu-18.04"
  1638. }
  1639. ],
  1640. "service_account": "chromium-tester@chops-service-accounts.iam.gserviceaccount.com",
  1641. "shards": 7
  1642. },
  1643. "test_id_prefix": "ninja://:blink_wpt_tests/"
  1644. }
  1645. ]
  1646. },
  1647. "V8 Blink Linux Future": {
  1648. "additional_compile_targets": [
  1649. "blink_tests"
  1650. ],
  1651. "gtest_tests": [
  1652. {
  1653. "merge": {
  1654. "args": [],
  1655. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  1656. },
  1657. "name": "blink_unit_tests",
  1658. "swarming": {
  1659. "can_use_on_swarming_builders": true,
  1660. "dimension_sets": [
  1661. {
  1662. "os": "Ubuntu-18.04"
  1663. }
  1664. ],
  1665. "service_account": "chromium-tester@chops-service-accounts.iam.gserviceaccount.com"
  1666. },
  1667. "test": "blink_unittests",
  1668. "test_id_prefix": "ninja://third_party/blink/renderer/controller:blink_unittests/"
  1669. }
  1670. ],
  1671. "isolated_scripts": [
  1672. {
  1673. "args": [
  1674. "--num-retries=3",
  1675. "--write-run-histories-to=${ISOLATED_OUTDIR}/run_histories.json",
  1676. "--git-revision=${got_revision}",
  1677. "--flag-specific=future-js"
  1678. ],
  1679. "check_flakiness_for_new_tests": false,
  1680. "isolate_name": "blink_web_tests",
  1681. "merge": {
  1682. "args": [
  1683. "--verbose"
  1684. ],
  1685. "script": "//third_party/blink/tools/merge_web_test_results.py"
  1686. },
  1687. "name": "blink_web_tests",
  1688. "precommit_args": [
  1689. "--gerrit-issue=${patch_issue}",
  1690. "--gerrit-patchset=${patch_set}",
  1691. "--buildbucket-id=${buildbucket_build_id}"
  1692. ],
  1693. "resultdb": {
  1694. "enable": true
  1695. },
  1696. "results_handler": "layout tests",
  1697. "swarming": {
  1698. "can_use_on_swarming_builders": true,
  1699. "dimension_sets": [
  1700. {
  1701. "os": "Ubuntu-18.04"
  1702. }
  1703. ],
  1704. "service_account": "chromium-tester@chops-service-accounts.iam.gserviceaccount.com",
  1705. "shards": 5
  1706. },
  1707. "test_id_prefix": "ninja://:blink_web_tests/"
  1708. },
  1709. {
  1710. "args": [
  1711. "--num-retries=3",
  1712. "--write-run-histories-to=${ISOLATED_OUTDIR}/run_histories.json",
  1713. "--git-revision=${got_revision}",
  1714. "--flag-specific=future-js"
  1715. ],
  1716. "check_flakiness_for_new_tests": false,
  1717. "isolate_name": "blink_wpt_tests",
  1718. "merge": {
  1719. "args": [
  1720. "--verbose"
  1721. ],
  1722. "script": "//third_party/blink/tools/merge_web_test_results.py"
  1723. },
  1724. "name": "blink_wpt_tests",
  1725. "precommit_args": [
  1726. "--gerrit-issue=${patch_issue}",
  1727. "--gerrit-patchset=${patch_set}",
  1728. "--buildbucket-id=${buildbucket_build_id}"
  1729. ],
  1730. "resultdb": {
  1731. "enable": true
  1732. },
  1733. "results_handler": "layout tests",
  1734. "swarming": {
  1735. "can_use_on_swarming_builders": true,
  1736. "dimension_sets": [
  1737. {
  1738. "os": "Ubuntu-18.04"
  1739. }
  1740. ],
  1741. "service_account": "chromium-tester@chops-service-accounts.iam.gserviceaccount.com",
  1742. "shards": 7
  1743. },
  1744. "test_id_prefix": "ninja://:blink_wpt_tests/"
  1745. }
  1746. ]
  1747. },
  1748. "V8 Blink Mac": {
  1749. "additional_compile_targets": [
  1750. "blink_tests"
  1751. ],
  1752. "gtest_tests": [
  1753. {
  1754. "merge": {
  1755. "args": [],
  1756. "script": "//testing/merge_scripts/standard_gtest_merge.py"
  1757. },
  1758. "name": "blink_unit_tests",
  1759. "swarming": {
  1760. "can_use_on_swarming_builders": true,
  1761. "dimension_sets": [
  1762. {
  1763. "cpu": "x86-64",
  1764. "os": "Mac-10.13"
  1765. }
  1766. ],
  1767. "service_account": "chromium-tester@chops-service-accounts.iam.gserviceaccount.com"
  1768. },
  1769. "test": "blink_unittests",
  1770. "test_id_prefix": "ninja://third_party/blink/renderer/controller:blink_unittests/"
  1771. }
  1772. ],
  1773. "isolated_scripts": [
  1774. {
  1775. "args": [
  1776. "--num-retries=3",
  1777. "--write-run-histories-to=${ISOLATED_OUTDIR}/run_histories.json",
  1778. "--git-revision=${got_revision}"
  1779. ],
  1780. "check_flakiness_for_new_tests": false,
  1781. "isolate_name": "blink_web_tests",
  1782. "merge": {
  1783. "args": [
  1784. "--verbose"
  1785. ],
  1786. "script": "//third_party/blink/tools/merge_web_test_results.py"
  1787. },
  1788. "name": "blink_web_tests",
  1789. "precommit_args": [
  1790. "--gerrit-issue=${patch_issue}",
  1791. "--gerrit-patchset=${patch_set}",
  1792. "--buildbucket-id=${buildbucket_build_id}"
  1793. ],
  1794. "resultdb": {
  1795. "enable": true
  1796. },
  1797. "results_handler": "layout tests",
  1798. "swarming": {
  1799. "can_use_on_swarming_builders": true,
  1800. "dimension_sets": [
  1801. {
  1802. "cpu": "x86-64",
  1803. "os": "Mac-10.13"
  1804. }
  1805. ],
  1806. "service_account": "chromium-tester@chops-service-accounts.iam.gserviceaccount.com",
  1807. "shards": 5
  1808. },
  1809. "test_id_prefix": "ninja://:blink_web_tests/"
  1810. },
  1811. {
  1812. "args": [
  1813. "--num-retries=3",
  1814. "--write-run-histories-to=${ISOLATED_OUTDIR}/run_histories.json",
  1815. "--git-revision=${got_revision}"
  1816. ],
  1817. "check_flakiness_for_new_tests": false,
  1818. "isolate_name": "blink_wpt_tests",
  1819. "merge": {
  1820. "args": [
  1821. "--verbose"
  1822. ],
  1823. "script": "//third_party/blink/tools/merge_web_test_results.py"
  1824. },
  1825. "name": "blink_wpt_tests",
  1826. "precommit_args": [
  1827. "--gerrit-issue=${patch_issue}",
  1828. "--gerrit-patchset=${patch_set}",
  1829. "--buildbucket-id=${buildbucket_build_id}"
  1830. ],
  1831. "resultdb": {
  1832. "enable": true
  1833. },
  1834. "results_handler": "layout tests",
  1835. "swarming": {
  1836. "can_use_on_swarming_builders": true,
  1837. "dimension_sets": [
  1838. {
  1839. "cpu": "x86-64",
  1840. "os": "Mac-10.13"
  1841. }
  1842. ],
  1843. "service_account": "chromium-tester@chops-service-accounts.iam.gserviceaccount.com",
  1844. "shards": 7
  1845. },
  1846. "test_id_prefix": "ninja://:blink_wpt_tests/"
  1847. }
  1848. ]
  1849. },
  1850. "V8 Blink Win": {
  1851. "additional_compile_targets": [
  1852. "blink_tests"
  1853. ],
  1854. "isolated_scripts": [
  1855. {
  1856. "args": [
  1857. "--num-retries=3",
  1858. "--write-run-histories-to=${ISOLATED_OUTDIR}/run_histories.json",
  1859. "--git-revision=${got_revision}"
  1860. ],
  1861. "check_flakiness_for_new_tests": false,
  1862. "isolate_name": "blink_web_tests",
  1863. "merge": {
  1864. "args": [
  1865. "--verbose"
  1866. ],
  1867. "script": "//third_party/blink/tools/merge_web_test_results.py"
  1868. },
  1869. "name": "blink_web_tests",
  1870. "precommit_args": [
  1871. "--gerrit-issue=${patch_issue}",
  1872. "--gerrit-patchset=${patch_set}",
  1873. "--buildbucket-id=${buildbucket_build_id}"
  1874. ],
  1875. "resultdb": {
  1876. "enable": true
  1877. },
  1878. "results_handler": "layout tests",
  1879. "swarming": {
  1880. "can_use_on_swarming_builders": true,
  1881. "dimension_sets": [
  1882. {
  1883. "os": "Windows-10-19042"
  1884. }
  1885. ],
  1886. "service_account": "chromium-tester@chops-service-accounts.iam.gserviceaccount.com",
  1887. "shards": 5
  1888. },
  1889. "test_id_prefix": "ninja://:blink_web_tests/"
  1890. },
  1891. {
  1892. "args": [
  1893. "--num-retries=3",
  1894. "--write-run-histories-to=${ISOLATED_OUTDIR}/run_histories.json",
  1895. "--git-revision=${got_revision}"
  1896. ],
  1897. "check_flakiness_for_new_tests": false,
  1898. "isolate_name": "blink_wpt_tests",
  1899. "merge": {
  1900. "args": [
  1901. "--verbose"
  1902. ],
  1903. "script": "//third_party/blink/tools/merge_web_test_results.py"
  1904. },
  1905. "name": "blink_wpt_tests",
  1906. "precommit_args": [
  1907. "--gerrit-issue=${patch_issue}",
  1908. "--gerrit-patchset=${patch_set}",
  1909. "--buildbucket-id=${buildbucket_build_id}"
  1910. ],
  1911. "resultdb": {
  1912. "enable": true
  1913. },
  1914. "results_handler": "layout tests",
  1915. "swarming": {
  1916. "can_use_on_swarming_builders": true,
  1917. "dimension_sets": [
  1918. {
  1919. "os": "Windows-10-19042"
  1920. }
  1921. ],
  1922. "service_account": "chromium-tester@chops-service-accounts.iam.gserviceaccount.com",
  1923. "shards": 7
  1924. },
  1925. "test_id_prefix": "ninja://:blink_wpt_tests/"
  1926. }
  1927. ]
  1928. },
  1929. "V8 Linux GN": {
  1930. "additional_compile_targets": [
  1931. "accessibility_unittests",
  1932. "aura_unittests",
  1933. "blink_tests",
  1934. "browser_tests",
  1935. "capture_unittests",
  1936. "cast_unittests",
  1937. "cc_unittests",
  1938. "chromedriver_unittests",
  1939. "components_browsertests",
  1940. "components_unittests",
  1941. "content_browsertests",
  1942. "content_unittests",
  1943. "crypto_unittests",
  1944. "dbus_unittests",
  1945. "device_unittests",
  1946. "display_unittests",
  1947. "events_unittests",
  1948. "extensions_browsertests",
  1949. "extensions_unittests",
  1950. "gcm_unit_tests",
  1951. "gfx_unittests",
  1952. "gin_unittests",
  1953. "google_apis_unittests",
  1954. "gpu_unittests",
  1955. "interactive_ui_tests",
  1956. "ipc_tests",
  1957. "media_unittests",
  1958. "mojo_unittests",
  1959. "nacl_loader_unittests",
  1960. "net_unittests",
  1961. "pdf_unittests",
  1962. "pdfium_test",
  1963. "postmortem-metadata",
  1964. "ppapi_unittests",
  1965. "printing_unittests",
  1966. "remoting_unittests",
  1967. "sandbox_linux_unittests",
  1968. "skia_unittests",
  1969. "sql_unittests",
  1970. "storage_unittests",
  1971. "sync_integration_tests",
  1972. "ui_base_unittests",
  1973. "ui_touch_selection_unittests",
  1974. "unit_tests",
  1975. "url_unittests",
  1976. "views_unittests",
  1977. "wm_unittests"
  1978. ]
  1979. },
  1980. "Win V8 FYI Release (NVIDIA)": {
  1981. "isolated_scripts": [
  1982. {
  1983. "args": [
  1984. "context_lost",
  1985. "--show-stdout",
  1986. "--browser=release",
  1987. "--passthrough",
  1988. "-v",
  1989. "--extra-browser-args=--enable-logging=stderr --js-flags=--expose-gc --use-cmd-decoder=passthrough --use-gl=angle"
  1990. ],
  1991. "isolate_name": "telemetry_gpu_integration_test",
  1992. "merge": {
  1993. "args": [],
  1994. "script": "//testing/merge_scripts/standard_isolated_script_merge.py"
  1995. },
  1996. "name": "context_lost_passthrough_tests",
  1997. "resultdb": {
  1998. "enable": true,
  1999. "has_native_resultdb_integration": true
  2000. },
  2001. "should_retry_with_patch": false,
  2002. "swarming": {
  2003. "can_use_on_swarming_builders": true,
  2004. "dimension_sets": [
  2005. {
  2006. "gpu": "10de:2184-27.21.14.5638",
  2007. "os": "Windows-10-18363",
  2008. "pool": "chromium.tests.gpu"
  2009. }
  2010. ],
  2011. "idempotent": false,
  2012. "service_account": "chromium-tester@chops-service-accounts.iam.gserviceaccount.com"
  2013. },
  2014. "test_id_prefix": "ninja://chrome/test:telemetry_gpu_integration_test/"
  2015. },
  2016. {
  2017. "args": [
  2018. "gpu_process",
  2019. "--show-stdout",
  2020. "--browser=release",
  2021. "--passthrough",
  2022. "-v",
  2023. "--extra-browser-args=--enable-logging=stderr --js-flags=--expose-gc"
  2024. ],
  2025. "isolate_name": "telemetry_gpu_integration_test",
  2026. "merge": {
  2027. "args": [],
  2028. "script": "//testing/merge_scripts/standard_isolated_script_merge.py"
  2029. },
  2030. "name": "gpu_process_launch_tests",
  2031. "resultdb": {
  2032. "enable": true,
  2033. "has_native_resultdb_integration": true
  2034. },
  2035. "should_retry_with_patch": false,
  2036. "swarming": {
  2037. "can_use_on_swarming_builders": true,
  2038. "dimension_sets": [
  2039. {
  2040. "gpu": "10de:2184-27.21.14.5638",
  2041. "os": "Windows-10-18363",
  2042. "pool": "chromium.tests.gpu"
  2043. }
  2044. ],
  2045. "idempotent": false,
  2046. "service_account": "chromium-tester@chops-service-accounts.iam.gserviceaccount.com"
  2047. },
  2048. "test_id_prefix": "ninja://chrome/test:telemetry_gpu_integration_test/"
  2049. },
  2050. {
  2051. "args": [
  2052. "hardware_accelerated_feature",
  2053. "--show-stdout",
  2054. "--browser=release",
  2055. "--passthrough",
  2056. "-v",
  2057. "--extra-browser-args=--enable-logging=stderr --js-flags=--expose-gc"
  2058. ],
  2059. "isolate_name": "telemetry_gpu_integration_test",
  2060. "merge": {
  2061. "args": [],
  2062. "script": "//testing/merge_scripts/standard_isolated_script_merge.py"
  2063. },
  2064. "name": "hardware_accelerated_feature_tests",
  2065. "resultdb": {
  2066. "enable": true,
  2067. "has_native_resultdb_integration": true
  2068. },
  2069. "should_retry_with_patch": false,
  2070. "swarming": {
  2071. "can_use_on_swarming_builders": true,
  2072. "dimension_sets": [
  2073. {
  2074. "gpu": "10de:2184-27.21.14.5638",
  2075. "os": "Windows-10-18363",
  2076. "pool": "chromium.tests.gpu"
  2077. }
  2078. ],
  2079. "idempotent": false,
  2080. "service_account": "chromium-tester@chops-service-accounts.iam.gserviceaccount.com"
  2081. },
  2082. "test_id_prefix": "ninja://chrome/test:telemetry_gpu_integration_test/"
  2083. },
  2084. {
  2085. "args": [
  2086. "maps",
  2087. "--show-stdout",
  2088. "--browser=release",
  2089. "--passthrough",
  2090. "-v",
  2091. "--extra-browser-args=--enable-logging=stderr --js-flags=--expose-gc --use-cmd-decoder=passthrough --use-gl=angle",
  2092. "--dont-restore-color-profile-after-test",
  2093. "--test-machine-name",
  2094. "${buildername}",
  2095. "--git-revision=${got_cr_revision}"
  2096. ],
  2097. "isolate_name": "telemetry_gpu_integration_test",
  2098. "merge": {
  2099. "args": [],
  2100. "script": "//testing/merge_scripts/standard_isolated_script_merge.py"
  2101. },
  2102. "name": "maps_pixel_passthrough_test",
  2103. "precommit_args": [
  2104. "--gerrit-issue=${patch_issue}",
  2105. "--gerrit-patchset=${patch_set}",
  2106. "--buildbucket-id=${buildbucket_build_id}"
  2107. ],
  2108. "resultdb": {
  2109. "enable": true,
  2110. "has_native_resultdb_integration": true
  2111. },
  2112. "should_retry_with_patch": false,
  2113. "swarming": {
  2114. "can_use_on_swarming_builders": true,
  2115. "dimension_sets": [
  2116. {
  2117. "gpu": "10de:2184-27.21.14.5638",
  2118. "os": "Windows-10-18363",
  2119. "pool": "chromium.tests.gpu"
  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. "pixel",
  2130. "--show-stdout",
  2131. "--browser=release",
  2132. "--passthrough",
  2133. "-v",
  2134. "--extra-browser-args=--enable-logging=stderr --js-flags=--expose-gc --use-cmd-decoder=passthrough --use-gl=angle",
  2135. "--dont-restore-color-profile-after-test",
  2136. "--test-machine-name",
  2137. "${buildername}",
  2138. "--git-revision=${got_cr_revision}"
  2139. ],
  2140. "isolate_name": "telemetry_gpu_integration_test",
  2141. "merge": {
  2142. "args": [],
  2143. "script": "//testing/merge_scripts/standard_isolated_script_merge.py"
  2144. },
  2145. "name": "pixel_skia_gold_passthrough_test",
  2146. "precommit_args": [
  2147. "--gerrit-issue=${patch_issue}",
  2148. "--gerrit-patchset=${patch_set}",
  2149. "--buildbucket-id=${buildbucket_build_id}"
  2150. ],
  2151. "resultdb": {
  2152. "enable": true,
  2153. "has_native_resultdb_integration": true
  2154. },
  2155. "should_retry_with_patch": false,
  2156. "swarming": {
  2157. "can_use_on_swarming_builders": true,
  2158. "dimension_sets": [
  2159. {
  2160. "gpu": "10de:2184-27.21.14.5638",
  2161. "os": "Windows-10-18363",
  2162. "pool": "chromium.tests.gpu"
  2163. }
  2164. ],
  2165. "idempotent": false,
  2166. "service_account": "chromium-tester@chops-service-accounts.iam.gserviceaccount.com"
  2167. },
  2168. "test_id_prefix": "ninja://chrome/test:telemetry_gpu_integration_test/"
  2169. },
  2170. {
  2171. "args": [
  2172. "screenshot_sync",
  2173. "--show-stdout",
  2174. "--browser=release",
  2175. "--passthrough",
  2176. "-v",
  2177. "--extra-browser-args=--enable-logging=stderr --js-flags=--expose-gc --use-cmd-decoder=passthrough --use-gl=angle",
  2178. "--dont-restore-color-profile-after-test"
  2179. ],
  2180. "isolate_name": "telemetry_gpu_integration_test",
  2181. "merge": {
  2182. "args": [],
  2183. "script": "//testing/merge_scripts/standard_isolated_script_merge.py"
  2184. },
  2185. "name": "screenshot_sync_passthrough_tests",
  2186. "resultdb": {
  2187. "enable": true,
  2188. "has_native_resultdb_integration": true
  2189. },
  2190. "should_retry_with_patch": false,
  2191. "swarming": {
  2192. "can_use_on_swarming_builders": true,
  2193. "dimension_sets": [
  2194. {
  2195. "gpu": "10de:2184-27.21.14.5638",
  2196. "os": "Windows-10-18363",
  2197. "pool": "chromium.tests.gpu"
  2198. }
  2199. ],
  2200. "idempotent": false,
  2201. "service_account": "chromium-tester@chops-service-accounts.iam.gserviceaccount.com"
  2202. },
  2203. "test_id_prefix": "ninja://chrome/test:telemetry_gpu_integration_test/"
  2204. },
  2205. {
  2206. "args": [
  2207. "trace_test",
  2208. "--show-stdout",
  2209. "--browser=release",
  2210. "--passthrough",
  2211. "-v",
  2212. "--extra-browser-args=--enable-logging=stderr --js-flags=--expose-gc"
  2213. ],
  2214. "isolate_name": "telemetry_gpu_integration_test",
  2215. "merge": {
  2216. "args": [],
  2217. "script": "//testing/merge_scripts/standard_isolated_script_merge.py"
  2218. },
  2219. "name": "trace_test",
  2220. "resultdb": {
  2221. "enable": true,
  2222. "has_native_resultdb_integration": true
  2223. },
  2224. "should_retry_with_patch": false,
  2225. "swarming": {
  2226. "can_use_on_swarming_builders": true,
  2227. "dimension_sets": [
  2228. {
  2229. "gpu": "10de:2184-27.21.14.5638",
  2230. "os": "Windows-10-18363",
  2231. "pool": "chromium.tests.gpu"
  2232. }
  2233. ],
  2234. "idempotent": false,
  2235. "service_account": "chromium-tester@chops-service-accounts.iam.gserviceaccount.com"
  2236. },
  2237. "test_id_prefix": "ninja://chrome/test:telemetry_gpu_integration_test/"
  2238. },
  2239. {
  2240. "args": [
  2241. "webgl_conformance",
  2242. "--show-stdout",
  2243. "--browser=release",
  2244. "--passthrough",
  2245. "-v",
  2246. "--extra-browser-args=--enable-logging=stderr --js-flags=--expose-gc --force_high_performance_gpu",
  2247. "--webgl-conformance-version=2.0.1",
  2248. "--read-abbreviated-json-results-from=../../content/test/data/gpu/webgl2_conformance_tests_output.json",
  2249. "--jobs=4"
  2250. ],
  2251. "isolate_name": "telemetry_gpu_integration_test",
  2252. "merge": {
  2253. "args": [],
  2254. "script": "//testing/merge_scripts/standard_isolated_script_merge.py"
  2255. },
  2256. "name": "webgl2_conformance_tests",
  2257. "resultdb": {
  2258. "enable": true,
  2259. "has_native_resultdb_integration": true
  2260. },
  2261. "should_retry_with_patch": false,
  2262. "swarming": {
  2263. "can_use_on_swarming_builders": true,
  2264. "dimension_sets": [
  2265. {
  2266. "gpu": "10de:2184-27.21.14.5638",
  2267. "os": "Windows-10-18363",
  2268. "pool": "chromium.tests.gpu"
  2269. }
  2270. ],
  2271. "idempotent": false,
  2272. "service_account": "chromium-tester@chops-service-accounts.iam.gserviceaccount.com",
  2273. "shards": 20
  2274. },
  2275. "test_id_prefix": "ninja://chrome/test:telemetry_gpu_integration_test/"
  2276. },
  2277. {
  2278. "args": [
  2279. "webgl_conformance",
  2280. "--show-stdout",
  2281. "--browser=release",
  2282. "--passthrough",
  2283. "-v",
  2284. "--extra-browser-args=--enable-logging=stderr --js-flags=--expose-gc --force_high_performance_gpu",
  2285. "--read-abbreviated-json-results-from=../../content/test/data/gpu/webgl_conformance_tests_output.json",
  2286. "--jobs=4"
  2287. ],
  2288. "isolate_name": "telemetry_gpu_integration_test",
  2289. "merge": {
  2290. "args": [],
  2291. "script": "//testing/merge_scripts/standard_isolated_script_merge.py"
  2292. },
  2293. "name": "webgl_conformance_tests",
  2294. "resultdb": {
  2295. "enable": true,
  2296. "has_native_resultdb_integration": true
  2297. },
  2298. "should_retry_with_patch": false,
  2299. "swarming": {
  2300. "can_use_on_swarming_builders": true,
  2301. "dimension_sets": [
  2302. {
  2303. "gpu": "10de:2184-27.21.14.5638",
  2304. "os": "Windows-10-18363",
  2305. "pool": "chromium.tests.gpu"
  2306. }
  2307. ],
  2308. "idempotent": false,
  2309. "service_account": "chromium-tester@chops-service-accounts.iam.gserviceaccount.com",
  2310. "shards": 2
  2311. },
  2312. "test_id_prefix": "ninja://chrome/test:telemetry_gpu_integration_test/"
  2313. }
  2314. ]
  2315. }
  2316. }