commit-queue.cfg 84 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547
  1. # Auto-generated by lucicfg.
  2. # Do not modify manually.
  3. #
  4. # For the schema of this file, see Config message:
  5. # https://luci-config.appspot.com/schemas/projects:commit-queue.cfg
  6. cq_status_host: "chromium-cq-status.appspot.com"
  7. submit_options {
  8. max_burst: 2
  9. burst_delay {
  10. seconds: 60
  11. }
  12. }
  13. config_groups {
  14. name: "cq"
  15. gerrit {
  16. url: "https://chromium-review.googlesource.com"
  17. projects {
  18. name: "chromium/src"
  19. ref_regexp: "refs/branch-heads/5249"
  20. }
  21. }
  22. verifiers {
  23. gerrit_cq_ability {
  24. committer_list: "project-chromium-committers"
  25. dry_run_access_list: "project-chromium-tryjob-access"
  26. }
  27. tryjob {
  28. builders {
  29. name: "chrome-m106/try/lacros-amd64-generic-chrome-skylab"
  30. includable_only: true
  31. owner_whitelist_group: "googlers"
  32. owner_whitelist_group: "project-chromium-robot-committers"
  33. }
  34. builders {
  35. name: "chrome-m106/try/linux-chrome"
  36. includable_only: true
  37. owner_whitelist_group: "googlers"
  38. owner_whitelist_group: "project-chromium-robot-committers"
  39. }
  40. builders {
  41. name: "chrome-m106/try/linux-chrome-stable"
  42. includable_only: true
  43. owner_whitelist_group: "googlers"
  44. owner_whitelist_group: "project-chromium-robot-committers"
  45. }
  46. builders {
  47. name: "chrome-m106/try/linux-pgo"
  48. includable_only: true
  49. owner_whitelist_group: "googlers"
  50. owner_whitelist_group: "project-chromium-robot-committers"
  51. }
  52. builders {
  53. name: "chrome-m106/try/mac-arm-pgo"
  54. includable_only: true
  55. owner_whitelist_group: "googlers"
  56. owner_whitelist_group: "project-chromium-robot-committers"
  57. }
  58. builders {
  59. name: "chrome-m106/try/mac-chrome"
  60. includable_only: true
  61. owner_whitelist_group: "googlers"
  62. owner_whitelist_group: "project-chromium-robot-committers"
  63. }
  64. builders {
  65. name: "chrome-m106/try/mac-chrome-stable"
  66. includable_only: true
  67. owner_whitelist_group: "googlers"
  68. owner_whitelist_group: "project-chromium-robot-committers"
  69. }
  70. builders {
  71. name: "chrome-m106/try/mac-pgo"
  72. includable_only: true
  73. owner_whitelist_group: "googlers"
  74. owner_whitelist_group: "project-chromium-robot-committers"
  75. }
  76. builders {
  77. name: "chrome-m106/try/win-chrome"
  78. includable_only: true
  79. owner_whitelist_group: "googlers"
  80. owner_whitelist_group: "project-chromium-robot-committers"
  81. }
  82. builders {
  83. name: "chrome-m106/try/win-chrome-stable"
  84. includable_only: true
  85. owner_whitelist_group: "googlers"
  86. owner_whitelist_group: "project-chromium-robot-committers"
  87. }
  88. builders {
  89. name: "chrome-m106/try/win32-pgo"
  90. includable_only: true
  91. owner_whitelist_group: "googlers"
  92. owner_whitelist_group: "project-chromium-robot-committers"
  93. }
  94. builders {
  95. name: "chrome-m106/try/win64-chrome"
  96. includable_only: true
  97. owner_whitelist_group: "googlers"
  98. owner_whitelist_group: "project-chromium-robot-committers"
  99. }
  100. builders {
  101. name: "chrome-m106/try/win64-chrome-stable"
  102. includable_only: true
  103. owner_whitelist_group: "googlers"
  104. owner_whitelist_group: "project-chromium-robot-committers"
  105. }
  106. builders {
  107. name: "chrome-m106/try/win64-pgo"
  108. includable_only: true
  109. owner_whitelist_group: "googlers"
  110. owner_whitelist_group: "project-chromium-robot-committers"
  111. }
  112. builders {
  113. name: "chromium-m106/try/android-binary-size"
  114. location_regexp: ".*"
  115. location_regexp_exclude: ".+/[+]/docs/.+"
  116. location_regexp_exclude: ".+/[+]/infra/config/.+"
  117. location_filters {
  118. gerrit_host_regexp: ".*"
  119. gerrit_project_regexp: ".*"
  120. path_regexp: ".*"
  121. }
  122. location_filters {
  123. gerrit_host_regexp: ".*"
  124. gerrit_project_regexp: ".*"
  125. path_regexp: "docs/.+"
  126. exclude: true
  127. }
  128. location_filters {
  129. gerrit_host_regexp: ".*"
  130. gerrit_project_regexp: ".*"
  131. path_regexp: "infra/config/.+"
  132. exclude: true
  133. }
  134. }
  135. builders {
  136. name: "chromium-m106/try/android-cronet-arm-dbg"
  137. location_regexp: ".+/[+]/components/cronet/.+"
  138. location_regexp: ".+/[+]/components/grpc_support/.+"
  139. location_regexp: ".+/[+]/build/android/.+"
  140. location_regexp: ".+/[+]/build/config/android/.+"
  141. location_regexp_exclude: ".+/[+]/docs/.+"
  142. location_regexp_exclude: ".+/[+]/infra/config/.+"
  143. location_regexp_exclude: ".+/[+]/components/cronet/ios/.+"
  144. location_filters {
  145. gerrit_host_regexp: ".*"
  146. gerrit_project_regexp: ".*"
  147. path_regexp: "components/cronet/.+"
  148. }
  149. location_filters {
  150. gerrit_host_regexp: ".*"
  151. gerrit_project_regexp: ".*"
  152. path_regexp: "components/grpc_support/.+"
  153. }
  154. location_filters {
  155. gerrit_host_regexp: ".*"
  156. gerrit_project_regexp: ".*"
  157. path_regexp: "build/android/.+"
  158. }
  159. location_filters {
  160. gerrit_host_regexp: ".*"
  161. gerrit_project_regexp: ".*"
  162. path_regexp: "build/config/android/.+"
  163. }
  164. location_filters {
  165. gerrit_host_regexp: ".*"
  166. gerrit_project_regexp: ".*"
  167. path_regexp: "docs/.+"
  168. exclude: true
  169. }
  170. location_filters {
  171. gerrit_host_regexp: ".*"
  172. gerrit_project_regexp: ".*"
  173. path_regexp: "infra/config/.+"
  174. exclude: true
  175. }
  176. location_filters {
  177. gerrit_host_regexp: ".*"
  178. gerrit_project_regexp: ".*"
  179. path_regexp: "components/cronet/ios/.+"
  180. exclude: true
  181. }
  182. }
  183. builders {
  184. name: "chromium-m106/try/android-cronet-x86-dbg-10-tests"
  185. location_regexp: ".+/[+]/components/cronet/.+"
  186. location_regexp: ".+/[+]/components/grpc_support/.+"
  187. location_regexp: ".+/[+]/build/android/.+"
  188. location_regexp: ".+/[+]/build/config/android/.+"
  189. location_regexp_exclude: ".+/[+]/docs/.+"
  190. location_regexp_exclude: ".+/[+]/infra/config/.+"
  191. location_regexp_exclude: ".+/[+]/components/cronet/ios/.+"
  192. location_filters {
  193. gerrit_host_regexp: ".*"
  194. gerrit_project_regexp: ".*"
  195. path_regexp: "components/cronet/.+"
  196. }
  197. location_filters {
  198. gerrit_host_regexp: ".*"
  199. gerrit_project_regexp: ".*"
  200. path_regexp: "components/grpc_support/.+"
  201. }
  202. location_filters {
  203. gerrit_host_regexp: ".*"
  204. gerrit_project_regexp: ".*"
  205. path_regexp: "build/android/.+"
  206. }
  207. location_filters {
  208. gerrit_host_regexp: ".*"
  209. gerrit_project_regexp: ".*"
  210. path_regexp: "build/config/android/.+"
  211. }
  212. location_filters {
  213. gerrit_host_regexp: ".*"
  214. gerrit_project_regexp: ".*"
  215. path_regexp: "docs/.+"
  216. exclude: true
  217. }
  218. location_filters {
  219. gerrit_host_regexp: ".*"
  220. gerrit_project_regexp: ".*"
  221. path_regexp: "infra/config/.+"
  222. exclude: true
  223. }
  224. location_filters {
  225. gerrit_host_regexp: ".*"
  226. gerrit_project_regexp: ".*"
  227. path_regexp: "components/cronet/ios/.+"
  228. exclude: true
  229. }
  230. }
  231. builders {
  232. name: "chromium-m106/try/android-marshmallow-arm64-rel"
  233. location_regexp: ".*"
  234. location_regexp_exclude: ".+/[+]/docs/.+"
  235. location_regexp_exclude: ".+/[+]/infra/config/.+"
  236. location_filters {
  237. gerrit_host_regexp: ".*"
  238. gerrit_project_regexp: ".*"
  239. path_regexp: ".*"
  240. }
  241. location_filters {
  242. gerrit_host_regexp: ".*"
  243. gerrit_project_regexp: ".*"
  244. path_regexp: "docs/.+"
  245. exclude: true
  246. }
  247. location_filters {
  248. gerrit_host_regexp: ".*"
  249. gerrit_project_regexp: ".*"
  250. path_regexp: "infra/config/.+"
  251. exclude: true
  252. }
  253. }
  254. builders {
  255. name: "chromium-m106/try/android-marshmallow-arm64-rel-compilator"
  256. includable_only: true
  257. }
  258. builders {
  259. name: "chromium-m106/try/android-marshmallow-x86-rel"
  260. location_regexp: ".*"
  261. location_regexp_exclude: ".+/[+]/docs/.+"
  262. location_regexp_exclude: ".+/[+]/infra/config/.+"
  263. location_filters {
  264. gerrit_host_regexp: ".*"
  265. gerrit_project_regexp: ".*"
  266. path_regexp: ".*"
  267. }
  268. location_filters {
  269. gerrit_host_regexp: ".*"
  270. gerrit_project_regexp: ".*"
  271. path_regexp: "docs/.+"
  272. exclude: true
  273. }
  274. location_filters {
  275. gerrit_host_regexp: ".*"
  276. gerrit_project_regexp: ".*"
  277. path_regexp: "infra/config/.+"
  278. exclude: true
  279. }
  280. }
  281. builders {
  282. name: "chromium-m106/try/android-marshmallow-x86-rel-compilator"
  283. includable_only: true
  284. }
  285. builders {
  286. name: "chromium-m106/try/android-official"
  287. includable_only: true
  288. }
  289. builders {
  290. name: "chromium-m106/try/android-oreo-arm64-dbg"
  291. includable_only: true
  292. }
  293. builders {
  294. name: "chromium-m106/try/android-pie-arm64-dbg"
  295. location_regexp: ".+/[+]/chrome/android/features/vr/.+"
  296. location_regexp: ".+/[+]/chrome/android/java/src/org/chromium/chrome/browser/vr/.+"
  297. location_regexp: ".+/[+]/chrome/android/javatests/src/org/chromium/chrome/browser/vr/.+"
  298. location_regexp: ".+/[+]/chrome/browser/android/vr/.+"
  299. location_regexp: ".+/[+]/chrome/browser/vr/.+"
  300. location_regexp: ".+/[+]/content/browser/xr/.+"
  301. location_regexp: ".+/[+]/device/vr/android/.+"
  302. location_regexp: ".+/[+]/third_party/gvr-android-sdk/.+"
  303. location_regexp: ".+/[+]/third_party/arcore-android-sdk/.+"
  304. location_regexp: ".+/[+]/third_party/arcore-android-sdk-client/.+"
  305. location_regexp_exclude: ".+/[+]/docs/.+"
  306. location_regexp_exclude: ".+/[+]/infra/config/.+"
  307. location_filters {
  308. gerrit_host_regexp: ".*"
  309. gerrit_project_regexp: ".*"
  310. path_regexp: "chrome/android/features/vr/.+"
  311. }
  312. location_filters {
  313. gerrit_host_regexp: ".*"
  314. gerrit_project_regexp: ".*"
  315. path_regexp: "chrome/android/java/src/org/chromium/chrome/browser/vr/.+"
  316. }
  317. location_filters {
  318. gerrit_host_regexp: ".*"
  319. gerrit_project_regexp: ".*"
  320. path_regexp: "chrome/android/javatests/src/org/chromium/chrome/browser/vr/.+"
  321. }
  322. location_filters {
  323. gerrit_host_regexp: ".*"
  324. gerrit_project_regexp: ".*"
  325. path_regexp: "chrome/browser/android/vr/.+"
  326. }
  327. location_filters {
  328. gerrit_host_regexp: ".*"
  329. gerrit_project_regexp: ".*"
  330. path_regexp: "chrome/browser/vr/.+"
  331. }
  332. location_filters {
  333. gerrit_host_regexp: ".*"
  334. gerrit_project_regexp: ".*"
  335. path_regexp: "content/browser/xr/.+"
  336. }
  337. location_filters {
  338. gerrit_host_regexp: ".*"
  339. gerrit_project_regexp: ".*"
  340. path_regexp: "device/vr/android/.+"
  341. }
  342. location_filters {
  343. gerrit_host_regexp: ".*"
  344. gerrit_project_regexp: ".*"
  345. path_regexp: "third_party/gvr-android-sdk/.+"
  346. }
  347. location_filters {
  348. gerrit_host_regexp: ".*"
  349. gerrit_project_regexp: ".*"
  350. path_regexp: "third_party/arcore-android-sdk/.+"
  351. }
  352. location_filters {
  353. gerrit_host_regexp: ".*"
  354. gerrit_project_regexp: ".*"
  355. path_regexp: "third_party/arcore-android-sdk-client/.+"
  356. }
  357. location_filters {
  358. gerrit_host_regexp: ".*"
  359. gerrit_project_regexp: ".*"
  360. path_regexp: "docs/.+"
  361. exclude: true
  362. }
  363. location_filters {
  364. gerrit_host_regexp: ".*"
  365. gerrit_project_regexp: ".*"
  366. path_regexp: "infra/config/.+"
  367. exclude: true
  368. }
  369. }
  370. builders {
  371. name: "chromium-m106/try/android-pie-arm64-rel"
  372. location_regexp: ".*"
  373. location_regexp_exclude: ".+/[+]/docs/.+"
  374. location_regexp_exclude: ".+/[+]/infra/config/.+"
  375. location_filters {
  376. gerrit_host_regexp: ".*"
  377. gerrit_project_regexp: ".*"
  378. path_regexp: ".*"
  379. }
  380. location_filters {
  381. gerrit_host_regexp: ".*"
  382. gerrit_project_regexp: ".*"
  383. path_regexp: "docs/.+"
  384. exclude: true
  385. }
  386. location_filters {
  387. gerrit_host_regexp: ".*"
  388. gerrit_project_regexp: ".*"
  389. path_regexp: "infra/config/.+"
  390. exclude: true
  391. }
  392. }
  393. builders {
  394. name: "chromium-m106/try/android-pie-arm64-rel-compilator"
  395. includable_only: true
  396. }
  397. builders {
  398. name: "chromium-m106/try/android_compile_dbg"
  399. location_regexp: ".*"
  400. location_regexp_exclude: ".+/[+]/docs/.+"
  401. location_regexp_exclude: ".+/[+]/infra/config/.+"
  402. location_filters {
  403. gerrit_host_regexp: ".*"
  404. gerrit_project_regexp: ".*"
  405. path_regexp: ".*"
  406. }
  407. location_filters {
  408. gerrit_host_regexp: ".*"
  409. gerrit_project_regexp: ".*"
  410. path_regexp: "docs/.+"
  411. exclude: true
  412. }
  413. location_filters {
  414. gerrit_host_regexp: ".*"
  415. gerrit_project_regexp: ".*"
  416. path_regexp: "infra/config/.+"
  417. exclude: true
  418. }
  419. }
  420. builders {
  421. name: "chromium-m106/try/android_compile_x64_dbg"
  422. location_regexp: ".+/[+]/chrome/android/java/src/org/chromium/chrome/browser/vr/.+"
  423. location_regexp: ".+/[+]/chrome/browser/vr/.+"
  424. location_regexp: ".+/[+]/content/browser/xr/.+"
  425. location_regexp: ".+/[+]/sandbox/linux/seccomp-bpf/.+"
  426. location_regexp: ".+/[+]/sandbox/linux/seccomp-bpf-helpers/.+"
  427. location_regexp: ".+/[+]/sandbox/linux/system_headers/.+"
  428. location_regexp: ".+/[+]/sandbox/linux/tests/.+"
  429. location_regexp: ".+/[+]/third_party/gvr-android-sdk/.+"
  430. location_regexp_exclude: ".+/[+]/docs/.+"
  431. location_regexp_exclude: ".+/[+]/infra/config/.+"
  432. location_filters {
  433. gerrit_host_regexp: ".*"
  434. gerrit_project_regexp: ".*"
  435. path_regexp: "chrome/android/java/src/org/chromium/chrome/browser/vr/.+"
  436. }
  437. location_filters {
  438. gerrit_host_regexp: ".*"
  439. gerrit_project_regexp: ".*"
  440. path_regexp: "chrome/browser/vr/.+"
  441. }
  442. location_filters {
  443. gerrit_host_regexp: ".*"
  444. gerrit_project_regexp: ".*"
  445. path_regexp: "content/browser/xr/.+"
  446. }
  447. location_filters {
  448. gerrit_host_regexp: ".*"
  449. gerrit_project_regexp: ".*"
  450. path_regexp: "sandbox/linux/seccomp-bpf/.+"
  451. }
  452. location_filters {
  453. gerrit_host_regexp: ".*"
  454. gerrit_project_regexp: ".*"
  455. path_regexp: "sandbox/linux/seccomp-bpf-helpers/.+"
  456. }
  457. location_filters {
  458. gerrit_host_regexp: ".*"
  459. gerrit_project_regexp: ".*"
  460. path_regexp: "sandbox/linux/system_headers/.+"
  461. }
  462. location_filters {
  463. gerrit_host_regexp: ".*"
  464. gerrit_project_regexp: ".*"
  465. path_regexp: "sandbox/linux/tests/.+"
  466. }
  467. location_filters {
  468. gerrit_host_regexp: ".*"
  469. gerrit_project_regexp: ".*"
  470. path_regexp: "third_party/gvr-android-sdk/.+"
  471. }
  472. location_filters {
  473. gerrit_host_regexp: ".*"
  474. gerrit_project_regexp: ".*"
  475. path_regexp: "docs/.+"
  476. exclude: true
  477. }
  478. location_filters {
  479. gerrit_host_regexp: ".*"
  480. gerrit_project_regexp: ".*"
  481. path_regexp: "infra/config/.+"
  482. exclude: true
  483. }
  484. }
  485. builders {
  486. name: "chromium-m106/try/android_compile_x86_dbg"
  487. location_regexp: ".+/[+]/chrome/android/java/src/org/chromium/chrome/browser/vr/.+"
  488. location_regexp: ".+/[+]/chrome/browser/vr/.+"
  489. location_regexp: ".+/[+]/content/browser/xr/.+"
  490. location_regexp: ".+/[+]/sandbox/linux/seccomp-bpf/.+"
  491. location_regexp: ".+/[+]/sandbox/linux/seccomp-bpf-helpers/.+"
  492. location_regexp: ".+/[+]/sandbox/linux/system_headers/.+"
  493. location_regexp: ".+/[+]/sandbox/linux/tests/.+"
  494. location_regexp: ".+/[+]/third_party/gvr-android-sdk/.+"
  495. location_regexp_exclude: ".+/[+]/docs/.+"
  496. location_regexp_exclude: ".+/[+]/infra/config/.+"
  497. location_filters {
  498. gerrit_host_regexp: ".*"
  499. gerrit_project_regexp: ".*"
  500. path_regexp: "chrome/android/java/src/org/chromium/chrome/browser/vr/.+"
  501. }
  502. location_filters {
  503. gerrit_host_regexp: ".*"
  504. gerrit_project_regexp: ".*"
  505. path_regexp: "chrome/browser/vr/.+"
  506. }
  507. location_filters {
  508. gerrit_host_regexp: ".*"
  509. gerrit_project_regexp: ".*"
  510. path_regexp: "content/browser/xr/.+"
  511. }
  512. location_filters {
  513. gerrit_host_regexp: ".*"
  514. gerrit_project_regexp: ".*"
  515. path_regexp: "sandbox/linux/seccomp-bpf/.+"
  516. }
  517. location_filters {
  518. gerrit_host_regexp: ".*"
  519. gerrit_project_regexp: ".*"
  520. path_regexp: "sandbox/linux/seccomp-bpf-helpers/.+"
  521. }
  522. location_filters {
  523. gerrit_host_regexp: ".*"
  524. gerrit_project_regexp: ".*"
  525. path_regexp: "sandbox/linux/system_headers/.+"
  526. }
  527. location_filters {
  528. gerrit_host_regexp: ".*"
  529. gerrit_project_regexp: ".*"
  530. path_regexp: "sandbox/linux/tests/.+"
  531. }
  532. location_filters {
  533. gerrit_host_regexp: ".*"
  534. gerrit_project_regexp: ".*"
  535. path_regexp: "third_party/gvr-android-sdk/.+"
  536. }
  537. location_filters {
  538. gerrit_host_regexp: ".*"
  539. gerrit_project_regexp: ".*"
  540. path_regexp: "docs/.+"
  541. exclude: true
  542. }
  543. location_filters {
  544. gerrit_host_regexp: ".*"
  545. gerrit_project_regexp: ".*"
  546. path_regexp: "infra/config/.+"
  547. exclude: true
  548. }
  549. }
  550. builders {
  551. name: "chromium-m106/try/android_cronet"
  552. location_regexp: ".*"
  553. location_regexp_exclude: ".+/[+]/docs/.+"
  554. location_regexp_exclude: ".+/[+]/infra/config/.+"
  555. location_filters {
  556. gerrit_host_regexp: ".*"
  557. gerrit_project_regexp: ".*"
  558. path_regexp: ".*"
  559. }
  560. location_filters {
  561. gerrit_host_regexp: ".*"
  562. gerrit_project_regexp: ".*"
  563. path_regexp: "docs/.+"
  564. exclude: true
  565. }
  566. location_filters {
  567. gerrit_host_regexp: ".*"
  568. gerrit_project_regexp: ".*"
  569. path_regexp: "infra/config/.+"
  570. exclude: true
  571. }
  572. }
  573. builders {
  574. name: "chromium-m106/try/android_optional_gpu_tests_rel"
  575. location_regexp: ".+/[+]/cc/.+"
  576. location_regexp: ".+/[+]/chrome/browser/vr/.+"
  577. location_regexp: ".+/[+]/content/browser/xr/.+"
  578. location_regexp: ".+/[+]/components/viz/.+"
  579. location_regexp: ".+/[+]/content/test/gpu/.+"
  580. location_regexp: ".+/[+]/gpu/.+"
  581. location_regexp: ".+/[+]/media/audio/.+"
  582. location_regexp: ".+/[+]/media/base/.+"
  583. location_regexp: ".+/[+]/media/capture/.+"
  584. location_regexp: ".+/[+]/media/filters/.+"
  585. location_regexp: ".+/[+]/media/gpu/.+"
  586. location_regexp: ".+/[+]/media/mojo/.+"
  587. location_regexp: ".+/[+]/media/renderers/.+"
  588. location_regexp: ".+/[+]/media/video/.+"
  589. location_regexp: ".+/[+]/services/viz/.+"
  590. location_regexp: ".+/[+]/testing/buildbot/tryserver.chromium.android.json"
  591. location_regexp: ".+/[+]/testing/trigger_scripts/.+"
  592. location_regexp: ".+/[+]/third_party/blink/renderer/modules/mediastream/.+"
  593. location_regexp: ".+/[+]/third_party/blink/renderer/modules/webcodecs/.+"
  594. location_regexp: ".+/[+]/third_party/blink/renderer/modules/webgl/.+"
  595. location_regexp: ".+/[+]/third_party/blink/renderer/platform/graphics/gpu/.+"
  596. location_regexp: ".+/[+]/tools/clang/scripts/update.py"
  597. location_regexp: ".+/[+]/tools/mb/mb_config_expectations/tryserver.chromium.android.json"
  598. location_regexp: ".+/[+]/ui/gl/.+"
  599. location_regexp_exclude: ".+/[+]/docs/.+"
  600. location_regexp_exclude: ".+/[+]/infra/config/.+"
  601. location_filters {
  602. gerrit_host_regexp: ".*"
  603. gerrit_project_regexp: ".*"
  604. path_regexp: "cc/.+"
  605. }
  606. location_filters {
  607. gerrit_host_regexp: ".*"
  608. gerrit_project_regexp: ".*"
  609. path_regexp: "chrome/browser/vr/.+"
  610. }
  611. location_filters {
  612. gerrit_host_regexp: ".*"
  613. gerrit_project_regexp: ".*"
  614. path_regexp: "content/browser/xr/.+"
  615. }
  616. location_filters {
  617. gerrit_host_regexp: ".*"
  618. gerrit_project_regexp: ".*"
  619. path_regexp: "components/viz/.+"
  620. }
  621. location_filters {
  622. gerrit_host_regexp: ".*"
  623. gerrit_project_regexp: ".*"
  624. path_regexp: "content/test/gpu/.+"
  625. }
  626. location_filters {
  627. gerrit_host_regexp: ".*"
  628. gerrit_project_regexp: ".*"
  629. path_regexp: "gpu/.+"
  630. }
  631. location_filters {
  632. gerrit_host_regexp: ".*"
  633. gerrit_project_regexp: ".*"
  634. path_regexp: "media/audio/.+"
  635. }
  636. location_filters {
  637. gerrit_host_regexp: ".*"
  638. gerrit_project_regexp: ".*"
  639. path_regexp: "media/base/.+"
  640. }
  641. location_filters {
  642. gerrit_host_regexp: ".*"
  643. gerrit_project_regexp: ".*"
  644. path_regexp: "media/capture/.+"
  645. }
  646. location_filters {
  647. gerrit_host_regexp: ".*"
  648. gerrit_project_regexp: ".*"
  649. path_regexp: "media/filters/.+"
  650. }
  651. location_filters {
  652. gerrit_host_regexp: ".*"
  653. gerrit_project_regexp: ".*"
  654. path_regexp: "media/gpu/.+"
  655. }
  656. location_filters {
  657. gerrit_host_regexp: ".*"
  658. gerrit_project_regexp: ".*"
  659. path_regexp: "media/mojo/.+"
  660. }
  661. location_filters {
  662. gerrit_host_regexp: ".*"
  663. gerrit_project_regexp: ".*"
  664. path_regexp: "media/renderers/.+"
  665. }
  666. location_filters {
  667. gerrit_host_regexp: ".*"
  668. gerrit_project_regexp: ".*"
  669. path_regexp: "media/video/.+"
  670. }
  671. location_filters {
  672. gerrit_host_regexp: ".*"
  673. gerrit_project_regexp: ".*"
  674. path_regexp: "services/viz/.+"
  675. }
  676. location_filters {
  677. gerrit_host_regexp: ".*"
  678. gerrit_project_regexp: ".*"
  679. path_regexp: "testing/buildbot/tryserver.chromium.android.json"
  680. }
  681. location_filters {
  682. gerrit_host_regexp: ".*"
  683. gerrit_project_regexp: ".*"
  684. path_regexp: "testing/trigger_scripts/.+"
  685. }
  686. location_filters {
  687. gerrit_host_regexp: ".*"
  688. gerrit_project_regexp: ".*"
  689. path_regexp: "third_party/blink/renderer/modules/mediastream/.+"
  690. }
  691. location_filters {
  692. gerrit_host_regexp: ".*"
  693. gerrit_project_regexp: ".*"
  694. path_regexp: "third_party/blink/renderer/modules/webcodecs/.+"
  695. }
  696. location_filters {
  697. gerrit_host_regexp: ".*"
  698. gerrit_project_regexp: ".*"
  699. path_regexp: "third_party/blink/renderer/modules/webgl/.+"
  700. }
  701. location_filters {
  702. gerrit_host_regexp: ".*"
  703. gerrit_project_regexp: ".*"
  704. path_regexp: "third_party/blink/renderer/platform/graphics/gpu/.+"
  705. }
  706. location_filters {
  707. gerrit_host_regexp: ".*"
  708. gerrit_project_regexp: ".*"
  709. path_regexp: "tools/clang/scripts/update.py"
  710. }
  711. location_filters {
  712. gerrit_host_regexp: ".*"
  713. gerrit_project_regexp: ".*"
  714. path_regexp: "tools/mb/mb_config_expectations/tryserver.chromium.android.json"
  715. }
  716. location_filters {
  717. gerrit_host_regexp: ".*"
  718. gerrit_project_regexp: ".*"
  719. path_regexp: "ui/gl/.+"
  720. }
  721. location_filters {
  722. gerrit_host_regexp: ".*"
  723. gerrit_project_regexp: ".*"
  724. path_regexp: "docs/.+"
  725. exclude: true
  726. }
  727. location_filters {
  728. gerrit_host_regexp: ".*"
  729. gerrit_project_regexp: ".*"
  730. path_regexp: "infra/config/.+"
  731. exclude: true
  732. }
  733. }
  734. builders {
  735. name: "chromium-m106/try/cast_shell_android"
  736. location_regexp: ".*"
  737. location_regexp_exclude: ".+/[+]/docs/.+"
  738. location_regexp_exclude: ".+/[+]/infra/config/.+"
  739. location_filters {
  740. gerrit_host_regexp: ".*"
  741. gerrit_project_regexp: ".*"
  742. path_regexp: ".*"
  743. }
  744. location_filters {
  745. gerrit_host_regexp: ".*"
  746. gerrit_project_regexp: ".*"
  747. path_regexp: "docs/.+"
  748. exclude: true
  749. }
  750. location_filters {
  751. gerrit_host_regexp: ".*"
  752. gerrit_project_regexp: ".*"
  753. path_regexp: "infra/config/.+"
  754. exclude: true
  755. }
  756. }
  757. builders {
  758. name: "chromium-m106/try/cast_shell_linux"
  759. location_regexp: ".*"
  760. location_regexp_exclude: ".+/[+]/docs/.+"
  761. location_regexp_exclude: ".+/[+]/infra/config/.+"
  762. location_filters {
  763. gerrit_host_regexp: ".*"
  764. gerrit_project_regexp: ".*"
  765. path_regexp: ".*"
  766. }
  767. location_filters {
  768. gerrit_host_regexp: ".*"
  769. gerrit_project_regexp: ".*"
  770. path_regexp: "docs/.+"
  771. exclude: true
  772. }
  773. location_filters {
  774. gerrit_host_regexp: ".*"
  775. gerrit_project_regexp: ".*"
  776. path_regexp: "infra/config/.+"
  777. exclude: true
  778. }
  779. }
  780. builders {
  781. name: "chromium-m106/try/cast_shell_linux_dbg"
  782. location_regexp: ".+/[+]/chromecast/.+"
  783. location_regexp_exclude: ".+/[+]/docs/.+"
  784. location_regexp_exclude: ".+/[+]/infra/config/.+"
  785. location_filters {
  786. gerrit_host_regexp: ".*"
  787. gerrit_project_regexp: ".*"
  788. path_regexp: "chromecast/.+"
  789. }
  790. location_filters {
  791. gerrit_host_regexp: ".*"
  792. gerrit_project_regexp: ".*"
  793. path_regexp: "docs/.+"
  794. exclude: true
  795. }
  796. location_filters {
  797. gerrit_host_regexp: ".*"
  798. gerrit_project_regexp: ".*"
  799. path_regexp: "infra/config/.+"
  800. exclude: true
  801. }
  802. }
  803. builders {
  804. name: "chromium-m106/try/chromeos-amd64-generic-dbg"
  805. location_regexp: ".+/[+]/content/gpu/.+"
  806. location_regexp: ".+/[+]/media/.+"
  807. location_regexp_exclude: ".+/[+]/docs/.+"
  808. location_regexp_exclude: ".+/[+]/infra/config/.+"
  809. location_filters {
  810. gerrit_host_regexp: ".*"
  811. gerrit_project_regexp: ".*"
  812. path_regexp: "content/gpu/.+"
  813. }
  814. location_filters {
  815. gerrit_host_regexp: ".*"
  816. gerrit_project_regexp: ".*"
  817. path_regexp: "media/.+"
  818. }
  819. location_filters {
  820. gerrit_host_regexp: ".*"
  821. gerrit_project_regexp: ".*"
  822. path_regexp: "docs/.+"
  823. exclude: true
  824. }
  825. location_filters {
  826. gerrit_host_regexp: ".*"
  827. gerrit_project_regexp: ".*"
  828. path_regexp: "infra/config/.+"
  829. exclude: true
  830. }
  831. }
  832. builders {
  833. name: "chromium-m106/try/chromeos-amd64-generic-lacros-dbg"
  834. includable_only: true
  835. }
  836. builders {
  837. name: "chromium-m106/try/chromeos-amd64-generic-rel"
  838. location_regexp: ".*"
  839. location_regexp_exclude: ".+/[+]/docs/.+"
  840. location_regexp_exclude: ".+/[+]/infra/config/.+"
  841. location_filters {
  842. gerrit_host_regexp: ".*"
  843. gerrit_project_regexp: ".*"
  844. path_regexp: ".*"
  845. }
  846. location_filters {
  847. gerrit_host_regexp: ".*"
  848. gerrit_project_regexp: ".*"
  849. path_regexp: "docs/.+"
  850. exclude: true
  851. }
  852. location_filters {
  853. gerrit_host_regexp: ".*"
  854. gerrit_project_regexp: ".*"
  855. path_regexp: "infra/config/.+"
  856. exclude: true
  857. }
  858. }
  859. builders {
  860. name: "chromium-m106/try/chromeos-amd64-generic-rel-compilator"
  861. includable_only: true
  862. }
  863. builders {
  864. name: "chromium-m106/try/chromeos-arm-generic-rel"
  865. location_regexp: ".*"
  866. location_regexp_exclude: ".+/[+]/docs/.+"
  867. location_regexp_exclude: ".+/[+]/infra/config/.+"
  868. location_filters {
  869. gerrit_host_regexp: ".*"
  870. gerrit_project_regexp: ".*"
  871. path_regexp: ".*"
  872. }
  873. location_filters {
  874. gerrit_host_regexp: ".*"
  875. gerrit_project_regexp: ".*"
  876. path_regexp: "docs/.+"
  877. exclude: true
  878. }
  879. location_filters {
  880. gerrit_host_regexp: ".*"
  881. gerrit_project_regexp: ".*"
  882. path_regexp: "infra/config/.+"
  883. exclude: true
  884. }
  885. }
  886. builders {
  887. name: "chromium-m106/try/chromeos-arm64-generic-rel"
  888. includable_only: true
  889. }
  890. builders {
  891. name: "chromium-m106/try/chromeos-jacuzzi-rel"
  892. includable_only: true
  893. }
  894. builders {
  895. name: "chromium-m106/try/chromeos-kevin-rel"
  896. location_regexp: ".+/[+]/build/chromeos/.+"
  897. location_regexp: ".+/[+]/build/config/chromeos/.*"
  898. location_regexp: ".+/[+]/chromeos/CHROMEOS_LKGM"
  899. location_regexp_exclude: ".+/[+]/docs/.+"
  900. location_regexp_exclude: ".+/[+]/infra/config/.+"
  901. location_filters {
  902. gerrit_host_regexp: ".*"
  903. gerrit_project_regexp: ".*"
  904. path_regexp: "build/chromeos/.+"
  905. }
  906. location_filters {
  907. gerrit_host_regexp: ".*"
  908. gerrit_project_regexp: ".*"
  909. path_regexp: "build/config/chromeos/.*"
  910. }
  911. location_filters {
  912. gerrit_host_regexp: ".*"
  913. gerrit_project_regexp: ".*"
  914. path_regexp: "chromeos/CHROMEOS_LKGM"
  915. }
  916. location_filters {
  917. gerrit_host_regexp: ".*"
  918. gerrit_project_regexp: ".*"
  919. path_regexp: "docs/.+"
  920. exclude: true
  921. }
  922. location_filters {
  923. gerrit_host_regexp: ".*"
  924. gerrit_project_regexp: ".*"
  925. path_regexp: "infra/config/.+"
  926. exclude: true
  927. }
  928. }
  929. builders {
  930. name: "chromium-m106/try/chromeos-octopus-rel"
  931. includable_only: true
  932. }
  933. builders {
  934. name: "chromium-m106/try/chromium_presubmit"
  935. disable_reuse: true
  936. }
  937. builders {
  938. name: "chromium-m106/try/dawn-linux-x64-deps-rel"
  939. location_regexp: ".+/[+]/content/test/gpu/.+"
  940. location_regexp: ".+/[+]/gpu/.+"
  941. location_regexp: ".+/[+]/testing/buildbot/chromium.dawn.json"
  942. location_regexp: ".+/[+]/third_party/blink/renderer/modules/webgpu/.+"
  943. location_regexp: ".+/[+]/third_party/blink/web_tests/external/wpt/webgpu/.+"
  944. location_regexp: ".+/[+]/third_party/blink/web_tests/wpt_internal/webgpu/.+"
  945. location_regexp: ".+/[+]/third_party/blink/web_tests/WebGPUExpectations"
  946. location_regexp: ".+/[+]/third_party/dawn/.+"
  947. location_regexp: ".+/[+]/third_party/webgpu-cts/.+"
  948. location_regexp: ".+/[+]/tools/clang/scripts/update.py"
  949. location_regexp: ".+/[+]/ui/gl/features.gni"
  950. location_regexp_exclude: ".+/[+]/docs/.+"
  951. location_regexp_exclude: ".+/[+]/infra/config/.+"
  952. location_filters {
  953. gerrit_host_regexp: ".*"
  954. gerrit_project_regexp: ".*"
  955. path_regexp: "content/test/gpu/.+"
  956. }
  957. location_filters {
  958. gerrit_host_regexp: ".*"
  959. gerrit_project_regexp: ".*"
  960. path_regexp: "gpu/.+"
  961. }
  962. location_filters {
  963. gerrit_host_regexp: ".*"
  964. gerrit_project_regexp: ".*"
  965. path_regexp: "testing/buildbot/chromium.dawn.json"
  966. }
  967. location_filters {
  968. gerrit_host_regexp: ".*"
  969. gerrit_project_regexp: ".*"
  970. path_regexp: "third_party/blink/renderer/modules/webgpu/.+"
  971. }
  972. location_filters {
  973. gerrit_host_regexp: ".*"
  974. gerrit_project_regexp: ".*"
  975. path_regexp: "third_party/blink/web_tests/external/wpt/webgpu/.+"
  976. }
  977. location_filters {
  978. gerrit_host_regexp: ".*"
  979. gerrit_project_regexp: ".*"
  980. path_regexp: "third_party/blink/web_tests/wpt_internal/webgpu/.+"
  981. }
  982. location_filters {
  983. gerrit_host_regexp: ".*"
  984. gerrit_project_regexp: ".*"
  985. path_regexp: "third_party/blink/web_tests/WebGPUExpectations"
  986. }
  987. location_filters {
  988. gerrit_host_regexp: ".*"
  989. gerrit_project_regexp: ".*"
  990. path_regexp: "third_party/dawn/.+"
  991. }
  992. location_filters {
  993. gerrit_host_regexp: ".*"
  994. gerrit_project_regexp: ".*"
  995. path_regexp: "third_party/webgpu-cts/.+"
  996. }
  997. location_filters {
  998. gerrit_host_regexp: ".*"
  999. gerrit_project_regexp: ".*"
  1000. path_regexp: "tools/clang/scripts/update.py"
  1001. }
  1002. location_filters {
  1003. gerrit_host_regexp: ".*"
  1004. gerrit_project_regexp: ".*"
  1005. path_regexp: "ui/gl/features.gni"
  1006. }
  1007. location_filters {
  1008. gerrit_host_regexp: ".*"
  1009. gerrit_project_regexp: ".*"
  1010. path_regexp: "docs/.+"
  1011. exclude: true
  1012. }
  1013. location_filters {
  1014. gerrit_host_regexp: ".*"
  1015. gerrit_project_regexp: ".*"
  1016. path_regexp: "infra/config/.+"
  1017. exclude: true
  1018. }
  1019. }
  1020. builders {
  1021. name: "chromium-m106/try/dawn-mac-x64-deps-rel"
  1022. location_regexp: ".+/[+]/content/test/gpu/.+"
  1023. location_regexp: ".+/[+]/gpu/.+"
  1024. location_regexp: ".+/[+]/testing/buildbot/chromium.dawn.json"
  1025. location_regexp: ".+/[+]/third_party/blink/renderer/modules/webgpu/.+"
  1026. location_regexp: ".+/[+]/third_party/blink/web_tests/external/wpt/webgpu/.+"
  1027. location_regexp: ".+/[+]/third_party/blink/web_tests/wpt_internal/webgpu/.+"
  1028. location_regexp: ".+/[+]/third_party/blink/web_tests/WebGPUExpectations"
  1029. location_regexp: ".+/[+]/third_party/dawn/.+"
  1030. location_regexp: ".+/[+]/third_party/webgpu-cts/.+"
  1031. location_regexp: ".+/[+]/tools/clang/scripts/update.py"
  1032. location_regexp: ".+/[+]/ui/gl/features.gni"
  1033. location_regexp_exclude: ".+/[+]/docs/.+"
  1034. location_regexp_exclude: ".+/[+]/infra/config/.+"
  1035. location_filters {
  1036. gerrit_host_regexp: ".*"
  1037. gerrit_project_regexp: ".*"
  1038. path_regexp: "content/test/gpu/.+"
  1039. }
  1040. location_filters {
  1041. gerrit_host_regexp: ".*"
  1042. gerrit_project_regexp: ".*"
  1043. path_regexp: "gpu/.+"
  1044. }
  1045. location_filters {
  1046. gerrit_host_regexp: ".*"
  1047. gerrit_project_regexp: ".*"
  1048. path_regexp: "testing/buildbot/chromium.dawn.json"
  1049. }
  1050. location_filters {
  1051. gerrit_host_regexp: ".*"
  1052. gerrit_project_regexp: ".*"
  1053. path_regexp: "third_party/blink/renderer/modules/webgpu/.+"
  1054. }
  1055. location_filters {
  1056. gerrit_host_regexp: ".*"
  1057. gerrit_project_regexp: ".*"
  1058. path_regexp: "third_party/blink/web_tests/external/wpt/webgpu/.+"
  1059. }
  1060. location_filters {
  1061. gerrit_host_regexp: ".*"
  1062. gerrit_project_regexp: ".*"
  1063. path_regexp: "third_party/blink/web_tests/wpt_internal/webgpu/.+"
  1064. }
  1065. location_filters {
  1066. gerrit_host_regexp: ".*"
  1067. gerrit_project_regexp: ".*"
  1068. path_regexp: "third_party/blink/web_tests/WebGPUExpectations"
  1069. }
  1070. location_filters {
  1071. gerrit_host_regexp: ".*"
  1072. gerrit_project_regexp: ".*"
  1073. path_regexp: "third_party/dawn/.+"
  1074. }
  1075. location_filters {
  1076. gerrit_host_regexp: ".*"
  1077. gerrit_project_regexp: ".*"
  1078. path_regexp: "third_party/webgpu-cts/.+"
  1079. }
  1080. location_filters {
  1081. gerrit_host_regexp: ".*"
  1082. gerrit_project_regexp: ".*"
  1083. path_regexp: "tools/clang/scripts/update.py"
  1084. }
  1085. location_filters {
  1086. gerrit_host_regexp: ".*"
  1087. gerrit_project_regexp: ".*"
  1088. path_regexp: "ui/gl/features.gni"
  1089. }
  1090. location_filters {
  1091. gerrit_host_regexp: ".*"
  1092. gerrit_project_regexp: ".*"
  1093. path_regexp: "docs/.+"
  1094. exclude: true
  1095. }
  1096. location_filters {
  1097. gerrit_host_regexp: ".*"
  1098. gerrit_project_regexp: ".*"
  1099. path_regexp: "infra/config/.+"
  1100. exclude: true
  1101. }
  1102. }
  1103. builders {
  1104. name: "chromium-m106/try/dawn-win10-x64-deps-rel"
  1105. location_regexp: ".+/[+]/content/test/gpu/.+"
  1106. location_regexp: ".+/[+]/gpu/.+"
  1107. location_regexp: ".+/[+]/testing/buildbot/chromium.dawn.json"
  1108. location_regexp: ".+/[+]/third_party/blink/renderer/modules/webgpu/.+"
  1109. location_regexp: ".+/[+]/third_party/blink/web_tests/external/wpt/webgpu/.+"
  1110. location_regexp: ".+/[+]/third_party/blink/web_tests/wpt_internal/webgpu/.+"
  1111. location_regexp: ".+/[+]/third_party/blink/web_tests/WebGPUExpectations"
  1112. location_regexp: ".+/[+]/third_party/dawn/.+"
  1113. location_regexp: ".+/[+]/third_party/webgpu-cts/.+"
  1114. location_regexp: ".+/[+]/tools/clang/scripts/update.py"
  1115. location_regexp: ".+/[+]/ui/gl/features.gni"
  1116. location_regexp_exclude: ".+/[+]/docs/.+"
  1117. location_regexp_exclude: ".+/[+]/infra/config/.+"
  1118. location_filters {
  1119. gerrit_host_regexp: ".*"
  1120. gerrit_project_regexp: ".*"
  1121. path_regexp: "content/test/gpu/.+"
  1122. }
  1123. location_filters {
  1124. gerrit_host_regexp: ".*"
  1125. gerrit_project_regexp: ".*"
  1126. path_regexp: "gpu/.+"
  1127. }
  1128. location_filters {
  1129. gerrit_host_regexp: ".*"
  1130. gerrit_project_regexp: ".*"
  1131. path_regexp: "testing/buildbot/chromium.dawn.json"
  1132. }
  1133. location_filters {
  1134. gerrit_host_regexp: ".*"
  1135. gerrit_project_regexp: ".*"
  1136. path_regexp: "third_party/blink/renderer/modules/webgpu/.+"
  1137. }
  1138. location_filters {
  1139. gerrit_host_regexp: ".*"
  1140. gerrit_project_regexp: ".*"
  1141. path_regexp: "third_party/blink/web_tests/external/wpt/webgpu/.+"
  1142. }
  1143. location_filters {
  1144. gerrit_host_regexp: ".*"
  1145. gerrit_project_regexp: ".*"
  1146. path_regexp: "third_party/blink/web_tests/wpt_internal/webgpu/.+"
  1147. }
  1148. location_filters {
  1149. gerrit_host_regexp: ".*"
  1150. gerrit_project_regexp: ".*"
  1151. path_regexp: "third_party/blink/web_tests/WebGPUExpectations"
  1152. }
  1153. location_filters {
  1154. gerrit_host_regexp: ".*"
  1155. gerrit_project_regexp: ".*"
  1156. path_regexp: "third_party/dawn/.+"
  1157. }
  1158. location_filters {
  1159. gerrit_host_regexp: ".*"
  1160. gerrit_project_regexp: ".*"
  1161. path_regexp: "third_party/webgpu-cts/.+"
  1162. }
  1163. location_filters {
  1164. gerrit_host_regexp: ".*"
  1165. gerrit_project_regexp: ".*"
  1166. path_regexp: "tools/clang/scripts/update.py"
  1167. }
  1168. location_filters {
  1169. gerrit_host_regexp: ".*"
  1170. gerrit_project_regexp: ".*"
  1171. path_regexp: "ui/gl/features.gni"
  1172. }
  1173. location_filters {
  1174. gerrit_host_regexp: ".*"
  1175. gerrit_project_regexp: ".*"
  1176. path_regexp: "docs/.+"
  1177. exclude: true
  1178. }
  1179. location_filters {
  1180. gerrit_host_regexp: ".*"
  1181. gerrit_project_regexp: ".*"
  1182. path_regexp: "infra/config/.+"
  1183. exclude: true
  1184. }
  1185. }
  1186. builders {
  1187. name: "chromium-m106/try/dawn-win10-x86-deps-rel"
  1188. location_regexp: ".+/[+]/content/test/gpu/.+"
  1189. location_regexp: ".+/[+]/gpu/.+"
  1190. location_regexp: ".+/[+]/testing/buildbot/chromium.dawn.json"
  1191. location_regexp: ".+/[+]/third_party/blink/renderer/modules/webgpu/.+"
  1192. location_regexp: ".+/[+]/third_party/blink/web_tests/external/wpt/webgpu/.+"
  1193. location_regexp: ".+/[+]/third_party/blink/web_tests/wpt_internal/webgpu/.+"
  1194. location_regexp: ".+/[+]/third_party/blink/web_tests/WebGPUExpectations"
  1195. location_regexp: ".+/[+]/third_party/dawn/.+"
  1196. location_regexp: ".+/[+]/third_party/webgpu-cts/.+"
  1197. location_regexp: ".+/[+]/tools/clang/scripts/update.py"
  1198. location_regexp: ".+/[+]/ui/gl/features.gni"
  1199. location_regexp_exclude: ".+/[+]/docs/.+"
  1200. location_regexp_exclude: ".+/[+]/infra/config/.+"
  1201. location_filters {
  1202. gerrit_host_regexp: ".*"
  1203. gerrit_project_regexp: ".*"
  1204. path_regexp: "content/test/gpu/.+"
  1205. }
  1206. location_filters {
  1207. gerrit_host_regexp: ".*"
  1208. gerrit_project_regexp: ".*"
  1209. path_regexp: "gpu/.+"
  1210. }
  1211. location_filters {
  1212. gerrit_host_regexp: ".*"
  1213. gerrit_project_regexp: ".*"
  1214. path_regexp: "testing/buildbot/chromium.dawn.json"
  1215. }
  1216. location_filters {
  1217. gerrit_host_regexp: ".*"
  1218. gerrit_project_regexp: ".*"
  1219. path_regexp: "third_party/blink/renderer/modules/webgpu/.+"
  1220. }
  1221. location_filters {
  1222. gerrit_host_regexp: ".*"
  1223. gerrit_project_regexp: ".*"
  1224. path_regexp: "third_party/blink/web_tests/external/wpt/webgpu/.+"
  1225. }
  1226. location_filters {
  1227. gerrit_host_regexp: ".*"
  1228. gerrit_project_regexp: ".*"
  1229. path_regexp: "third_party/blink/web_tests/wpt_internal/webgpu/.+"
  1230. }
  1231. location_filters {
  1232. gerrit_host_regexp: ".*"
  1233. gerrit_project_regexp: ".*"
  1234. path_regexp: "third_party/blink/web_tests/WebGPUExpectations"
  1235. }
  1236. location_filters {
  1237. gerrit_host_regexp: ".*"
  1238. gerrit_project_regexp: ".*"
  1239. path_regexp: "third_party/dawn/.+"
  1240. }
  1241. location_filters {
  1242. gerrit_host_regexp: ".*"
  1243. gerrit_project_regexp: ".*"
  1244. path_regexp: "third_party/webgpu-cts/.+"
  1245. }
  1246. location_filters {
  1247. gerrit_host_regexp: ".*"
  1248. gerrit_project_regexp: ".*"
  1249. path_regexp: "tools/clang/scripts/update.py"
  1250. }
  1251. location_filters {
  1252. gerrit_host_regexp: ".*"
  1253. gerrit_project_regexp: ".*"
  1254. path_regexp: "ui/gl/features.gni"
  1255. }
  1256. location_filters {
  1257. gerrit_host_regexp: ".*"
  1258. gerrit_project_regexp: ".*"
  1259. path_regexp: "docs/.+"
  1260. exclude: true
  1261. }
  1262. location_filters {
  1263. gerrit_host_regexp: ".*"
  1264. gerrit_project_regexp: ".*"
  1265. path_regexp: "infra/config/.+"
  1266. exclude: true
  1267. }
  1268. }
  1269. builders {
  1270. name: "chromium-m106/try/fuchsia-arm64-cast"
  1271. location_regexp: ".+/[+]/chromecast/.+"
  1272. location_regexp_exclude: ".+/[+]/docs/.+"
  1273. location_regexp_exclude: ".+/[+]/infra/config/.+"
  1274. location_filters {
  1275. gerrit_host_regexp: ".*"
  1276. gerrit_project_regexp: ".*"
  1277. path_regexp: "chromecast/.+"
  1278. }
  1279. location_filters {
  1280. gerrit_host_regexp: ".*"
  1281. gerrit_project_regexp: ".*"
  1282. path_regexp: "docs/.+"
  1283. exclude: true
  1284. }
  1285. location_filters {
  1286. gerrit_host_regexp: ".*"
  1287. gerrit_project_regexp: ".*"
  1288. path_regexp: "infra/config/.+"
  1289. exclude: true
  1290. }
  1291. }
  1292. builders {
  1293. name: "chromium-m106/try/fuchsia-binary-size"
  1294. location_regexp: ".*"
  1295. location_regexp_exclude: ".+/[+]/docs/.+"
  1296. location_regexp_exclude: ".+/[+]/infra/config/.+"
  1297. location_filters {
  1298. gerrit_host_regexp: ".*"
  1299. gerrit_project_regexp: ".*"
  1300. path_regexp: ".*"
  1301. }
  1302. location_filters {
  1303. gerrit_host_regexp: ".*"
  1304. gerrit_project_regexp: ".*"
  1305. path_regexp: "docs/.+"
  1306. exclude: true
  1307. }
  1308. location_filters {
  1309. gerrit_host_regexp: ".*"
  1310. gerrit_project_regexp: ".*"
  1311. path_regexp: "infra/config/.+"
  1312. exclude: true
  1313. }
  1314. }
  1315. builders {
  1316. name: "chromium-m106/try/fuchsia-official"
  1317. includable_only: true
  1318. }
  1319. builders {
  1320. name: "chromium-m106/try/fuchsia-x64-cast"
  1321. location_regexp: ".*"
  1322. location_regexp_exclude: ".+/[+]/docs/.+"
  1323. location_regexp_exclude: ".+/[+]/infra/config/.+"
  1324. location_filters {
  1325. gerrit_host_regexp: ".*"
  1326. gerrit_project_regexp: ".*"
  1327. path_regexp: ".*"
  1328. }
  1329. location_filters {
  1330. gerrit_host_regexp: ".*"
  1331. gerrit_project_regexp: ".*"
  1332. path_regexp: "docs/.+"
  1333. exclude: true
  1334. }
  1335. location_filters {
  1336. gerrit_host_regexp: ".*"
  1337. gerrit_project_regexp: ".*"
  1338. path_regexp: "infra/config/.+"
  1339. exclude: true
  1340. }
  1341. }
  1342. builders {
  1343. name: "chromium-m106/try/fuchsia_arm64"
  1344. location_regexp: ".*"
  1345. location_regexp_exclude: ".+/[+]/docs/.+"
  1346. location_regexp_exclude: ".+/[+]/infra/config/.+"
  1347. location_filters {
  1348. gerrit_host_regexp: ".*"
  1349. gerrit_project_regexp: ".*"
  1350. path_regexp: ".*"
  1351. }
  1352. location_filters {
  1353. gerrit_host_regexp: ".*"
  1354. gerrit_project_regexp: ".*"
  1355. path_regexp: "docs/.+"
  1356. exclude: true
  1357. }
  1358. location_filters {
  1359. gerrit_host_regexp: ".*"
  1360. gerrit_project_regexp: ".*"
  1361. path_regexp: "infra/config/.+"
  1362. exclude: true
  1363. }
  1364. }
  1365. builders {
  1366. name: "chromium-m106/try/fuchsia_x64"
  1367. location_regexp: ".*"
  1368. location_regexp_exclude: ".+/[+]/docs/.+"
  1369. location_regexp_exclude: ".+/[+]/infra/config/.+"
  1370. location_filters {
  1371. gerrit_host_regexp: ".*"
  1372. gerrit_project_regexp: ".*"
  1373. path_regexp: ".*"
  1374. }
  1375. location_filters {
  1376. gerrit_host_regexp: ".*"
  1377. gerrit_project_regexp: ".*"
  1378. path_regexp: "docs/.+"
  1379. exclude: true
  1380. }
  1381. location_filters {
  1382. gerrit_host_regexp: ".*"
  1383. gerrit_project_regexp: ".*"
  1384. path_regexp: "infra/config/.+"
  1385. exclude: true
  1386. }
  1387. }
  1388. builders {
  1389. name: "chromium-m106/try/ios-simulator"
  1390. location_regexp: ".*"
  1391. location_regexp_exclude: ".+/[+]/docs/.+"
  1392. location_regexp_exclude: ".+/[+]/infra/config/.+"
  1393. location_filters {
  1394. gerrit_host_regexp: ".*"
  1395. gerrit_project_regexp: ".*"
  1396. path_regexp: ".*"
  1397. }
  1398. location_filters {
  1399. gerrit_host_regexp: ".*"
  1400. gerrit_project_regexp: ".*"
  1401. path_regexp: "docs/.+"
  1402. exclude: true
  1403. }
  1404. location_filters {
  1405. gerrit_host_regexp: ".*"
  1406. gerrit_project_regexp: ".*"
  1407. path_regexp: "infra/config/.+"
  1408. exclude: true
  1409. }
  1410. }
  1411. builders {
  1412. name: "chromium-m106/try/ios-simulator-cronet"
  1413. location_regexp: ".+/[+]/components/cronet/.+"
  1414. location_regexp: ".+/[+]/components/grpc_support/.+"
  1415. location_regexp: ".+/[+]/ios/.+"
  1416. location_regexp_exclude: ".+/[+]/docs/.+"
  1417. location_regexp_exclude: ".+/[+]/infra/config/.+"
  1418. location_regexp_exclude: ".+/[+]/components/cronet/android/.+"
  1419. location_filters {
  1420. gerrit_host_regexp: ".*"
  1421. gerrit_project_regexp: ".*"
  1422. path_regexp: "components/cronet/.+"
  1423. }
  1424. location_filters {
  1425. gerrit_host_regexp: ".*"
  1426. gerrit_project_regexp: ".*"
  1427. path_regexp: "components/grpc_support/.+"
  1428. }
  1429. location_filters {
  1430. gerrit_host_regexp: ".*"
  1431. gerrit_project_regexp: ".*"
  1432. path_regexp: "ios/.+"
  1433. }
  1434. location_filters {
  1435. gerrit_host_regexp: ".*"
  1436. gerrit_project_regexp: ".*"
  1437. path_regexp: "docs/.+"
  1438. exclude: true
  1439. }
  1440. location_filters {
  1441. gerrit_host_regexp: ".*"
  1442. gerrit_project_regexp: ".*"
  1443. path_regexp: "infra/config/.+"
  1444. exclude: true
  1445. }
  1446. location_filters {
  1447. gerrit_host_regexp: ".*"
  1448. gerrit_project_regexp: ".*"
  1449. path_regexp: "components/cronet/android/.+"
  1450. exclude: true
  1451. }
  1452. }
  1453. builders {
  1454. name: "chromium-m106/try/ios-simulator-full-configs"
  1455. location_regexp: ".+/[+]/ios/.+"
  1456. location_regexp_exclude: ".+/[+]/docs/.+"
  1457. location_regexp_exclude: ".+/[+]/infra/config/.+"
  1458. location_filters {
  1459. gerrit_host_regexp: ".*"
  1460. gerrit_project_regexp: ".*"
  1461. path_regexp: "ios/.+"
  1462. }
  1463. location_filters {
  1464. gerrit_host_regexp: ".*"
  1465. gerrit_project_regexp: ".*"
  1466. path_regexp: "docs/.+"
  1467. exclude: true
  1468. }
  1469. location_filters {
  1470. gerrit_host_regexp: ".*"
  1471. gerrit_project_regexp: ".*"
  1472. path_regexp: "infra/config/.+"
  1473. exclude: true
  1474. }
  1475. }
  1476. builders {
  1477. name: "chromium-m106/try/lacros-amd64-generic-rel"
  1478. location_regexp: ".*"
  1479. location_regexp_exclude: ".+/[+]/docs/.+"
  1480. location_regexp_exclude: ".+/[+]/infra/config/.+"
  1481. location_filters {
  1482. gerrit_host_regexp: ".*"
  1483. gerrit_project_regexp: ".*"
  1484. path_regexp: ".*"
  1485. }
  1486. location_filters {
  1487. gerrit_host_regexp: ".*"
  1488. gerrit_project_regexp: ".*"
  1489. path_regexp: "docs/.+"
  1490. exclude: true
  1491. }
  1492. location_filters {
  1493. gerrit_host_regexp: ".*"
  1494. gerrit_project_regexp: ".*"
  1495. path_regexp: "infra/config/.+"
  1496. exclude: true
  1497. }
  1498. }
  1499. builders {
  1500. name: "chromium-m106/try/lacros-arm-generic-rel"
  1501. location_regexp: ".*"
  1502. location_regexp_exclude: ".+/[+]/docs/.+"
  1503. location_regexp_exclude: ".+/[+]/infra/config/.+"
  1504. location_filters {
  1505. gerrit_host_regexp: ".*"
  1506. gerrit_project_regexp: ".*"
  1507. path_regexp: ".*"
  1508. }
  1509. location_filters {
  1510. gerrit_host_regexp: ".*"
  1511. gerrit_project_regexp: ".*"
  1512. path_regexp: "docs/.+"
  1513. exclude: true
  1514. }
  1515. location_filters {
  1516. gerrit_host_regexp: ".*"
  1517. gerrit_project_regexp: ".*"
  1518. path_regexp: "infra/config/.+"
  1519. exclude: true
  1520. }
  1521. }
  1522. builders {
  1523. name: "chromium-m106/try/lacros-arm64-generic-rel"
  1524. includable_only: true
  1525. }
  1526. builders {
  1527. name: "chromium-m106/try/linux-blink-rel"
  1528. location_regexp: ".+/[+]/cc/.+"
  1529. location_regexp: ".+/[+]/third_party/blink/renderer/core/paint/.+"
  1530. location_regexp: ".+/[+]/third_party/blink/renderer/core/svg/.+"
  1531. location_regexp: ".+/[+]/third_party/blink/renderer/platform/graphics/.+"
  1532. location_regexp_exclude: ".+/[+]/docs/.+"
  1533. location_regexp_exclude: ".+/[+]/infra/config/.+"
  1534. location_filters {
  1535. gerrit_host_regexp: ".*"
  1536. gerrit_project_regexp: ".*"
  1537. path_regexp: "cc/.+"
  1538. }
  1539. location_filters {
  1540. gerrit_host_regexp: ".*"
  1541. gerrit_project_regexp: ".*"
  1542. path_regexp: "third_party/blink/renderer/core/paint/.+"
  1543. }
  1544. location_filters {
  1545. gerrit_host_regexp: ".*"
  1546. gerrit_project_regexp: ".*"
  1547. path_regexp: "third_party/blink/renderer/core/svg/.+"
  1548. }
  1549. location_filters {
  1550. gerrit_host_regexp: ".*"
  1551. gerrit_project_regexp: ".*"
  1552. path_regexp: "third_party/blink/renderer/platform/graphics/.+"
  1553. }
  1554. location_filters {
  1555. gerrit_host_regexp: ".*"
  1556. gerrit_project_regexp: ".*"
  1557. path_regexp: "docs/.+"
  1558. exclude: true
  1559. }
  1560. location_filters {
  1561. gerrit_host_regexp: ".*"
  1562. gerrit_project_regexp: ".*"
  1563. path_regexp: "infra/config/.+"
  1564. exclude: true
  1565. }
  1566. }
  1567. builders {
  1568. name: "chromium-m106/try/linux-chromeos-compile-dbg"
  1569. location_regexp: ".*"
  1570. location_regexp_exclude: ".+/[+]/docs/.+"
  1571. location_regexp_exclude: ".+/[+]/infra/config/.+"
  1572. location_filters {
  1573. gerrit_host_regexp: ".*"
  1574. gerrit_project_regexp: ".*"
  1575. path_regexp: ".*"
  1576. }
  1577. location_filters {
  1578. gerrit_host_regexp: ".*"
  1579. gerrit_project_regexp: ".*"
  1580. path_regexp: "docs/.+"
  1581. exclude: true
  1582. }
  1583. location_filters {
  1584. gerrit_host_regexp: ".*"
  1585. gerrit_project_regexp: ".*"
  1586. path_regexp: "infra/config/.+"
  1587. exclude: true
  1588. }
  1589. }
  1590. builders {
  1591. name: "chromium-m106/try/linux-chromeos-dbg"
  1592. includable_only: true
  1593. }
  1594. builders {
  1595. name: "chromium-m106/try/linux-chromeos-rel"
  1596. location_regexp: ".*"
  1597. location_regexp_exclude: ".+/[+]/docs/.+"
  1598. location_regexp_exclude: ".+/[+]/infra/config/.+"
  1599. location_filters {
  1600. gerrit_host_regexp: ".*"
  1601. gerrit_project_regexp: ".*"
  1602. path_regexp: ".*"
  1603. }
  1604. location_filters {
  1605. gerrit_host_regexp: ".*"
  1606. gerrit_project_regexp: ".*"
  1607. path_regexp: "docs/.+"
  1608. exclude: true
  1609. }
  1610. location_filters {
  1611. gerrit_host_regexp: ".*"
  1612. gerrit_project_regexp: ".*"
  1613. path_regexp: "infra/config/.+"
  1614. exclude: true
  1615. }
  1616. }
  1617. builders {
  1618. name: "chromium-m106/try/linux-chromeos-rel-compilator"
  1619. includable_only: true
  1620. }
  1621. builders {
  1622. name: "chromium-m106/try/linux-lacros-rel"
  1623. location_regexp: ".*"
  1624. location_regexp_exclude: ".+/[+]/docs/.+"
  1625. location_regexp_exclude: ".+/[+]/infra/config/.+"
  1626. location_filters {
  1627. gerrit_host_regexp: ".*"
  1628. gerrit_project_regexp: ".*"
  1629. path_regexp: ".*"
  1630. }
  1631. location_filters {
  1632. gerrit_host_regexp: ".*"
  1633. gerrit_project_regexp: ".*"
  1634. path_regexp: "docs/.+"
  1635. exclude: true
  1636. }
  1637. location_filters {
  1638. gerrit_host_regexp: ".*"
  1639. gerrit_project_regexp: ".*"
  1640. path_regexp: "infra/config/.+"
  1641. exclude: true
  1642. }
  1643. }
  1644. builders {
  1645. name: "chromium-m106/try/linux-libfuzzer-asan-rel"
  1646. location_regexp: ".*"
  1647. location_regexp_exclude: ".+/[+]/docs/.+"
  1648. location_regexp_exclude: ".+/[+]/infra/config/.+"
  1649. location_filters {
  1650. gerrit_host_regexp: ".*"
  1651. gerrit_project_regexp: ".*"
  1652. path_regexp: ".*"
  1653. }
  1654. location_filters {
  1655. gerrit_host_regexp: ".*"
  1656. gerrit_project_regexp: ".*"
  1657. path_regexp: "docs/.+"
  1658. exclude: true
  1659. }
  1660. location_filters {
  1661. gerrit_host_regexp: ".*"
  1662. gerrit_project_regexp: ".*"
  1663. path_regexp: "infra/config/.+"
  1664. exclude: true
  1665. }
  1666. }
  1667. builders {
  1668. name: "chromium-m106/try/linux-official"
  1669. includable_only: true
  1670. }
  1671. builders {
  1672. name: "chromium-m106/try/linux-rel"
  1673. location_regexp: ".*"
  1674. location_regexp_exclude: ".+/[+]/docs/.+"
  1675. location_regexp_exclude: ".+/[+]/infra/config/.+"
  1676. location_filters {
  1677. gerrit_host_regexp: ".*"
  1678. gerrit_project_regexp: ".*"
  1679. path_regexp: ".*"
  1680. }
  1681. location_filters {
  1682. gerrit_host_regexp: ".*"
  1683. gerrit_project_regexp: ".*"
  1684. path_regexp: "docs/.+"
  1685. exclude: true
  1686. }
  1687. location_filters {
  1688. gerrit_host_regexp: ".*"
  1689. gerrit_project_regexp: ".*"
  1690. path_regexp: "infra/config/.+"
  1691. exclude: true
  1692. }
  1693. }
  1694. builders {
  1695. name: "chromium-m106/try/linux-rel-compilator"
  1696. includable_only: true
  1697. }
  1698. builders {
  1699. name: "chromium-m106/try/linux-wayland-rel"
  1700. location_regexp: ".*"
  1701. location_regexp_exclude: ".+/[+]/docs/.+"
  1702. location_regexp_exclude: ".+/[+]/infra/config/.+"
  1703. location_filters {
  1704. gerrit_host_regexp: ".*"
  1705. gerrit_project_regexp: ".*"
  1706. path_regexp: ".*"
  1707. }
  1708. location_filters {
  1709. gerrit_host_regexp: ".*"
  1710. gerrit_project_regexp: ".*"
  1711. path_regexp: "docs/.+"
  1712. exclude: true
  1713. }
  1714. location_filters {
  1715. gerrit_host_regexp: ".*"
  1716. gerrit_project_regexp: ".*"
  1717. path_regexp: "infra/config/.+"
  1718. exclude: true
  1719. }
  1720. }
  1721. builders {
  1722. name: "chromium-m106/try/linux_chromium_asan_rel_ng"
  1723. location_regexp: ".*"
  1724. location_regexp_exclude: ".+/[+]/docs/.+"
  1725. location_regexp_exclude: ".+/[+]/infra/config/.+"
  1726. location_filters {
  1727. gerrit_host_regexp: ".*"
  1728. gerrit_project_regexp: ".*"
  1729. path_regexp: ".*"
  1730. }
  1731. location_filters {
  1732. gerrit_host_regexp: ".*"
  1733. gerrit_project_regexp: ".*"
  1734. path_regexp: "docs/.+"
  1735. exclude: true
  1736. }
  1737. location_filters {
  1738. gerrit_host_regexp: ".*"
  1739. gerrit_project_regexp: ".*"
  1740. path_regexp: "infra/config/.+"
  1741. exclude: true
  1742. }
  1743. }
  1744. builders {
  1745. name: "chromium-m106/try/linux_chromium_asan_rel_ng-compilator"
  1746. includable_only: true
  1747. }
  1748. builders {
  1749. name: "chromium-m106/try/linux_chromium_compile_dbg_ng"
  1750. location_regexp: ".*"
  1751. location_regexp_exclude: ".+/[+]/docs/.+"
  1752. location_regexp_exclude: ".+/[+]/infra/config/.+"
  1753. location_filters {
  1754. gerrit_host_regexp: ".*"
  1755. gerrit_project_regexp: ".*"
  1756. path_regexp: ".*"
  1757. }
  1758. location_filters {
  1759. gerrit_host_regexp: ".*"
  1760. gerrit_project_regexp: ".*"
  1761. path_regexp: "docs/.+"
  1762. exclude: true
  1763. }
  1764. location_filters {
  1765. gerrit_host_regexp: ".*"
  1766. gerrit_project_regexp: ".*"
  1767. path_regexp: "infra/config/.+"
  1768. exclude: true
  1769. }
  1770. }
  1771. builders {
  1772. name: "chromium-m106/try/linux_chromium_dbg_ng"
  1773. location_regexp: ".+/[+]/build/.*check_gn_headers.*"
  1774. location_regexp_exclude: ".+/[+]/docs/.+"
  1775. location_regexp_exclude: ".+/[+]/infra/config/.+"
  1776. location_filters {
  1777. gerrit_host_regexp: ".*"
  1778. gerrit_project_regexp: ".*"
  1779. path_regexp: "build/.*check_gn_headers.*"
  1780. }
  1781. location_filters {
  1782. gerrit_host_regexp: ".*"
  1783. gerrit_project_regexp: ".*"
  1784. path_regexp: "docs/.+"
  1785. exclude: true
  1786. }
  1787. location_filters {
  1788. gerrit_host_regexp: ".*"
  1789. gerrit_project_regexp: ".*"
  1790. path_regexp: "infra/config/.+"
  1791. exclude: true
  1792. }
  1793. }
  1794. builders {
  1795. name: "chromium-m106/try/linux_chromium_tsan_rel_ng"
  1796. location_regexp: ".*"
  1797. location_regexp_exclude: ".+/[+]/docs/.+"
  1798. location_regexp_exclude: ".+/[+]/infra/config/.+"
  1799. location_filters {
  1800. gerrit_host_regexp: ".*"
  1801. gerrit_project_regexp: ".*"
  1802. path_regexp: ".*"
  1803. }
  1804. location_filters {
  1805. gerrit_host_regexp: ".*"
  1806. gerrit_project_regexp: ".*"
  1807. path_regexp: "docs/.+"
  1808. exclude: true
  1809. }
  1810. location_filters {
  1811. gerrit_host_regexp: ".*"
  1812. gerrit_project_regexp: ".*"
  1813. path_regexp: "infra/config/.+"
  1814. exclude: true
  1815. }
  1816. }
  1817. builders {
  1818. name: "chromium-m106/try/linux_chromium_tsan_rel_ng-compilator"
  1819. includable_only: true
  1820. }
  1821. builders {
  1822. name: "chromium-m106/try/linux_layout_tests_layout_ng_disabled"
  1823. location_regexp: ".+/[+]/third_party/blink/renderer/core/editing/.+"
  1824. location_regexp: ".+/[+]/third_party/blink/renderer/core/layout/.+"
  1825. location_regexp: ".+/[+]/third_party/blink/renderer/core/paint/.+"
  1826. location_regexp: ".+/[+]/third_party/blink/renderer/core/svg/.+"
  1827. location_regexp: ".+/[+]/third_party/blink/renderer/platform/fonts/shaping/.+"
  1828. location_regexp: ".+/[+]/third_party/blink/renderer/platform/graphics/.+"
  1829. location_regexp: ".+/[+]/third_party/blink/web_tests/.+"
  1830. location_regexp_exclude: ".+/[+]/docs/.+"
  1831. location_regexp_exclude: ".+/[+]/infra/config/.+"
  1832. location_filters {
  1833. gerrit_host_regexp: ".*"
  1834. gerrit_project_regexp: ".*"
  1835. path_regexp: "third_party/blink/renderer/core/editing/.+"
  1836. }
  1837. location_filters {
  1838. gerrit_host_regexp: ".*"
  1839. gerrit_project_regexp: ".*"
  1840. path_regexp: "third_party/blink/renderer/core/layout/.+"
  1841. }
  1842. location_filters {
  1843. gerrit_host_regexp: ".*"
  1844. gerrit_project_regexp: ".*"
  1845. path_regexp: "third_party/blink/renderer/core/paint/.+"
  1846. }
  1847. location_filters {
  1848. gerrit_host_regexp: ".*"
  1849. gerrit_project_regexp: ".*"
  1850. path_regexp: "third_party/blink/renderer/core/svg/.+"
  1851. }
  1852. location_filters {
  1853. gerrit_host_regexp: ".*"
  1854. gerrit_project_regexp: ".*"
  1855. path_regexp: "third_party/blink/renderer/platform/fonts/shaping/.+"
  1856. }
  1857. location_filters {
  1858. gerrit_host_regexp: ".*"
  1859. gerrit_project_regexp: ".*"
  1860. path_regexp: "third_party/blink/renderer/platform/graphics/.+"
  1861. }
  1862. location_filters {
  1863. gerrit_host_regexp: ".*"
  1864. gerrit_project_regexp: ".*"
  1865. path_regexp: "third_party/blink/web_tests/.+"
  1866. }
  1867. location_filters {
  1868. gerrit_host_regexp: ".*"
  1869. gerrit_project_regexp: ".*"
  1870. path_regexp: "docs/.+"
  1871. exclude: true
  1872. }
  1873. location_filters {
  1874. gerrit_host_regexp: ".*"
  1875. gerrit_project_regexp: ".*"
  1876. path_regexp: "infra/config/.+"
  1877. exclude: true
  1878. }
  1879. }
  1880. builders {
  1881. name: "chromium-m106/try/linux_optional_gpu_tests_rel"
  1882. location_regexp: ".+/[+]/chrome/browser/vr/.+"
  1883. location_regexp: ".+/[+]/content/browser/xr/.+"
  1884. location_regexp: ".+/[+]/content/test/gpu/.+"
  1885. location_regexp: ".+/[+]/gpu/.+"
  1886. location_regexp: ".+/[+]/media/audio/.+"
  1887. location_regexp: ".+/[+]/media/base/.+"
  1888. location_regexp: ".+/[+]/media/capture/.+"
  1889. location_regexp: ".+/[+]/media/filters/.+"
  1890. location_regexp: ".+/[+]/media/gpu/.+"
  1891. location_regexp: ".+/[+]/media/mojo/.+"
  1892. location_regexp: ".+/[+]/media/renderers/.+"
  1893. location_regexp: ".+/[+]/media/video/.+"
  1894. location_regexp: ".+/[+]/testing/buildbot/tryserver.chromium.linux.json"
  1895. location_regexp: ".+/[+]/testing/trigger_scripts/.+"
  1896. location_regexp: ".+/[+]/third_party/blink/renderer/modules/mediastream/.+"
  1897. location_regexp: ".+/[+]/third_party/blink/renderer/modules/webcodecs/.+"
  1898. location_regexp: ".+/[+]/third_party/blink/renderer/modules/webgl/.+"
  1899. location_regexp: ".+/[+]/third_party/blink/renderer/platform/graphics/gpu/.+"
  1900. location_regexp: ".+/[+]/tools/clang/scripts/update.py"
  1901. location_regexp: ".+/[+]/tools/mb/mb_config_expectations/tryserver.chromium.linux.json"
  1902. location_regexp: ".+/[+]/ui/gl/.+"
  1903. location_regexp_exclude: ".+/[+]/docs/.+"
  1904. location_regexp_exclude: ".+/[+]/infra/config/.+"
  1905. location_filters {
  1906. gerrit_host_regexp: ".*"
  1907. gerrit_project_regexp: ".*"
  1908. path_regexp: "chrome/browser/vr/.+"
  1909. }
  1910. location_filters {
  1911. gerrit_host_regexp: ".*"
  1912. gerrit_project_regexp: ".*"
  1913. path_regexp: "content/browser/xr/.+"
  1914. }
  1915. location_filters {
  1916. gerrit_host_regexp: ".*"
  1917. gerrit_project_regexp: ".*"
  1918. path_regexp: "content/test/gpu/.+"
  1919. }
  1920. location_filters {
  1921. gerrit_host_regexp: ".*"
  1922. gerrit_project_regexp: ".*"
  1923. path_regexp: "gpu/.+"
  1924. }
  1925. location_filters {
  1926. gerrit_host_regexp: ".*"
  1927. gerrit_project_regexp: ".*"
  1928. path_regexp: "media/audio/.+"
  1929. }
  1930. location_filters {
  1931. gerrit_host_regexp: ".*"
  1932. gerrit_project_regexp: ".*"
  1933. path_regexp: "media/base/.+"
  1934. }
  1935. location_filters {
  1936. gerrit_host_regexp: ".*"
  1937. gerrit_project_regexp: ".*"
  1938. path_regexp: "media/capture/.+"
  1939. }
  1940. location_filters {
  1941. gerrit_host_regexp: ".*"
  1942. gerrit_project_regexp: ".*"
  1943. path_regexp: "media/filters/.+"
  1944. }
  1945. location_filters {
  1946. gerrit_host_regexp: ".*"
  1947. gerrit_project_regexp: ".*"
  1948. path_regexp: "media/gpu/.+"
  1949. }
  1950. location_filters {
  1951. gerrit_host_regexp: ".*"
  1952. gerrit_project_regexp: ".*"
  1953. path_regexp: "media/mojo/.+"
  1954. }
  1955. location_filters {
  1956. gerrit_host_regexp: ".*"
  1957. gerrit_project_regexp: ".*"
  1958. path_regexp: "media/renderers/.+"
  1959. }
  1960. location_filters {
  1961. gerrit_host_regexp: ".*"
  1962. gerrit_project_regexp: ".*"
  1963. path_regexp: "media/video/.+"
  1964. }
  1965. location_filters {
  1966. gerrit_host_regexp: ".*"
  1967. gerrit_project_regexp: ".*"
  1968. path_regexp: "testing/buildbot/tryserver.chromium.linux.json"
  1969. }
  1970. location_filters {
  1971. gerrit_host_regexp: ".*"
  1972. gerrit_project_regexp: ".*"
  1973. path_regexp: "testing/trigger_scripts/.+"
  1974. }
  1975. location_filters {
  1976. gerrit_host_regexp: ".*"
  1977. gerrit_project_regexp: ".*"
  1978. path_regexp: "third_party/blink/renderer/modules/mediastream/.+"
  1979. }
  1980. location_filters {
  1981. gerrit_host_regexp: ".*"
  1982. gerrit_project_regexp: ".*"
  1983. path_regexp: "third_party/blink/renderer/modules/webcodecs/.+"
  1984. }
  1985. location_filters {
  1986. gerrit_host_regexp: ".*"
  1987. gerrit_project_regexp: ".*"
  1988. path_regexp: "third_party/blink/renderer/modules/webgl/.+"
  1989. }
  1990. location_filters {
  1991. gerrit_host_regexp: ".*"
  1992. gerrit_project_regexp: ".*"
  1993. path_regexp: "third_party/blink/renderer/platform/graphics/gpu/.+"
  1994. }
  1995. location_filters {
  1996. gerrit_host_regexp: ".*"
  1997. gerrit_project_regexp: ".*"
  1998. path_regexp: "tools/clang/scripts/update.py"
  1999. }
  2000. location_filters {
  2001. gerrit_host_regexp: ".*"
  2002. gerrit_project_regexp: ".*"
  2003. path_regexp: "tools/mb/mb_config_expectations/tryserver.chromium.linux.json"
  2004. }
  2005. location_filters {
  2006. gerrit_host_regexp: ".*"
  2007. gerrit_project_regexp: ".*"
  2008. path_regexp: "ui/gl/.+"
  2009. }
  2010. location_filters {
  2011. gerrit_host_regexp: ".*"
  2012. gerrit_project_regexp: ".*"
  2013. path_regexp: "docs/.+"
  2014. exclude: true
  2015. }
  2016. location_filters {
  2017. gerrit_host_regexp: ".*"
  2018. gerrit_project_regexp: ".*"
  2019. path_regexp: "infra/config/.+"
  2020. exclude: true
  2021. }
  2022. }
  2023. builders {
  2024. name: "chromium-m106/try/linux_vr"
  2025. location_regexp: ".+/[+]/chrome/browser/vr/.+"
  2026. location_regexp: ".+/[+]/content/browser/xr/.+"
  2027. location_regexp_exclude: ".+/[+]/docs/.+"
  2028. location_regexp_exclude: ".+/[+]/infra/config/.+"
  2029. location_filters {
  2030. gerrit_host_regexp: ".*"
  2031. gerrit_project_regexp: ".*"
  2032. path_regexp: "chrome/browser/vr/.+"
  2033. }
  2034. location_filters {
  2035. gerrit_host_regexp: ".*"
  2036. gerrit_project_regexp: ".*"
  2037. path_regexp: "content/browser/xr/.+"
  2038. }
  2039. location_filters {
  2040. gerrit_host_regexp: ".*"
  2041. gerrit_project_regexp: ".*"
  2042. path_regexp: "docs/.+"
  2043. exclude: true
  2044. }
  2045. location_filters {
  2046. gerrit_host_regexp: ".*"
  2047. gerrit_project_regexp: ".*"
  2048. path_regexp: "infra/config/.+"
  2049. exclude: true
  2050. }
  2051. }
  2052. builders {
  2053. name: "chromium-m106/try/mac-official"
  2054. includable_only: true
  2055. }
  2056. builders {
  2057. name: "chromium-m106/try/mac-rel"
  2058. location_regexp: ".*"
  2059. location_regexp_exclude: ".+/[+]/docs/.+"
  2060. location_regexp_exclude: ".+/[+]/infra/config/.+"
  2061. location_filters {
  2062. gerrit_host_regexp: ".*"
  2063. gerrit_project_regexp: ".*"
  2064. path_regexp: ".*"
  2065. }
  2066. location_filters {
  2067. gerrit_host_regexp: ".*"
  2068. gerrit_project_regexp: ".*"
  2069. path_regexp: "docs/.+"
  2070. exclude: true
  2071. }
  2072. location_filters {
  2073. gerrit_host_regexp: ".*"
  2074. gerrit_project_regexp: ".*"
  2075. path_regexp: "infra/config/.+"
  2076. exclude: true
  2077. }
  2078. }
  2079. builders {
  2080. name: "chromium-m106/try/mac-rel-compilator"
  2081. includable_only: true
  2082. }
  2083. builders {
  2084. name: "chromium-m106/try/mac_chromium_compile_dbg_ng"
  2085. location_regexp: ".*"
  2086. location_regexp_exclude: ".+/[+]/docs/.+"
  2087. location_regexp_exclude: ".+/[+]/infra/config/.+"
  2088. location_filters {
  2089. gerrit_host_regexp: ".*"
  2090. gerrit_project_regexp: ".*"
  2091. path_regexp: ".*"
  2092. }
  2093. location_filters {
  2094. gerrit_host_regexp: ".*"
  2095. gerrit_project_regexp: ".*"
  2096. path_regexp: "docs/.+"
  2097. exclude: true
  2098. }
  2099. location_filters {
  2100. gerrit_host_regexp: ".*"
  2101. gerrit_project_regexp: ".*"
  2102. path_regexp: "infra/config/.+"
  2103. exclude: true
  2104. }
  2105. }
  2106. builders {
  2107. name: "chromium-m106/try/mac_optional_gpu_tests_rel"
  2108. location_regexp: ".+/[+]/chrome/browser/vr/.+"
  2109. location_regexp: ".+/[+]/content/browser/xr/.+"
  2110. location_regexp: ".+/[+]/content/test/gpu/.+"
  2111. location_regexp: ".+/[+]/gpu/.+"
  2112. location_regexp: ".+/[+]/media/audio/.+"
  2113. location_regexp: ".+/[+]/media/base/.+"
  2114. location_regexp: ".+/[+]/media/capture/.+"
  2115. location_regexp: ".+/[+]/media/filters/.+"
  2116. location_regexp: ".+/[+]/media/gpu/.+"
  2117. location_regexp: ".+/[+]/media/mojo/.+"
  2118. location_regexp: ".+/[+]/media/renderers/.+"
  2119. location_regexp: ".+/[+]/media/video/.+"
  2120. location_regexp: ".+/[+]/services/shape_detection/.+"
  2121. location_regexp: ".+/[+]/testing/buildbot/tryserver.chromium.mac.json"
  2122. location_regexp: ".+/[+]/testing/trigger_scripts/.+"
  2123. location_regexp: ".+/[+]/third_party/blink/renderer/modules/mediastream/.+"
  2124. location_regexp: ".+/[+]/third_party/blink/renderer/modules/webcodecs/.+"
  2125. location_regexp: ".+/[+]/third_party/blink/renderer/modules/webgl/.+"
  2126. location_regexp: ".+/[+]/third_party/blink/renderer/platform/graphics/gpu/.+"
  2127. location_regexp: ".+/[+]/tools/clang/scripts/update.py"
  2128. location_regexp: ".+/[+]/tools/mb/mb_config_expectations/tryserver.chromium.mac.json"
  2129. location_regexp: ".+/[+]/ui/gl/.+"
  2130. location_regexp_exclude: ".+/[+]/docs/.+"
  2131. location_regexp_exclude: ".+/[+]/infra/config/.+"
  2132. location_filters {
  2133. gerrit_host_regexp: ".*"
  2134. gerrit_project_regexp: ".*"
  2135. path_regexp: "chrome/browser/vr/.+"
  2136. }
  2137. location_filters {
  2138. gerrit_host_regexp: ".*"
  2139. gerrit_project_regexp: ".*"
  2140. path_regexp: "content/browser/xr/.+"
  2141. }
  2142. location_filters {
  2143. gerrit_host_regexp: ".*"
  2144. gerrit_project_regexp: ".*"
  2145. path_regexp: "content/test/gpu/.+"
  2146. }
  2147. location_filters {
  2148. gerrit_host_regexp: ".*"
  2149. gerrit_project_regexp: ".*"
  2150. path_regexp: "gpu/.+"
  2151. }
  2152. location_filters {
  2153. gerrit_host_regexp: ".*"
  2154. gerrit_project_regexp: ".*"
  2155. path_regexp: "media/audio/.+"
  2156. }
  2157. location_filters {
  2158. gerrit_host_regexp: ".*"
  2159. gerrit_project_regexp: ".*"
  2160. path_regexp: "media/base/.+"
  2161. }
  2162. location_filters {
  2163. gerrit_host_regexp: ".*"
  2164. gerrit_project_regexp: ".*"
  2165. path_regexp: "media/capture/.+"
  2166. }
  2167. location_filters {
  2168. gerrit_host_regexp: ".*"
  2169. gerrit_project_regexp: ".*"
  2170. path_regexp: "media/filters/.+"
  2171. }
  2172. location_filters {
  2173. gerrit_host_regexp: ".*"
  2174. gerrit_project_regexp: ".*"
  2175. path_regexp: "media/gpu/.+"
  2176. }
  2177. location_filters {
  2178. gerrit_host_regexp: ".*"
  2179. gerrit_project_regexp: ".*"
  2180. path_regexp: "media/mojo/.+"
  2181. }
  2182. location_filters {
  2183. gerrit_host_regexp: ".*"
  2184. gerrit_project_regexp: ".*"
  2185. path_regexp: "media/renderers/.+"
  2186. }
  2187. location_filters {
  2188. gerrit_host_regexp: ".*"
  2189. gerrit_project_regexp: ".*"
  2190. path_regexp: "media/video/.+"
  2191. }
  2192. location_filters {
  2193. gerrit_host_regexp: ".*"
  2194. gerrit_project_regexp: ".*"
  2195. path_regexp: "services/shape_detection/.+"
  2196. }
  2197. location_filters {
  2198. gerrit_host_regexp: ".*"
  2199. gerrit_project_regexp: ".*"
  2200. path_regexp: "testing/buildbot/tryserver.chromium.mac.json"
  2201. }
  2202. location_filters {
  2203. gerrit_host_regexp: ".*"
  2204. gerrit_project_regexp: ".*"
  2205. path_regexp: "testing/trigger_scripts/.+"
  2206. }
  2207. location_filters {
  2208. gerrit_host_regexp: ".*"
  2209. gerrit_project_regexp: ".*"
  2210. path_regexp: "third_party/blink/renderer/modules/mediastream/.+"
  2211. }
  2212. location_filters {
  2213. gerrit_host_regexp: ".*"
  2214. gerrit_project_regexp: ".*"
  2215. path_regexp: "third_party/blink/renderer/modules/webcodecs/.+"
  2216. }
  2217. location_filters {
  2218. gerrit_host_regexp: ".*"
  2219. gerrit_project_regexp: ".*"
  2220. path_regexp: "third_party/blink/renderer/modules/webgl/.+"
  2221. }
  2222. location_filters {
  2223. gerrit_host_regexp: ".*"
  2224. gerrit_project_regexp: ".*"
  2225. path_regexp: "third_party/blink/renderer/platform/graphics/gpu/.+"
  2226. }
  2227. location_filters {
  2228. gerrit_host_regexp: ".*"
  2229. gerrit_project_regexp: ".*"
  2230. path_regexp: "tools/clang/scripts/update.py"
  2231. }
  2232. location_filters {
  2233. gerrit_host_regexp: ".*"
  2234. gerrit_project_regexp: ".*"
  2235. path_regexp: "tools/mb/mb_config_expectations/tryserver.chromium.mac.json"
  2236. }
  2237. location_filters {
  2238. gerrit_host_regexp: ".*"
  2239. gerrit_project_regexp: ".*"
  2240. path_regexp: "ui/gl/.+"
  2241. }
  2242. location_filters {
  2243. gerrit_host_regexp: ".*"
  2244. gerrit_project_regexp: ".*"
  2245. path_regexp: "docs/.+"
  2246. exclude: true
  2247. }
  2248. location_filters {
  2249. gerrit_host_regexp: ".*"
  2250. gerrit_project_regexp: ".*"
  2251. path_regexp: "infra/config/.+"
  2252. exclude: true
  2253. }
  2254. }
  2255. builders {
  2256. name: "chromium-m106/try/try-nougat-phone-tester"
  2257. includable_only: true
  2258. }
  2259. builders {
  2260. name: "chromium-m106/try/win-libfuzzer-asan-rel"
  2261. location_regexp: ".*"
  2262. location_regexp_exclude: ".+/[+]/docs/.+"
  2263. location_regexp_exclude: ".+/[+]/infra/config/.+"
  2264. location_filters {
  2265. gerrit_host_regexp: ".*"
  2266. gerrit_project_regexp: ".*"
  2267. path_regexp: ".*"
  2268. }
  2269. location_filters {
  2270. gerrit_host_regexp: ".*"
  2271. gerrit_project_regexp: ".*"
  2272. path_regexp: "docs/.+"
  2273. exclude: true
  2274. }
  2275. location_filters {
  2276. gerrit_host_regexp: ".*"
  2277. gerrit_project_regexp: ".*"
  2278. path_regexp: "infra/config/.+"
  2279. exclude: true
  2280. }
  2281. }
  2282. builders {
  2283. name: "chromium-m106/try/win-official"
  2284. includable_only: true
  2285. }
  2286. builders {
  2287. name: "chromium-m106/try/win10_chromium_x64_rel_ng"
  2288. location_regexp: ".*"
  2289. location_regexp_exclude: ".+/[+]/docs/.+"
  2290. location_regexp_exclude: ".+/[+]/infra/config/.+"
  2291. location_filters {
  2292. gerrit_host_regexp: ".*"
  2293. gerrit_project_regexp: ".*"
  2294. path_regexp: ".*"
  2295. }
  2296. location_filters {
  2297. gerrit_host_regexp: ".*"
  2298. gerrit_project_regexp: ".*"
  2299. path_regexp: "docs/.+"
  2300. exclude: true
  2301. }
  2302. location_filters {
  2303. gerrit_host_regexp: ".*"
  2304. gerrit_project_regexp: ".*"
  2305. path_regexp: "infra/config/.+"
  2306. exclude: true
  2307. }
  2308. }
  2309. builders {
  2310. name: "chromium-m106/try/win10_chromium_x64_rel_ng-compilator"
  2311. includable_only: true
  2312. }
  2313. builders {
  2314. name: "chromium-m106/try/win32-official"
  2315. includable_only: true
  2316. }
  2317. builders {
  2318. name: "chromium-m106/try/win7-rel"
  2319. location_regexp: ".+/[+]/sandbox/win/.+"
  2320. location_regexp: ".+/[+]/sandbox/policy/win/.+"
  2321. location_regexp_exclude: ".+/[+]/docs/.+"
  2322. location_regexp_exclude: ".+/[+]/infra/config/.+"
  2323. location_filters {
  2324. gerrit_host_regexp: ".*"
  2325. gerrit_project_regexp: ".*"
  2326. path_regexp: "sandbox/win/.+"
  2327. }
  2328. location_filters {
  2329. gerrit_host_regexp: ".*"
  2330. gerrit_project_regexp: ".*"
  2331. path_regexp: "sandbox/policy/win/.+"
  2332. }
  2333. location_filters {
  2334. gerrit_host_regexp: ".*"
  2335. gerrit_project_regexp: ".*"
  2336. path_regexp: "docs/.+"
  2337. exclude: true
  2338. }
  2339. location_filters {
  2340. gerrit_host_regexp: ".*"
  2341. gerrit_project_regexp: ".*"
  2342. path_regexp: "infra/config/.+"
  2343. exclude: true
  2344. }
  2345. }
  2346. builders {
  2347. name: "chromium-m106/try/win_chromium_compile_dbg_ng"
  2348. cancel_stale: NO
  2349. location_regexp: ".*"
  2350. location_regexp_exclude: ".+/[+]/docs/.+"
  2351. location_regexp_exclude: ".+/[+]/infra/config/.+"
  2352. location_filters {
  2353. gerrit_host_regexp: ".*"
  2354. gerrit_project_regexp: ".*"
  2355. path_regexp: ".*"
  2356. }
  2357. location_filters {
  2358. gerrit_host_regexp: ".*"
  2359. gerrit_project_regexp: ".*"
  2360. path_regexp: "docs/.+"
  2361. exclude: true
  2362. }
  2363. location_filters {
  2364. gerrit_host_regexp: ".*"
  2365. gerrit_project_regexp: ".*"
  2366. path_regexp: "infra/config/.+"
  2367. exclude: true
  2368. }
  2369. }
  2370. builders {
  2371. name: "chromium-m106/try/win_optional_gpu_tests_rel"
  2372. location_regexp: ".+/[+]/chrome/browser/vr/.+"
  2373. location_regexp: ".+/[+]/content/browser/xr/.+"
  2374. location_regexp: ".+/[+]/content/test/gpu/.+"
  2375. location_regexp: ".+/[+]/device/vr/.+"
  2376. location_regexp: ".+/[+]/gpu/.+"
  2377. location_regexp: ".+/[+]/media/audio/.+"
  2378. location_regexp: ".+/[+]/media/base/.+"
  2379. location_regexp: ".+/[+]/media/capture/.+"
  2380. location_regexp: ".+/[+]/media/filters/.+"
  2381. location_regexp: ".+/[+]/media/gpu/.+"
  2382. location_regexp: ".+/[+]/media/mojo/.+"
  2383. location_regexp: ".+/[+]/media/renderers/.+"
  2384. location_regexp: ".+/[+]/media/video/.+"
  2385. location_regexp: ".+/[+]/testing/buildbot/tryserver.chromium.win.json"
  2386. location_regexp: ".+/[+]/testing/trigger_scripts/.+"
  2387. location_regexp: ".+/[+]/third_party/blink/renderer/modules/vr/.+"
  2388. location_regexp: ".+/[+]/third_party/blink/renderer/modules/mediastream/.+"
  2389. location_regexp: ".+/[+]/third_party/blink/renderer/modules/webcodecs/.+"
  2390. location_regexp: ".+/[+]/third_party/blink/renderer/modules/webgl/.+"
  2391. location_regexp: ".+/[+]/third_party/blink/renderer/modules/xr/.+"
  2392. location_regexp: ".+/[+]/third_party/blink/renderer/platform/graphics/gpu/.+"
  2393. location_regexp: ".+/[+]/tools/clang/scripts/update.py"
  2394. location_regexp: ".+/[+]/tools/mb/mb_config_expectations/tryserver.chromium.win.json"
  2395. location_regexp: ".+/[+]/ui/gl/.+"
  2396. location_regexp_exclude: ".+/[+]/docs/.+"
  2397. location_regexp_exclude: ".+/[+]/infra/config/.+"
  2398. location_filters {
  2399. gerrit_host_regexp: ".*"
  2400. gerrit_project_regexp: ".*"
  2401. path_regexp: "chrome/browser/vr/.+"
  2402. }
  2403. location_filters {
  2404. gerrit_host_regexp: ".*"
  2405. gerrit_project_regexp: ".*"
  2406. path_regexp: "content/browser/xr/.+"
  2407. }
  2408. location_filters {
  2409. gerrit_host_regexp: ".*"
  2410. gerrit_project_regexp: ".*"
  2411. path_regexp: "content/test/gpu/.+"
  2412. }
  2413. location_filters {
  2414. gerrit_host_regexp: ".*"
  2415. gerrit_project_regexp: ".*"
  2416. path_regexp: "device/vr/.+"
  2417. }
  2418. location_filters {
  2419. gerrit_host_regexp: ".*"
  2420. gerrit_project_regexp: ".*"
  2421. path_regexp: "gpu/.+"
  2422. }
  2423. location_filters {
  2424. gerrit_host_regexp: ".*"
  2425. gerrit_project_regexp: ".*"
  2426. path_regexp: "media/audio/.+"
  2427. }
  2428. location_filters {
  2429. gerrit_host_regexp: ".*"
  2430. gerrit_project_regexp: ".*"
  2431. path_regexp: "media/base/.+"
  2432. }
  2433. location_filters {
  2434. gerrit_host_regexp: ".*"
  2435. gerrit_project_regexp: ".*"
  2436. path_regexp: "media/capture/.+"
  2437. }
  2438. location_filters {
  2439. gerrit_host_regexp: ".*"
  2440. gerrit_project_regexp: ".*"
  2441. path_regexp: "media/filters/.+"
  2442. }
  2443. location_filters {
  2444. gerrit_host_regexp: ".*"
  2445. gerrit_project_regexp: ".*"
  2446. path_regexp: "media/gpu/.+"
  2447. }
  2448. location_filters {
  2449. gerrit_host_regexp: ".*"
  2450. gerrit_project_regexp: ".*"
  2451. path_regexp: "media/mojo/.+"
  2452. }
  2453. location_filters {
  2454. gerrit_host_regexp: ".*"
  2455. gerrit_project_regexp: ".*"
  2456. path_regexp: "media/renderers/.+"
  2457. }
  2458. location_filters {
  2459. gerrit_host_regexp: ".*"
  2460. gerrit_project_regexp: ".*"
  2461. path_regexp: "media/video/.+"
  2462. }
  2463. location_filters {
  2464. gerrit_host_regexp: ".*"
  2465. gerrit_project_regexp: ".*"
  2466. path_regexp: "testing/buildbot/tryserver.chromium.win.json"
  2467. }
  2468. location_filters {
  2469. gerrit_host_regexp: ".*"
  2470. gerrit_project_regexp: ".*"
  2471. path_regexp: "testing/trigger_scripts/.+"
  2472. }
  2473. location_filters {
  2474. gerrit_host_regexp: ".*"
  2475. gerrit_project_regexp: ".*"
  2476. path_regexp: "third_party/blink/renderer/modules/vr/.+"
  2477. }
  2478. location_filters {
  2479. gerrit_host_regexp: ".*"
  2480. gerrit_project_regexp: ".*"
  2481. path_regexp: "third_party/blink/renderer/modules/mediastream/.+"
  2482. }
  2483. location_filters {
  2484. gerrit_host_regexp: ".*"
  2485. gerrit_project_regexp: ".*"
  2486. path_regexp: "third_party/blink/renderer/modules/webcodecs/.+"
  2487. }
  2488. location_filters {
  2489. gerrit_host_regexp: ".*"
  2490. gerrit_project_regexp: ".*"
  2491. path_regexp: "third_party/blink/renderer/modules/webgl/.+"
  2492. }
  2493. location_filters {
  2494. gerrit_host_regexp: ".*"
  2495. gerrit_project_regexp: ".*"
  2496. path_regexp: "third_party/blink/renderer/modules/xr/.+"
  2497. }
  2498. location_filters {
  2499. gerrit_host_regexp: ".*"
  2500. gerrit_project_regexp: ".*"
  2501. path_regexp: "third_party/blink/renderer/platform/graphics/gpu/.+"
  2502. }
  2503. location_filters {
  2504. gerrit_host_regexp: ".*"
  2505. gerrit_project_regexp: ".*"
  2506. path_regexp: "tools/clang/scripts/update.py"
  2507. }
  2508. location_filters {
  2509. gerrit_host_regexp: ".*"
  2510. gerrit_project_regexp: ".*"
  2511. path_regexp: "tools/mb/mb_config_expectations/tryserver.chromium.win.json"
  2512. }
  2513. location_filters {
  2514. gerrit_host_regexp: ".*"
  2515. gerrit_project_regexp: ".*"
  2516. path_regexp: "ui/gl/.+"
  2517. }
  2518. location_filters {
  2519. gerrit_host_regexp: ".*"
  2520. gerrit_project_regexp: ".*"
  2521. path_regexp: "docs/.+"
  2522. exclude: true
  2523. }
  2524. location_filters {
  2525. gerrit_host_regexp: ".*"
  2526. gerrit_project_regexp: ".*"
  2527. path_regexp: "infra/config/.+"
  2528. exclude: true
  2529. }
  2530. }
  2531. retry_config {
  2532. single_quota: 1
  2533. global_quota: 2
  2534. failure_weight: 1
  2535. transient_failure_weight: 1
  2536. timeout_weight: 2
  2537. }
  2538. }
  2539. }
  2540. additional_modes {
  2541. name: "QUICK_DRY_RUN"
  2542. cq_label_value: 1
  2543. triggering_label: "Quick-Run"
  2544. triggering_value: 1
  2545. }
  2546. }