about summary refs log tree commit diff
path: root/pkgs/development/tools/electron/info.json
blob: 8eeb05107c830bee1a2d2eed2d5e2c96f3ac7cd5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
{
    "27": {
        "chrome": "118.0.5993.159",
        "chromium": {
            "deps": {
                "gn": {
                    "hash": "sha256-SwlET5h5xtDlQvlt8wbG73ZfUWJr4hlWc+uQsBH5x9M=",
                    "rev": "cc56a0f98bb34accd5323316e0292575ff17a5d4",
                    "url": "https://gn.googlesource.com/gn",
                    "version": "2023-08-10"
                }
            },
            "version": "118.0.5993.159"
        },
        "chromium_npm_hash": "sha256-5cjqpYB45nw2gop54VP+tL7/0w63nQGfQ4x6a6KS7XQ=",
        "deps": {
            "src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-3yFHjd3LMXVbF4LX6Bi3yJF0CDVug0cDpGFbP8Ibvk4=",
                "postFetch": "rm -r $out/third_party/blink/web_tests; rm -r $out/third_party/hunspell/tests; rm -r $out/content/test/data; rm -r $out/courgette/testdata; rm -r $out/extensions/test/data; rm -r $out/media/test/data; ",
                "rev": "118.0.5993.159",
                "url": "https://chromium.googlesource.com/chromium/src.git"
            },
            "src/chrome/test/data/perf/canvas_bench": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-svOuyBGKloBLM11xLlWCDsB4PpRjdKTBdW2UEW4JQjM=",
                "rev": "a7b40ea5ae0239517d78845a5fc9b12976bfc732",
                "url": "https://chromium.googlesource.com/chromium/canvas_bench.git"
            },
            "src/chrome/test/data/perf/frame_rate/content": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-t4kcuvH0rkPBkcdiMsoNQaRwU09eU+oSvyHDiAHrKXo=",
                "rev": "c10272c88463efeef6bb19c9ec07c42bc8fe22b9",
                "url": "https://chromium.googlesource.com/chromium/frame_rate/content.git"
            },
            "src/chrome/test/data/xr/webvr_info": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-BsAPwc4oEWri0TlqhyxqFNqKdfgVSrB0vQyISmYY4eg=",
                "rev": "c58ae99b9ff9e2aa4c524633519570bf33536248",
                "url": "https://chromium.googlesource.com/external/github.com/toji/webvr.info.git"
            },
            "src/docs/website": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-6/LSJGUVZuJe1WIBJEJO/dXZYnsby+X3EzeBbvWjUZU=",
                "rev": "243c1406199960e001e1dceccafc6fc2db6897f9",
                "url": "https://chromium.googlesource.com/website.git"
            },
            "src/electron": {
                "fetcher": "fetchFromGitHub",
                "hash": "sha256-DmDAKUUyiDASGGylDVQe2OkDVfiA1ficDG+oaMbKqdo=",
                "owner": "electron",
                "repo": "electron",
                "rev": "v27.3.11"
            },
            "src/media/cdm/api": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-6J6aSYW0or99VAgMNJJOdJqMJspoG7w1HxDN50MV5bw=",
                "rev": "fef0b5aa1bd31efb88dfab804bdbe614f3d54f28",
                "url": "https://chromium.googlesource.com/chromium/cdm.git"
            },
            "src/net/third_party/quiche/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-hB3gUqi/9SI9PGNkXNpli/TifI1kJEBScqRFIw7hm4c=",
                "rev": "7d201495d8a5ef115787765fb12af0d5575281c1",
                "url": "https://quiche.googlesource.com/quiche.git"
            },
            "src/third_party/angle": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-It05E3+qG17dEbhbaX/VQJaydWOQ1mpsj95dT5IJkgo=",
                "rev": "05f45adc147393562b518ca1f82a3ccba7ee40f7",
                "url": "https://chromium.googlesource.com/angle/angle.git"
            },
            "src/third_party/angle/third_party/VK-GL-CTS/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-LWGll3KiMYndiLZBizhN+mzELjYpSxvtIctH+LO+20Q=",
                "rev": "385ae8bed1f99e497cdf2f3a5640905b90e69292",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/VK-GL-CTS"
            },
            "src/third_party/angle/third_party/glmark2/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-L7+zWM0qn8WFhmON7DGvarTsN1YHt1sn5+hazTOZrrk=",
                "rev": "ca8de51fedb70bace5351c6b002eb952c747e889",
                "url": "https://chromium.googlesource.com/external/github.com/glmark2/glmark2"
            },
            "src/third_party/angle/third_party/rapidjson/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-btUl1a/B0sXwf/+hyvCvVJjWqIkXfVYCpHm3TeBuOxk=",
                "rev": "781a4e667d84aeedbeb8184b7b62425ea66ec59f",
                "url": "https://chromium.googlesource.com/external/github.com/Tencent/rapidjson"
            },
            "src/third_party/anonymous_tokens/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-TcNIocV0p53NJCudvy8wf+fIPIP2tnkoBf1F7mEBFLs=",
                "rev": "8c8d20953d502db31fec2353b199e6c22ef0236e",
                "url": "https://chromium.googlesource.com/external/github.com/google/anonymous-tokens.git"
            },
            "src/third_party/beto-core/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-qgsPK7RyVqGRji0sTcMck1JqX9iCsYIExGoGwNZyVT0=",
                "rev": "b902b346037ea3f4aadf8177021f6f917b16e648",
                "url": "https://beto-core.googlesource.com/beto-core.git"
            },
            "src/third_party/boringssl/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-P0Aj2Puy6S1aRIHrAhmokiAmSmHfuWQR6UW/AbQFW+M=",
                "rev": "85081c6b3c0b26129893c1bff6bfa42bc3ba2d2c",
                "url": "https://boringssl.googlesource.com/boringssl.git"
            },
            "src/third_party/breakpad/breakpad": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-8AkC/8oX4OWAcV21laJ0AeMRB9G04rFc6UJFy7Wus4A=",
                "rev": "8988364bcddd9b194b0bf931c10bc125987330ed",
                "url": "https://chromium.googlesource.com/breakpad/breakpad.git"
            },
            "src/third_party/cast_core/public/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-AalRQhJmornCqmvE2+36J/3LubaA0jr6P1PXy32lX4I=",
                "rev": "71f51fd6fa45fac73848f65421081edd723297cd",
                "url": "https://chromium.googlesource.com/cast_core/public"
            },
            "src/third_party/catapult": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-AK85yVeCR3GKGtdW8G9Of+6UMJirJ9BNVyp9pffft7s=",
                "rev": "f16ca3c78e46cefa982100444844da3fcb25390e",
                "url": "https://chromium.googlesource.com/catapult.git"
            },
            "src/third_party/ced/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-ySG74Rj2i2c/PltEgHVEDq+N8yd9gZmxNktc56zIUiY=",
                "rev": "ba412eaaacd3186085babcd901679a48863c7dd5",
                "url": "https://chromium.googlesource.com/external/github.com/google/compact_enc_det.git"
            },
            "src/third_party/chromium-variations": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-2lP3uGdqIZY3DpxGzfDhR2dW+o3Arduaeu56Au7h/5Q=",
                "rev": "e0c145ca93c0439a65bcb1607e813edfbc97520b",
                "url": "https://chromium.googlesource.com/chromium-variations.git"
            },
            "src/third_party/clang-format/script": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-7VvofDDQe+SoMRBfVk26q+C+OPyOE7QH35wVWkfDKxs=",
                "rev": "e5337933f2951cacd3aeacd238ce4578163ca0b9",
                "url": "https://chromium.googlesource.com/external/github.com/llvm/llvm-project/clang/tools/clang-format.git"
            },
            "src/third_party/cld_3/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-C3MOMBUy9jgkT9BAi/Fgm2UH4cxRuwSBEcRl3hzM2Ss=",
                "rev": "b48dc46512566f5a2d41118c8c1116c4f96dc661",
                "url": "https://chromium.googlesource.com/external/github.com/google/cld_3.git"
            },
            "src/third_party/colorama/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-6ZTdPYSHdQOLYMSnE+Tp7PgsVTs3U2awGu9Qb4Rg/tk=",
                "rev": "3de9f013df4b470069d03d250224062e8cf15c49",
                "url": "https://chromium.googlesource.com/external/colorama.git"
            },
            "src/third_party/content_analysis_sdk/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-auHBX00DSvyMyhEsZGkpKh9KOO2RcaeP9PK6kmmMYls=",
                "rev": "8d5118720805fdce0dd3ee2999c964501de4532c",
                "url": "https://chromium.googlesource.com/external/github.com/chromium/content_analysis_sdk.git"
            },
            "src/third_party/cpu_features/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-E8LoVzhe+TAmARWZTSuINlsVhzpUJMxPPCGe/dHZcyA=",
                "rev": "936b9ab5515dead115606559502e3864958f7f6e",
                "url": "https://chromium.googlesource.com/external/github.com/google/cpu_features.git"
            },
            "src/third_party/cpuinfo/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-oZjA2cMQMyhFcI+m6eOmdZ9A1oPAbyISeLxNyaoGivk=",
                "rev": "c13d0bbb266d200a13532b5915d704c30d21081b",
                "url": "https://chromium.googlesource.com/external/github.com/pytorch/cpuinfo.git"
            },
            "src/third_party/crc32c/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-urg0bmnfMfHagLPELp4WrNCz1gBZ6DFOWpDue1KsMtc=",
                "rev": "fa5ade41ee480003d9c5af6f43567ba22e4e17e6",
                "url": "https://chromium.googlesource.com/external/github.com/google/crc32c.git"
            },
            "src/third_party/cros-components/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-s8pfcu5SkxXFCat76TJaDi1NTTQckZ1F+T8URCxOUdI=",
                "rev": "bf7aaccb73b26c11e8bf21cb7d90314338e1743f",
                "url": "https://chromium.googlesource.com/external/google3/cros_components.git"
            },
            "src/third_party/cros_system_api": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-wq7fJVNRSiyaADrCYB0TEmWQ//BJg4GYiHZNtMb1QlI=",
                "rev": "81ac4449008dffea00e4e8f251f87fabc5abe0d3",
                "url": "https://chromium.googlesource.com/chromiumos/platform2/system_api.git"
            },
            "src/third_party/crossbench": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-s/+y5bMj+CRnljFZ5aWKirPCsRUjckLOZ5F65WnPYSY=",
                "rev": "06981428c28d66678ebec13ca1fac3785cf51bb1",
                "url": "https://chromium.googlesource.com/crossbench.git"
            },
            "src/third_party/dav1d/libdav1d": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-KSo2s3M3S13gY84NlAdnPsjoKfJZy7ipTlWSvUHD9Ak=",
                "rev": "f8ae94eca0f53502a2cddd29a263c1edea4822a0",
                "url": "https://chromium.googlesource.com/external/github.com/videolan/dav1d.git"
            },
            "src/third_party/dawn": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-7iCJ1h51S/8pxQRMoDtGXzyuP6Dzxnc/1Cu4ALU8NYg=",
                "rev": "deb3b674b26854204c8082ed93926207e42d3cf2",
                "url": "https://dawn.googlesource.com/dawn.git"
            },
            "src/third_party/dawn/third_party/dxc": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-u29t+pF7aRfhRmi36YyEPcQU7gIDqsjrf38+C0YIpFk=",
                "rev": "50c4c887f1ccfa1a4bfb158b7dbc93058659ed01",
                "url": "https://chromium.googlesource.com/external/github.com/microsoft/DirectXShaderCompiler"
            },
            "src/third_party/dawn/third_party/dxheaders": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-0Miw1Cy/jmOo7bLFBOHuTRDV04cSeyvUEyPkpVsX9DA=",
                "rev": "980971e835876dc0cde415e8f9bc646e64667bf7",
                "url": "https://chromium.googlesource.com/external/github.com/microsoft/DirectX-Headers"
            },
            "src/third_party/dawn/third_party/glfw": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-TwAPRjQxIz3J+zbNxzCp5Tek7MwisxdekMpY5QGsKyg=",
                "rev": "62e175ef9fae75335575964c845a302447c012c7",
                "url": "https://chromium.googlesource.com/external/github.com/glfw/glfw"
            },
            "src/third_party/dawn/third_party/khronos/EGL-Registry": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-Z6DwLfgQ1wsJXz0KKJyVieOatnDmx3cs0qJ6IEgSq1A=",
                "rev": "7dea2ed79187cd13f76183c4b9100159b9e3e071",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/EGL-Registry"
            },
            "src/third_party/dawn/third_party/khronos/OpenGL-Registry": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-K3PcRIiD3AmnbiSm5TwaLs4Gu9hxaN8Y91WMKK8pOXE=",
                "rev": "5bae8738b23d06968e7c3a41308568120943ae77",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/OpenGL-Registry"
            },
            "src/third_party/dawn/third_party/webgpu-cts": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-gbZpmcbqLisjLb6vnKKvHS6eRqjqvavvTRgxJsaE/RQ=",
                "rev": "5dfa3b88f0863c3949f713804e0461c9cc34a030",
                "url": "https://chromium.googlesource.com/external/github.com/gpuweb/cts"
            },
            "src/third_party/depot_tools": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-EXxlQGA7qwjuZ2Qg/rZinkllkdfCbKXz8c4JJEr4mtU=",
                "rev": "7e251262409b3401809e57c5314dd158210355b8",
                "url": "https://chromium.googlesource.com/chromium/tools/depot_tools.git"
            },
            "src/third_party/devtools-frontend/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-D3W8U19i5pHWPLviMKbpzhiDoF6A0+tClYJcZWdbTqk=",
                "rev": "bcf0ed097be848d234fb5290c1e4d69672dc5405",
                "url": "https://chromium.googlesource.com/devtools/devtools-frontend"
            },
            "src/third_party/dom_distiller_js/dist": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-yuEBD2XQlV3FGI/i7lTmJbCqzeBiuG1Qow8wvsppGJw=",
                "rev": "199de96b345ada7c6e7e6ba3d2fa7a6911b8767d",
                "url": "https://chromium.googlesource.com/chromium/dom-distiller/dist.git"
            },
            "src/third_party/eigen3/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-c/4bf5+sJEgsKOJ34wPDNm1+6QUzETZZr/nE4SG5nKA=",
                "rev": "66e8f38891841bf88ee976a316c0c78a52f0cee5",
                "url": "https://chromium.googlesource.com/external/gitlab.com/libeigen/eigen.git"
            },
            "src/third_party/electron_node": {
                "fetcher": "fetchFromGitHub",
                "hash": "sha256-SI4qIix+sXWIS3WJyJoTdPb1cmSIhpLAmfa9iX/5Jlg=",
                "owner": "nodejs",
                "repo": "node",
                "rev": "v18.17.1"
            },
            "src/third_party/emoji-segmenter/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-oT9mAKoKnrsFsBAeTRfPOXM76HRQQabFAlPpfKUGFhs=",
                "rev": "9ba6d25d0d9313569665d4a9d2b34f0f39f9a50e",
                "url": "https://chromium.googlesource.com/external/github.com/google/emoji-segmenter.git"
            },
            "src/third_party/expat/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-FXTDGAK03jc2wvazhRKqtsFRKZUYS/9HLpZNp4JfZJI=",
                "rev": "441f98d02deafd9b090aea568282b28f66a50e36",
                "url": "https://chromium.googlesource.com/external/github.com/libexpat/libexpat.git"
            },
            "src/third_party/farmhash/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-5n58VEUxa/K//jAfZqG4cXyfxrp50ogWDNYcgiXVHdc=",
                "rev": "816a4ae622e964763ca0862d9dbd19324a1eaf45",
                "url": "https://chromium.googlesource.com/external/github.com/google/farmhash.git"
            },
            "src/third_party/ffmpeg": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-uRgHTVaCAEaoqY20SmePQbApPmjimgggm5922KKfnbc=",
                "rev": "0ba37733400593b162e5ae9ff26b384cff49c250",
                "url": "https://chromium.googlesource.com/chromium/third_party/ffmpeg.git"
            },
            "src/third_party/flac": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-gvTFPNOlBfozptaH7lTb9iD/09AmpdT3kCl9ClszjEs=",
                "rev": "689da3a7ed50af7448c3f1961d1791c7c1d9c85c",
                "url": "https://chromium.googlesource.com/chromium/deps/flac.git"
            },
            "src/third_party/flatbuffers/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-yibx1WMAwNajROMGVqox3naMU09RSayxUaTCJ860euo=",
                "rev": "28861d1d7d5ec6ce34d4bbdc10bec4aace341167",
                "url": "https://chromium.googlesource.com/external/github.com/google/flatbuffers.git"
            },
            "src/third_party/fontconfig/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-7PFmgr/+KNEYxCMuxMD2Zi9Ydcbp88IU7exr55a392Q=",
                "rev": "2fb3419a92156569bc1ec707401258c922cd0d99",
                "url": "https://chromium.googlesource.com/external/fontconfig.git"
            },
            "src/third_party/fp16/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-m2d9bqZoGWzuUPGkd29MsrdscnJRtuIkLIMp3fMmtRY=",
                "rev": "0a92994d729ff76a58f692d3028ca1b64b145d91",
                "url": "https://chromium.googlesource.com/external/github.com/Maratyszcza/FP16.git"
            },
            "src/third_party/freetype-testing/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-2aHPchIK5Oce5+XxdXVCC+8EM6i0XT0rFbjSIVa2L1A=",
                "rev": "7a69b1a2b028476f840ab7d4a2ffdfe4eb2c389f",
                "url": "https://chromium.googlesource.com/external/github.com/freetype/freetype2-testing.git"
            },
            "src/third_party/freetype/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-RRieGqEeAk5AYzJqPRpF25FmxMpEYwR7AQWLzXkED50=",
                "rev": "45903920b984540bb629bc89f4c010159c23a89a",
                "url": "https://chromium.googlesource.com/chromium/src/third_party/freetype2.git"
            },
            "src/third_party/fuzztest/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-tVtrSbLxnHrbh027cafNbqkfjq/afQxw57rW9yGsRe0=",
                "rev": "25f44f341f701eccc29d22f69313a54363c6099b",
                "url": "https://chromium.googlesource.com/external/github.com/google/fuzztest.git"
            },
            "src/third_party/fxdiv/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-LjX5kivfHbqCIA5pF9qUvswG1gjOFo3CMpX0VR+Cn38=",
                "rev": "63058eff77e11aa15bf531df5dd34395ec3017c8",
                "url": "https://chromium.googlesource.com/external/github.com/Maratyszcza/FXdiv.git"
            },
            "src/third_party/gemmlowp/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-O5wD8wxgis0qYMaY+xZ21GBDVQFphMRvInCOswS6inA=",
                "rev": "13d57703abca3005d97b19df1f2db731607a7dc2",
                "url": "https://chromium.googlesource.com/external/github.com/google/gemmlowp.git"
            },
            "src/third_party/google_benchmark/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-h2ryAQAuHI54Cni88L85e7Np4KATGVTRdDcmUvCNeWc=",
                "rev": "b177433f3ee2513b1075140c723d73ab8901790f",
                "url": "https://chromium.googlesource.com/external/github.com/google/benchmark.git"
            },
            "src/third_party/googletest/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-VYRjcM3dDY2FarviXyFMgSkXCqKfWXwtGAj2Msgm7zg=",
                "rev": "af29db7ec28d6df1c7f0f745186884091e602e07",
                "url": "https://chromium.googlesource.com/external/github.com/google/googletest.git"
            },
            "src/third_party/grpc/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-64JEVCx/PCM0dvv7kAQvSjLc0QbRAZVBDzwD/FAV6T8=",
                "rev": "822dab21d9995c5cf942476b35ca12a1aa9d2737",
                "url": "https://chromium.googlesource.com/external/github.com/grpc/grpc.git"
            },
            "src/third_party/harfbuzz-ng/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-+fClyD9Rsge9qdGF8WCv8taLTWNL8iManpXZUzDL2LM=",
                "rev": "db700b5670d9475cc8ed4880cc9447b232c5e432",
                "url": "https://chromium.googlesource.com/external/github.com/harfbuzz/harfbuzz.git"
            },
            "src/third_party/highway/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-kNb9UVcFq2BIf9nftUgN8ciFFCzRCou/sLwVf08jf3E=",
                "rev": "8f20644eca693cfb74aa795b0006b6779c370e7a",
                "url": "https://chromium.googlesource.com/external/github.com/google/highway.git"
            },
            "src/third_party/hunspell_dictionaries": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-67mvpJRFFa9eMfyqFMURlbxOaTJBICnk+gl0b0mEHl8=",
                "rev": "41cdffd71c9948f63c7ad36e1fb0ff519aa7a37e",
                "url": "https://chromium.googlesource.com/chromium/deps/hunspell_dictionaries.git"
            },
            "src/third_party/icu": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-9yFRBrHdWcYgrZAaigS8XnxNsqJNklGdFkAAgVdHXFU=",
                "rev": "a622de35ac311c5ad390a7af80724634e5dc61ed",
                "url": "https://chromium.googlesource.com/chromium/deps/icu.git"
            },
            "src/third_party/jsoncpp/source": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-bSLNcoYBz3QCt5VuTR056V9mU2PmBuYBa0W6hFg2m8Q=",
                "rev": "42e892d96e47b1f6e29844cc705e148ec4856448",
                "url": "https://chromium.googlesource.com/external/github.com/open-source-parsers/jsoncpp.git"
            },
            "src/third_party/leveldatabase/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-TTX2FrmcWsgqrh4uzqMyGnnnG51cVC2ILfdLxD65MLY=",
                "rev": "068d5ee1a3ac40dabd00d211d5013af44be55bea",
                "url": "https://chromium.googlesource.com/external/leveldb.git"
            },
            "src/third_party/libFuzzer/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-Zp8Ea/7GwmEl964MEIk3UM6IR5+FtUz8InlqZaOniDA=",
                "rev": "26cc39e59b2bf5cbc20486296248a842c536878d",
                "url": "https://chromium.googlesource.com/external/github.com/llvm/llvm-project/compiler-rt/lib/fuzzer.git"
            },
            "src/third_party/libaddressinput/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-xvUUQSPrvqUp5DI9AqlRTWurwDW087c6v4RvI+4sfOQ=",
                "rev": "e8712e415627f22d0b00ebee8db99547077f39bd",
                "url": "https://chromium.googlesource.com/external/libaddressinput.git"
            },
            "src/third_party/libaom/source/libaom": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-Z8td6FIvHibTQsB6x/A/69xduogj2b2lteiQB6l56vE=",
                "rev": "5f8db64abce68a3698fb732697ae50880bc9cac4",
                "url": "https://aomedia.googlesource.com/aom.git"
            },
            "src/third_party/libavif/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-KfRRGTS8kBwi9Z9wafpSwL29RU38THG2xBCvNBXtZtg=",
                "rev": "b2d36b1c3bfc806694cd4ff0cb188270823fe6d8",
                "url": "https://chromium.googlesource.com/external/github.com/AOMediaCodec/libavif.git"
            },
            "src/third_party/libavifinfo/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-yTv1AGtWfxXcywZycpsQBkBRLwuUJMPFKtpj7nrsc4A=",
                "rev": "707919b2f8ac1920b2f7ae252c233f9c6dcf84e1",
                "url": "https://aomedia.googlesource.com/libavifinfo.git"
            },
            "src/third_party/libc++/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-YP1LAUaV8epDAsd9LOovdXUyzpaLgffOJcGM6VmTaKc=",
                "rev": "84fb809dd6dae36d556dc0bb702c6cc2ce9d4b80",
                "url": "https://chromium.googlesource.com/external/github.com/llvm/llvm-project/libcxx.git"
            },
            "src/third_party/libc++abi/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-CBUw50T/jFMXU0cR+BQH6JyEY3mHamLM6kA8YdvI24Q=",
                "rev": "331847d7a5e6f8706689cf5d468e6e58c868fa10",
                "url": "https://chromium.googlesource.com/external/github.com/llvm/llvm-project/libcxxabi.git"
            },
            "src/third_party/libdrm/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-NUxS2rBJ0nFblvHRQUfKT933+DAws5RUTDb+RLxRF4M=",
                "rev": "98e1db501173303e58ef6a1def94ab7a2d84afc1",
                "url": "https://chromium.googlesource.com/chromiumos/third_party/libdrm.git"
            },
            "src/third_party/libgav1/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-dT8/Mdit3Qc5Sno6DYKv1qSNr+6Lhiy24ZNNBKoVq8I=",
                "rev": "df0023cc95b8e606a2fd243522d823401ef86637",
                "url": "https://chromium.googlesource.com/codecs/libgav1.git"
            },
            "src/third_party/libipp/libipp": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-gxU92lHLd6uxO8T3QWhZIK0hGy97cki705DV0VimCPY=",
                "rev": "2209bb84a8e122dab7c02fe66cc61a7b42873d7f",
                "url": "https://chromium.googlesource.com/chromiumos/platform2/libipp.git"
            },
            "src/third_party/libjpeg_turbo": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-bcmp8RqQYp4lRI9NfdfYgrAJsDLecJEhgRu9oosB9lQ=",
                "rev": "30bdb85e302ecfc52593636b2f44af438e05e784",
                "url": "https://chromium.googlesource.com/chromium/deps/libjpeg_turbo.git"
            },
            "src/third_party/liblouis/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-EI/uaHXe0NlqdEw764q0SjerThYEVLRogUlmrsZwXnY=",
                "rev": "9700847afb92cb35969bdfcbbfbbb74b9c7b3376",
                "url": "https://chromium.googlesource.com/external/liblouis-github.git"
            },
            "src/third_party/libphonenumber/dist": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-3hSnTFTD3KAdbyxfKg12qbIYTmw6YlTCH64gMP/HUJo=",
                "rev": "140dfeb81b753388e8a672900fb7a971e9a0d362",
                "url": "https://chromium.googlesource.com/external/libphonenumber.git"
            },
            "src/third_party/libprotobuf-mutator/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-ZyPweW+V5foxFQwjjMLkaRUo+FNV+kEDGIH/4oRV614=",
                "rev": "a304ec48dcf15d942607032151f7e9ee504b5dcf",
                "url": "https://chromium.googlesource.com/external/github.com/google/libprotobuf-mutator.git"
            },
            "src/third_party/libsrtp": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-pfLFh2JGk/g0ZZxBKTaYW9/PBpkCm0rtJeyNePUMTTc=",
                "rev": "5b7c744eb8310250ccc534f3f86a2015b3887a0a",
                "url": "https://chromium.googlesource.com/chromium/deps/libsrtp.git"
            },
            "src/third_party/libsync/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-Mkl6C1LxF3RYLwYbxiSfoQPt8QKFwQWj/Ati2sNJ32E=",
                "rev": "f4f4387b6bf2387efbcfd1453af4892e8982faf6",
                "url": "https://chromium.googlesource.com/aosp/platform/system/core/libsync.git"
            },
            "src/third_party/libunwind/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-rqmY4JNm4zuYqXs7o+1QhNnaNX4Cmt7PTJMGploHPnY=",
                "rev": "a321409e66c212098e755cfae1a978bbcff1ccbb",
                "url": "https://chromium.googlesource.com/external/github.com/llvm/llvm-project/libunwind.git"
            },
            "src/third_party/libvpx/source/libvpx": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-5x0Sk8/DXaTCIydK79vWZgIx3IHeQbLUxoNyE7E+Sdo=",
                "rev": "38a707faef72eeff89d669c553e7bfe9e08dba8f",
                "url": "https://chromium.googlesource.com/webm/libvpx.git"
            },
            "src/third_party/libwebm/source": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-u/5nkJed0DzdhR5OLL2kIhZhOnrbyzL1Kx37vV/jcEo=",
                "rev": "e4fbea0c9751ae8aa86629b197a28d8276a2b0da",
                "url": "https://chromium.googlesource.com/webm/libwebm.git"
            },
            "src/third_party/libwebp/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-79peh0y3eeiW5cVQqVq0mUgDcGZ9BlY+OXkPZylKARY=",
                "rev": "2af26267cdfcb63a88e5c74a85927a12d6ca1d76",
                "url": "https://chromium.googlesource.com/webm/libwebp.git"
            },
            "src/third_party/libyuv": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-jxs9kHI40gRFhm9cU6uS1Rxj+LLUUqT9b3myihxgW7s=",
                "rev": "04821d1e7d60845525e8db55c7bcd41ef5be9406",
                "url": "https://chromium.googlesource.com/libyuv/libyuv.git"
            },
            "src/third_party/lss": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-hE8uZf9Fst66qJkoVYChiB8G41ie+k9M4X0W+5JUSdw=",
                "rev": "ce877209e11aa69dcfffbd53ef90ea1d07136521",
                "url": "https://chromium.googlesource.com/linux-syscall-support.git"
            },
            "src/third_party/material_color_utilities/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-oi28dWuTd6ijn/RKSPukDr5GSzYiCTM2klFb7WSMDHY=",
                "rev": "234a000e507d586c20df6e3bf5b9e035bc5ce7b1",
                "url": "https://chromium.googlesource.com/external/github.com/material-foundation/material-color-utilities.git"
            },
            "src/third_party/minigbm/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-9HwvjTETerbQ7YKXH9kUB2eWa8PxGWMAJfx1jAluhrs=",
                "rev": "3018207f4d89395cc271278fb9a6558b660885f5",
                "url": "https://chromium.googlesource.com/chromiumos/platform/minigbm.git"
            },
            "src/third_party/nan": {
                "fetcher": "fetchFromGitHub",
                "hash": "sha256-tur5CExvwuSmwqBwH9o8OZWzDuifRybjEb+4/tm6exk=",
                "owner": "nodejs",
                "repo": "nan",
                "rev": "16fa32231e2ccd89d2804b3f765319128b20c4ac"
            },
            "src/third_party/nasm": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-L+b3X3vsfpY6FSlIK/AHhxhmq2cXd50vND6uT6yn8Qs=",
                "rev": "7fc833e889d1afda72c06220e5bed8fb43b2e5ce",
                "url": "https://chromium.googlesource.com/chromium/deps/nasm.git"
            },
            "src/third_party/nearby/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-5d7c8WvkjmBuwcwqhxQf0wRE3qaF8fFsiqUE1sHh0nc=",
                "rev": "8725391822b8901784b379a4573ab8828e7091d3",
                "url": "https://chromium.googlesource.com/external/github.com/google/nearby-connections.git"
            },
            "src/third_party/neon_2_sse/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-299ZptvdTmCnIuVVBkrpf5ZTxKPwgcGUob81tEI91F0=",
                "rev": "a15b489e1222b2087007546b4912e21293ea86ff",
                "url": "https://chromium.googlesource.com/external/github.com/intel/ARM_NEON_2_x86_SSE.git"
            },
            "src/third_party/openh264/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-J7Eqe2QevZh1xfap19W8AVCcwfRu7ztknnbKFJUAH1c=",
                "rev": "09a4f3ec842a8932341b195c5b01e141c8a16eb7",
                "url": "https://chromium.googlesource.com/external/github.com/cisco/openh264"
            },
            "src/third_party/openscreen/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-TyZ/sZ0gnesWjKUnO2RVM2TTdpVIxsBWueHDgix0/wg=",
                "rev": "971d6055e7b78c474e2e734e55a2991fbb7ab665",
                "url": "https://chromium.googlesource.com/openscreen"
            },
            "src/third_party/openscreen/src/third_party/tinycbor/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-fMKBFUSKmODQyg4hKIa1hwnEKIV6WBbY1Gb8DOSnaHA=",
                "rev": "d393c16f3eb30d0c47e6f9d92db62272f0ec4dc7",
                "url": "https://chromium.googlesource.com/external/github.com/intel/tinycbor.git"
            },
            "src/third_party/ots/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-kiUXrXsaGOzPkKh0dVmU1I13WHt0Stzj7QLMqHN9FbU=",
                "rev": "46bea9879127d0ff1c6601b078e2ce98e83fcd33",
                "url": "https://chromium.googlesource.com/external/github.com/khaledhosny/ots.git"
            },
            "src/third_party/pdfium": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-u+El2jEnvlcQs5j5TthpKj8s255n2AhJPW+Q/s0Ljm0=",
                "rev": "6e55da0c45788fdc22fa3aab7ead414fc42b74c1",
                "url": "https://pdfium.googlesource.com/pdfium.git"
            },
            "src/third_party/perfetto": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-/8WQO0r10Hz3yLNh1MtjE8rGfzbpDkUowA2OPwEuRvA=",
                "rev": "43b72e3ce703b676c9c923b04540472d10790f56",
                "url": "https://android.googlesource.com/platform/external/perfetto.git"
            },
            "src/third_party/pthreadpool/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-Pfvievhma1rOpbLdSrIX4KaZyRpdvrnjRzzPYl3fDQo=",
                "rev": "1787867f6183f056420e532eec640cba25efafea",
                "url": "https://chromium.googlesource.com/external/github.com/Maratyszcza/pthreadpool.git"
            },
            "src/third_party/pyelftools": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-I/7p3IEvfP/gkes4kx18PvWwhAKilQKb67GXoW4zFB4=",
                "rev": "19b3e610c86fcadb837d252c794cb5e8008826ae",
                "url": "https://chromium.googlesource.com/chromiumos/third_party/pyelftools.git"
            },
            "src/third_party/pywebsocket3/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-WEqqu2/7fLqcf/2/IcD7/FewRSZ6jTgVlVBvnihthYQ=",
                "rev": "50602a14f1b6da17e0b619833a13addc6ea78bc2",
                "url": "https://chromium.googlesource.com/external/github.com/GoogleChromeLabs/pywebsocket3.git"
            },
            "src/third_party/quic_trace/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-Nf9ZDLcE1JunhbpEMHhrY2ROnbgrvVZoRkPwWq1DU0g=",
                "rev": "caa0a6eaba816ecb737f9a70782b7c80b8ac8dbc",
                "url": "https://chromium.googlesource.com/external/github.com/google/quic-trace.git"
            },
            "src/third_party/re2/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-9V/Q5o24sL1TJUDNifUqpyrQ2zTSrhU0Bxo9qDwd0+4=",
                "rev": "87d09ef4f0307e53f1d3796843f4b90d41cfccaa",
                "url": "https://chromium.googlesource.com/external/github.com/google/re2.git"
            },
            "src/third_party/ruy/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-hNco0Jol4vQS1bkYiXaoZ1IPHwoRq3DD3iY0TeLygew=",
                "rev": "c04e5e52ae6b144f74ac032652e3c538bda15c9b",
                "url": "https://chromium.googlesource.com/external/github.com/google/ruy.git"
            },
            "src/third_party/securemessage/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-GS4ccnuiqxMs/LVYAtvSlVAYFp4a5GoZsxcriTX3k78=",
                "rev": "fa07beb12babc3b25e0c5b1f38c16aa8cb6b8f84",
                "url": "https://chromium.googlesource.com/external/github.com/google/securemessage.git"
            },
            "src/third_party/skia": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-Ck15ddYoo8pVLHcwW5P8Ei1sBQf23EGd/ySGOVSWAFQ=",
                "rev": "b4f0c1163c955e42489f62d842585720cf0df0ea",
                "url": "https://skia.googlesource.com/skia.git"
            },
            "src/third_party/smhasher/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-RyC//me08hwGXRrWcK8GZ1uhIkBq4FByA7fHCVDsniw=",
                "rev": "e87738e57558e0ec472b2fc3a643b838e5b6e88f",
                "url": "https://chromium.googlesource.com/external/smhasher.git"
            },
            "src/third_party/snappy/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-5fV6NfO8vmqK+iCwpLtE2YjYOzjsshctauyjNIOxrH0=",
                "rev": "c9f9edf6d75bb065fa47468bf035e051a57bec7c",
                "url": "https://chromium.googlesource.com/external/github.com/google/snappy.git"
            },
            "src/third_party/speedometer/v3.0": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-PqrwtPFU3TI840za3UU8p+t4ZdyX0l79esEA602Mbq0=",
                "rev": "5107c739c1b2a008e7293e3b489c4f80a8fb2e01",
                "url": "https://chromium.googlesource.com/external/github.com/WebKit/Speedometer.git"
            },
            "src/third_party/sqlite/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-35rSG+ptFMC62FsprLvAqfXZknKu40Ee6H2qpAcA3wI=",
                "rev": "b7e480172bb2411f9afedefdcc69a57a12f18b7b",
                "url": "https://chromium.googlesource.com/chromium/deps/sqlite.git"
            },
            "src/third_party/squirrel.mac": {
                "fetcher": "fetchFromGitHub",
                "hash": "sha256-4GfKQg0u3c9GI+jl3ixESNqWXQJKRMi+00QT0s2Shqw=",
                "owner": "Squirrel",
                "repo": "Squirrel.Mac",
                "rev": "0e5d146ba13101a1302d59ea6e6e0b3cace4ae38"
            },
            "src/third_party/squirrel.mac/vendor/Mantle": {
                "fetcher": "fetchFromGitHub",
                "hash": "sha256-ogFkMJybf2Ue606ojXJu6Gy5aXSi1bSKm60qcTAIaPk=",
                "owner": "Mantle",
                "repo": "Mantle",
                "rev": "78d3966b3c331292ea29ec38661b25df0a245948"
            },
            "src/third_party/squirrel.mac/vendor/ReactiveObjC": {
                "fetcher": "fetchFromGitHub",
                "hash": "sha256-/MCqC1oFe3N9TsmfVLgl+deR6qHU6ZFQQjudb9zB5Mo=",
                "owner": "ReactiveCocoa",
                "repo": "ReactiveObjC",
                "rev": "74ab5baccc6f7202c8ac69a8d1e152c29dc1ea76"
            },
            "src/third_party/swiftshader": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-PCPb5opTATGCCQmw8TGF09TbLL8QES+So+yaL68H//I=",
                "rev": "32f9332d1d7aacbdba7c1aa5df894bb1890bb2cc",
                "url": "https://swiftshader.googlesource.com/SwiftShader.git"
            },
            "src/third_party/text-fragments-polyfill/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-4rW2u1cQAF4iPWHAt1FvVXIpz2pmI901rEPks/w/iFA=",
                "rev": "c036420683f672d685e27415de0a5f5e85bdc23f",
                "url": "https://chromium.googlesource.com/external/github.com/GoogleChromeLabs/text-fragments-polyfill.git"
            },
            "src/third_party/tflite/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-3gawK1S5+nr5yOAHgYozLWSoT1TbJmB6Md1fID6du9w=",
                "rev": "91946956f81a2d9fd12a6d6baba20c997d3f8890",
                "url": "https://chromium.googlesource.com/external/github.com/tensorflow/tensorflow.git"
            },
            "src/third_party/ukey2/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-aaLs6ZS+CdBlCJ6ZhsmdAPFxiBIij6oufsDcNeRSV1E=",
                "rev": "0275885d8e6038c39b8a8ca55e75d1d4d1727f47",
                "url": "https://chromium.googlesource.com/external/github.com/google/ukey2.git"
            },
            "src/third_party/vulkan-deps": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-xYX77wsgG+2TzS0AinFJndnID5P3/anY4TPh3cjRaIY=",
                "rev": "4b7a5f2a3522cbc4e4334cdc64bfaf3f832b89c3",
                "url": "https://chromium.googlesource.com/vulkan-deps"
            },
            "src/third_party/vulkan-deps/glslang/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-Y9AmEtFPj+sp/a5YnHChqlqgW/1kdaJ1CEbBB5r2cuI=",
                "rev": "e3a711b6fc942307be7cb634698015dfd13c37fe",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/glslang"
            },
            "src/third_party/vulkan-deps/spirv-cross/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-I8RXVat6//rlpmZuuC99Ar/Rct6MFce4FGKgQA2gBj0=",
                "rev": "54997fb4bc3adeb47b9b9f7bb67f1c25eaca2204",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/SPIRV-Cross"
            },
            "src/third_party/vulkan-deps/spirv-headers/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-OqLxyrTzg1Q2zmQd0YalWtl7vX5lRJFmE2VH7fHC8/8=",
                "rev": "d790ced752b5bfc06b6988baadef6eb2d16bdf96",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/SPIRV-Headers"
            },
            "src/third_party/vulkan-deps/spirv-tools/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-wFdAzbOQdOqeuVaWl5036qkli1gkSiL5JHH82Z5cFL4=",
                "rev": "4c16c35b16bbd462a0e89707ebeecc0bce956b2f",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/SPIRV-Tools"
            },
            "src/third_party/vulkan-deps/vulkan-headers/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-9+tHkkHsP5ft6+tbofOYV1yBFDpFlJz4Q6YS8c6T5As=",
                "rev": "2634c969d7dc0e983f005f7f2e665cce8449efe6",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-Headers"
            },
            "src/third_party/vulkan-deps/vulkan-loader/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-q7/dYKQ3O0aSs326YbEeLlS+SciFWugBGm/G+b8RNd0=",
                "rev": "d34bfafff23602e857064bea6d99a35eb63f37f2",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-Loader"
            },
            "src/third_party/vulkan-deps/vulkan-tools/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-tcaJmosHwTo38keV5qkumkLB1o1qq8v2ZmSsi2zDGoE=",
                "rev": "389110e4600669d82bca042859fddf898387c0d2",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-Tools"
            },
            "src/third_party/vulkan-deps/vulkan-utility-libraries/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-7M47ZCbNwIppaotMfJTFTRsYNvSZNc0FUufoyXyUu/g=",
                "rev": "dd26ae7065a9ed60c8ab517ed79bf7935394aec7",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-Utility-Libraries"
            },
            "src/third_party/vulkan-deps/vulkan-validation-layers/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-lj6MIQctcK6gsJlLdLwQ9PHbiAtTbNIPinii8vGZdGk=",
                "rev": "b89f48ae89ec064c91e8b77468cebc18c3faa682",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-ValidationLayers"
            },
            "src/third_party/vulkan_memory_allocator": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-FdRPPdLZHj3RX3YzcmF58JJuIqeWQV3TDiiXPEW2lsc=",
                "rev": "e87036508bb156f9986ea959323de1869e328f58",
                "url": "https://chromium.googlesource.com/external/github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator.git"
            },
            "src/third_party/wayland-protocols/gtk": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-75XNnLkF5Lt1LMRGT+T61k0/mLa3kkynfN+QWvZ0LiQ=",
                "rev": "40ebed3a03aef096addc0af09fec4ec529d882a0",
                "url": "https://chromium.googlesource.com/external/github.com/GNOME/gtk.git"
            },
            "src/third_party/wayland-protocols/kde": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-Dmcp/2ms/k7NxPPmPkp0YNfM9z2Es1ZO0uX10bc7N2Y=",
                "rev": "0b07950714b3a36c9b9f71fc025fc7783e82926e",
                "url": "https://chromium.googlesource.com/external/github.com/KDE/plasma-wayland-protocols.git"
            },
            "src/third_party/wayland-protocols/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-3QK+ZN6IFUFkDxySSoQwP1J3JnTlD7JPaUk6Tr/d/k4=",
                "rev": "4624cfaaf563cd7be5e2e2087c8de6d3a48ea867",
                "url": "https://chromium.googlesource.com/external/anongit.freedesktop.org/git/wayland/wayland-protocols.git"
            },
            "src/third_party/wayland/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-aVcy7bW1cqEKbowlVgfa9FI8/oG7k5CzPZbRl+cPcX8=",
                "rev": "a8c7553ec9af6462474524fd2bb4e9a7dc7217dd",
                "url": "https://chromium.googlesource.com/external/anongit.freedesktop.org/git/wayland/wayland.git"
            },
            "src/third_party/webdriver/pylib": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-WIqWXIKVgElgg8P8laLAlUrgwodGdeVcwohZxnPKedw=",
                "rev": "fc5e7e70c098bfb189a9a74746809ad3c5c34e04",
                "url": "https://chromium.googlesource.com/external/github.com/SeleniumHQ/selenium/py.git"
            },
            "src/third_party/webgl/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-h4by/1pp9oQGetZNnc1Rt5X5izgQf8ZUZDfsxQacqC0=",
                "rev": "eab0468fc0405b21e59bea30a441d8e38c9db2b7",
                "url": "https://chromium.googlesource.com/external/khronosgroup/webgl.git"
            },
            "src/third_party/webgpu-cts/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-Wch3opAvU/6rJVptOKxOJssev8NhNpbYZddScTlzuMw=",
                "rev": "4c8d2f67ecd03fbd3cb4c517ef8461427b6d635d",
                "url": "https://chromium.googlesource.com/external/github.com/gpuweb/cts.git"
            },
            "src/third_party/webrtc": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-KpiNGAue945kGCuQYGhxiWVUFTE1tcntSAXBZdkrE9A=",
                "rev": "d8f2b0380b3ec980af35ce4b92ba6a211ec8c76d",
                "url": "https://webrtc.googlesource.com/src.git"
            },
            "src/third_party/weston/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-sfJm1CBGXX13pFcqeOVPqWlXrUfwjRl+rYf2BoT8Bt8=",
                "rev": "775f8a1edf357f59e6b2e284297f396f4fac95a4",
                "url": "https://chromium.googlesource.com/external/anongit.freedesktop.org/git/wayland/weston.git"
            },
            "src/third_party/wuffs/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-HP8Vf1C9DuA9H+busf3lFoF9SsYqviLKv0l73CxmNEI=",
                "rev": "fe9d08f2b6e80af691bfb1a718e144c49a1b9eba",
                "url": "https://skia.googlesource.com/external/github.com/google/wuffs-mirror-release-c.git"
            },
            "src/third_party/xdg-utils": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-t3uV9JkkQQIwmezzSoEdTMLSizZdLQB7eLKTRQGH4kQ=",
                "rev": "d80274d5869b17b8c9067a1022e4416ee7ed5e0d",
                "url": "https://chromium.googlesource.com/chromium/deps/xdg-utils.git"
            },
            "src/third_party/xnnpack/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-vsn3lrog5affus0qxc4TK2Z/tdd/E6hBYeUQRWoDZPQ=",
                "rev": "b9d4073a6913891ce9cbd8965c8d506075d2a45a",
                "url": "https://chromium.googlesource.com/external/github.com/google/XNNPACK.git"
            },
            "src/third_party/zstd/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-yzv/R/GnqlXLeAjBEIev+8uM7MC0HeK0MfppnMTJ7Eg=",
                "rev": "25822342be59d831bad65426ae51f5cc22157b09",
                "url": "https://chromium.googlesource.com/external/github.com/facebook/zstd.git"
            },
            "src/tools/page_cycler/acid3": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-s/49EaYQRsyxuLejXc1zGDYTD7uO0ddaQIJBP50Bvw0=",
                "rev": "a926d0a32e02c4c03ae95bb798e6c780e0e184ba",
                "url": "https://chromium.googlesource.com/chromium/deps/acid3.git"
            },
            "src/v8": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-Fn4HoS7O2J3nGXFyq7r7AheRQzKy80USTQnNnC4rWqM=",
                "rev": "36e4828ab658b8ad72f80974883c4c94f6e7012c",
                "url": "https://chromium.googlesource.com/v8/v8.git"
            }
        },
        "electron_yarn_hash": "1yq854829a4q0yqyjyn2lq4l3amsqdhfd7fjcnc3mz8l2ci3n964",
        "modules": "118",
        "node": "18.17.1",
        "version": "27.3.11"
    },
    "28": {
        "chrome": "120.0.6099.291",
        "chromium": {
            "deps": {
                "gn": {
                    "hash": "sha256-dwluGOfq05swtBM5gg4a6gY3IpFHaKKkD0TV1XW7c7k=",
                    "rev": "e4702d7409069c4f12d45ea7b7f0890717ca3f4b",
                    "url": "https://gn.googlesource.com/gn",
                    "version": "2023-10-23"
                }
            },
            "version": "120.0.6099.291"
        },
        "chromium_npm_hash": "sha256-zexxXAAJDnhMmh7HfBO1V1z1Yds06C3gSpXacsbjUb4=",
        "deps": {
            "src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-g0aRiWCPrXPKBsOsAgtLmRbOeYigtm05MrWH6/fhQs0=",
                "postFetch": "rm -r $out/third_party/blink/web_tests; rm -r $out/third_party/hunspell/tests; rm -r $out/content/test/data; rm -r $out/courgette/testdata; rm -r $out/extensions/test/data; rm -r $out/media/test/data; ",
                "rev": "120.0.6099.291",
                "url": "https://chromium.googlesource.com/chromium/src.git"
            },
            "src/chrome/test/data/perf/canvas_bench": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-svOuyBGKloBLM11xLlWCDsB4PpRjdKTBdW2UEW4JQjM=",
                "rev": "a7b40ea5ae0239517d78845a5fc9b12976bfc732",
                "url": "https://chromium.googlesource.com/chromium/canvas_bench.git"
            },
            "src/chrome/test/data/perf/frame_rate/content": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-t4kcuvH0rkPBkcdiMsoNQaRwU09eU+oSvyHDiAHrKXo=",
                "rev": "c10272c88463efeef6bb19c9ec07c42bc8fe22b9",
                "url": "https://chromium.googlesource.com/chromium/frame_rate/content.git"
            },
            "src/chrome/test/data/xr/webvr_info": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-BsAPwc4oEWri0TlqhyxqFNqKdfgVSrB0vQyISmYY4eg=",
                "rev": "c58ae99b9ff9e2aa4c524633519570bf33536248",
                "url": "https://chromium.googlesource.com/external/github.com/toji/webvr.info.git"
            },
            "src/docs/website": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-+UawYfW5FAMpv0TbzSR8qITPGUQulLIZ0mUh6ZdnmMI=",
                "rev": "07714da3c28b942dc8522affed4487403e971545",
                "url": "https://chromium.googlesource.com/website.git"
            },
            "src/electron": {
                "fetcher": "fetchFromGitHub",
                "hash": "sha256-Y0uNoq5LhlFMxQfqrTjzOokbB7Y6UUAlBCj+Nghiz5w=",
                "owner": "electron",
                "repo": "electron",
                "rev": "v28.3.1"
            },
            "src/media/cdm/api": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-6J6aSYW0or99VAgMNJJOdJqMJspoG7w1HxDN50MV5bw=",
                "rev": "fef0b5aa1bd31efb88dfab804bdbe614f3d54f28",
                "url": "https://chromium.googlesource.com/chromium/cdm.git"
            },
            "src/net/third_party/quiche/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-JXWGEsJrXRXs2BrkWIC8cUBD6uvt8ftb9V5Dy2yLc/w=",
                "rev": "a01a131ca6df63e774809d623f47e8cf28c574cc",
                "url": "https://quiche.googlesource.com/quiche.git"
            },
            "src/third_party/angle": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-aOV7kxrF8FeoHYodZjaUrDDUtpXg2gUiZg6Olv90puk=",
                "rev": "6fff8ebc937f07e31473ac014a55f662248ab39a",
                "url": "https://chromium.googlesource.com/angle/angle.git"
            },
            "src/third_party/angle/third_party/VK-GL-CTS/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-+g1yjF1yETrL1X6Cxu5mhPWXukWygg1dnawU8S9cGkA=",
                "rev": "7d738783bf286e82937e431c295d4682f3767267",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/VK-GL-CTS"
            },
            "src/third_party/angle/third_party/glmark2/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-L7+zWM0qn8WFhmON7DGvarTsN1YHt1sn5+hazTOZrrk=",
                "rev": "ca8de51fedb70bace5351c6b002eb952c747e889",
                "url": "https://chromium.googlesource.com/external/github.com/glmark2/glmark2"
            },
            "src/third_party/angle/third_party/rapidjson/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-btUl1a/B0sXwf/+hyvCvVJjWqIkXfVYCpHm3TeBuOxk=",
                "rev": "781a4e667d84aeedbeb8184b7b62425ea66ec59f",
                "url": "https://chromium.googlesource.com/external/github.com/Tencent/rapidjson"
            },
            "src/third_party/anonymous_tokens/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-2B0j9vNF8nMhmedk+ghz4JJJiDKN6jnVfdqsa4zRWeU=",
                "rev": "47d423347823088a21b26262ca553eadb8e5b220",
                "url": "https://chromium.googlesource.com/external/github.com/google/anonymous-tokens.git"
            },
            "src/third_party/beto-core/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-qgsPK7RyVqGRji0sTcMck1JqX9iCsYIExGoGwNZyVT0=",
                "rev": "b902b346037ea3f4aadf8177021f6f917b16e648",
                "url": "https://beto-core.googlesource.com/beto-core.git"
            },
            "src/third_party/boringssl/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-hxPNJzWS2f4iUsNYwRvxiTL9vRrcZzZT5KpIx3+WuGM=",
                "rev": "c38dc29860a72540eb2c4fdb8a8bfb27ef94ddf3",
                "url": "https://boringssl.googlesource.com/boringssl.git"
            },
            "src/third_party/breakpad/breakpad": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-8AkC/8oX4OWAcV21laJ0AeMRB9G04rFc6UJFy7Wus4A=",
                "rev": "8988364bcddd9b194b0bf931c10bc125987330ed",
                "url": "https://chromium.googlesource.com/breakpad/breakpad.git"
            },
            "src/third_party/cast_core/public/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-AalRQhJmornCqmvE2+36J/3LubaA0jr6P1PXy32lX4I=",
                "rev": "71f51fd6fa45fac73848f65421081edd723297cd",
                "url": "https://chromium.googlesource.com/cast_core/public"
            },
            "src/third_party/catapult": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-jueHC5YC+WmGRtGZ8yD6QT2pVj21n1THpIz/vI9M334=",
                "rev": "47efdb4b1428e549c58a6d6c2fa79c4a8ceaf9b4",
                "url": "https://chromium.googlesource.com/catapult.git"
            },
            "src/third_party/ced/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-ySG74Rj2i2c/PltEgHVEDq+N8yd9gZmxNktc56zIUiY=",
                "rev": "ba412eaaacd3186085babcd901679a48863c7dd5",
                "url": "https://chromium.googlesource.com/external/github.com/google/compact_enc_det.git"
            },
            "src/third_party/chromium-variations": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-cRFzDmGoyrxwPDVvatGm3EutOXtWqqlI7v7BeX5d43s=",
                "rev": "cb7fe7e32de8b885ccdd6293444d8e4028b03eca",
                "url": "https://chromium.googlesource.com/chromium-variations.git"
            },
            "src/third_party/clang-format/script": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-7VvofDDQe+SoMRBfVk26q+C+OPyOE7QH35wVWkfDKxs=",
                "rev": "e5337933f2951cacd3aeacd238ce4578163ca0b9",
                "url": "https://chromium.googlesource.com/external/github.com/llvm/llvm-project/clang/tools/clang-format.git"
            },
            "src/third_party/cld_3/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-C3MOMBUy9jgkT9BAi/Fgm2UH4cxRuwSBEcRl3hzM2Ss=",
                "rev": "b48dc46512566f5a2d41118c8c1116c4f96dc661",
                "url": "https://chromium.googlesource.com/external/github.com/google/cld_3.git"
            },
            "src/third_party/colorama/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-6ZTdPYSHdQOLYMSnE+Tp7PgsVTs3U2awGu9Qb4Rg/tk=",
                "rev": "3de9f013df4b470069d03d250224062e8cf15c49",
                "url": "https://chromium.googlesource.com/external/colorama.git"
            },
            "src/third_party/content_analysis_sdk/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-f5Jmk1MiGjaRdLun+v/GKVl8Yv9hOZMTQUSxgiJalcY=",
                "rev": "9a408736204513e0e95dd2ab3c08de0d95963efc",
                "url": "https://chromium.googlesource.com/external/github.com/chromium/content_analysis_sdk.git"
            },
            "src/third_party/cpu_features/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-E8LoVzhe+TAmARWZTSuINlsVhzpUJMxPPCGe/dHZcyA=",
                "rev": "936b9ab5515dead115606559502e3864958f7f6e",
                "url": "https://chromium.googlesource.com/external/github.com/google/cpu_features.git"
            },
            "src/third_party/cpuinfo/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-BcSG/1aa/cyT8CCd1Qdsm/yXa5bCrmrtaRxnYjwkspY=",
                "rev": "76d5e8f5b563daa65340a60fce0e9aec73a936df",
                "url": "https://chromium.googlesource.com/external/github.com/pytorch/cpuinfo.git"
            },
            "src/third_party/crc32c/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-urg0bmnfMfHagLPELp4WrNCz1gBZ6DFOWpDue1KsMtc=",
                "rev": "fa5ade41ee480003d9c5af6f43567ba22e4e17e6",
                "url": "https://chromium.googlesource.com/external/github.com/google/crc32c.git"
            },
            "src/third_party/cros-components/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-ZjLMlNDDN08v9SUFAuroPsu/6ADLHZAAFpv+bmaJA2Y=",
                "rev": "25159cae8d540780cbeb994692ce4a3ea14cc094",
                "url": "https://chromium.googlesource.com/external/google3/cros_components.git"
            },
            "src/third_party/cros_system_api": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-wI4rx+oQ6i8yIB8NBp/O471O4pVJL3l+ez0t8I5oD/w=",
                "rev": "00c21541508ea2c6863f1cda24ef88ef30309ae8",
                "url": "https://chromium.googlesource.com/chromiumos/platform2/system_api.git"
            },
            "src/third_party/crossbench": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-s/+y5bMj+CRnljFZ5aWKirPCsRUjckLOZ5F65WnPYSY=",
                "rev": "06981428c28d66678ebec13ca1fac3785cf51bb1",
                "url": "https://chromium.googlesource.com/crossbench.git"
            },
            "src/third_party/dav1d/libdav1d": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-9SrbxiOqXKTFf4qZ4Wqg9aoOMY8zv7NczTqN2+lXwCI=",
                "rev": "47107e384bd1dc25674acf04d000a8cdc6195234",
                "url": "https://chromium.googlesource.com/external/github.com/videolan/dav1d.git"
            },
            "src/third_party/dawn": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-5srmcwL9Zqv91LwoBf9xuyusq1ghDo30Aj27Xo96yPc=",
                "rev": "c7ed440d75861649d8a1ef4b775384f31211d902",
                "url": "https://dawn.googlesource.com/dawn.git"
            },
            "src/third_party/dawn/third_party/dxc": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-EAfTm0QZcihcU6ufBHE1QsYRggNWNKHjVZXcrUp/T+c=",
                "rev": "64030a4e01e27c608b6c5f1ab5add43575e086f9",
                "url": "https://chromium.googlesource.com/external/github.com/microsoft/DirectXShaderCompiler"
            },
            "src/third_party/dawn/third_party/dxheaders": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-0Miw1Cy/jmOo7bLFBOHuTRDV04cSeyvUEyPkpVsX9DA=",
                "rev": "980971e835876dc0cde415e8f9bc646e64667bf7",
                "url": "https://chromium.googlesource.com/external/github.com/microsoft/DirectX-Headers"
            },
            "src/third_party/dawn/third_party/glfw": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-TwAPRjQxIz3J+zbNxzCp5Tek7MwisxdekMpY5QGsKyg=",
                "rev": "62e175ef9fae75335575964c845a302447c012c7",
                "url": "https://chromium.googlesource.com/external/github.com/glfw/glfw"
            },
            "src/third_party/dawn/third_party/khronos/EGL-Registry": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-Z6DwLfgQ1wsJXz0KKJyVieOatnDmx3cs0qJ6IEgSq1A=",
                "rev": "7dea2ed79187cd13f76183c4b9100159b9e3e071",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/EGL-Registry"
            },
            "src/third_party/dawn/third_party/khronos/OpenGL-Registry": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-K3PcRIiD3AmnbiSm5TwaLs4Gu9hxaN8Y91WMKK8pOXE=",
                "rev": "5bae8738b23d06968e7c3a41308568120943ae77",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/OpenGL-Registry"
            },
            "src/third_party/dawn/third_party/webgpu-cts": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-DqQIyZU6kYYRoouIiJnJBit8l38wPu08zbJhM2BQbs4=",
                "rev": "2ef3f322027bec1bb5572f5083d478148d355d79",
                "url": "https://chromium.googlesource.com/external/github.com/gpuweb/cts"
            },
            "src/third_party/depot_tools": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-WtosDcMOV9eh0PhTbB5w3x3AYQs3Ui4h3mV0Ib0CBlc=",
                "rev": "9f3b33a275e7a5b19d8ce4aba7960d2a38858681",
                "url": "https://chromium.googlesource.com/chromium/tools/depot_tools.git"
            },
            "src/third_party/devtools-frontend/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-B/2Qk5LSElBPNImlZHVF3A4g0GFE9OHG/+4QADpK+8w=",
                "rev": "a6c7f00333881a7ecf7044b725052ab0c8776d6f",
                "url": "https://chromium.googlesource.com/devtools/devtools-frontend"
            },
            "src/third_party/dom_distiller_js/dist": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-yuEBD2XQlV3FGI/i7lTmJbCqzeBiuG1Qow8wvsppGJw=",
                "rev": "199de96b345ada7c6e7e6ba3d2fa7a6911b8767d",
                "url": "https://chromium.googlesource.com/chromium/dom-distiller/dist.git"
            },
            "src/third_party/eigen3/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-mfS/l+V0If3fmXvA1p5gtyrNCU6IqWYrBbzm4jkXC3I=",
                "rev": "aa6964bf3a34fd607837dd8123bc42465185c4f8",
                "url": "https://chromium.googlesource.com/external/gitlab.com/libeigen/eigen.git"
            },
            "src/third_party/electron_node": {
                "fetcher": "fetchFromGitHub",
                "hash": "sha256-yvMU6dXRzHP7l6axo3g4svJ1H2edtFvX2MVMm3K1bEc=",
                "owner": "nodejs",
                "repo": "node",
                "rev": "v18.18.2"
            },
            "src/third_party/emoji-segmenter/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-oT9mAKoKnrsFsBAeTRfPOXM76HRQQabFAlPpfKUGFhs=",
                "rev": "9ba6d25d0d9313569665d4a9d2b34f0f39f9a50e",
                "url": "https://chromium.googlesource.com/external/github.com/google/emoji-segmenter.git"
            },
            "src/third_party/expat/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-FXTDGAK03jc2wvazhRKqtsFRKZUYS/9HLpZNp4JfZJI=",
                "rev": "441f98d02deafd9b090aea568282b28f66a50e36",
                "url": "https://chromium.googlesource.com/external/github.com/libexpat/libexpat.git"
            },
            "src/third_party/farmhash/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-5n58VEUxa/K//jAfZqG4cXyfxrp50ogWDNYcgiXVHdc=",
                "rev": "816a4ae622e964763ca0862d9dbd19324a1eaf45",
                "url": "https://chromium.googlesource.com/external/github.com/google/farmhash.git"
            },
            "src/third_party/ffmpeg": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-lomUDmbbYW95BHEuYmm0pVqf++nYEa2XxeW4ag36tgc=",
                "rev": "e1ca3f06adec15150a171bc38f550058b4bbb23b",
                "url": "https://chromium.googlesource.com/chromium/third_party/ffmpeg.git"
            },
            "src/third_party/flac": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-gvTFPNOlBfozptaH7lTb9iD/09AmpdT3kCl9ClszjEs=",
                "rev": "689da3a7ed50af7448c3f1961d1791c7c1d9c85c",
                "url": "https://chromium.googlesource.com/chromium/deps/flac.git"
            },
            "src/third_party/flatbuffers/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-LecJwLDG6szZZ/UOCFD+MDqH3NKawn0sdEwgnMt8wMM=",
                "rev": "bcb9ef187628fe07514e57756d05e6a6296f7dc5",
                "url": "https://chromium.googlesource.com/external/github.com/google/flatbuffers.git"
            },
            "src/third_party/fontconfig/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-7PFmgr/+KNEYxCMuxMD2Zi9Ydcbp88IU7exr55a392Q=",
                "rev": "2fb3419a92156569bc1ec707401258c922cd0d99",
                "url": "https://chromium.googlesource.com/external/fontconfig.git"
            },
            "src/third_party/fp16/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-m2d9bqZoGWzuUPGkd29MsrdscnJRtuIkLIMp3fMmtRY=",
                "rev": "0a92994d729ff76a58f692d3028ca1b64b145d91",
                "url": "https://chromium.googlesource.com/external/github.com/Maratyszcza/FP16.git"
            },
            "src/third_party/freetype-testing/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-2aHPchIK5Oce5+XxdXVCC+8EM6i0XT0rFbjSIVa2L1A=",
                "rev": "7a69b1a2b028476f840ab7d4a2ffdfe4eb2c389f",
                "url": "https://chromium.googlesource.com/external/github.com/freetype/freetype2-testing.git"
            },
            "src/third_party/freetype/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-wyaCNPPL2CTZYY6YUUuGnN3TjHxgKeHAYsw+r88ijMI=",
                "rev": "55d0287cfc31115760cb13caa346b407ef0c0ceb",
                "url": "https://chromium.googlesource.com/chromium/src/third_party/freetype2.git"
            },
            "src/third_party/fuzztest/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-wuB/lbkVCbisZvVFuLdE8XNDuiLQcI47/Y0EqvOCytc=",
                "rev": "b5dbc33890d9586e4f6a213f1bf163ad287e6aa4",
                "url": "https://chromium.googlesource.com/external/github.com/google/fuzztest.git"
            },
            "src/third_party/fxdiv/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-LjX5kivfHbqCIA5pF9qUvswG1gjOFo3CMpX0VR+Cn38=",
                "rev": "63058eff77e11aa15bf531df5dd34395ec3017c8",
                "url": "https://chromium.googlesource.com/external/github.com/Maratyszcza/FXdiv.git"
            },
            "src/third_party/gemmlowp/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-O5wD8wxgis0qYMaY+xZ21GBDVQFphMRvInCOswS6inA=",
                "rev": "13d57703abca3005d97b19df1f2db731607a7dc2",
                "url": "https://chromium.googlesource.com/external/github.com/google/gemmlowp.git"
            },
            "src/third_party/google_benchmark/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-h2ryAQAuHI54Cni88L85e7Np4KATGVTRdDcmUvCNeWc=",
                "rev": "b177433f3ee2513b1075140c723d73ab8901790f",
                "url": "https://chromium.googlesource.com/external/github.com/google/benchmark.git"
            },
            "src/third_party/googletest/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-VYRjcM3dDY2FarviXyFMgSkXCqKfWXwtGAj2Msgm7zg=",
                "rev": "af29db7ec28d6df1c7f0f745186884091e602e07",
                "url": "https://chromium.googlesource.com/external/github.com/google/googletest.git"
            },
            "src/third_party/grpc/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-64JEVCx/PCM0dvv7kAQvSjLc0QbRAZVBDzwD/FAV6T8=",
                "rev": "822dab21d9995c5cf942476b35ca12a1aa9d2737",
                "url": "https://chromium.googlesource.com/external/github.com/grpc/grpc.git"
            },
            "src/third_party/harfbuzz-ng/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-xCsfgbsWVSiuII5zFspssrqX4NrRuhzufYSq6fdnjKQ=",
                "rev": "f26fd69d858642d76413b8f4068eaf9b57c40a5f",
                "url": "https://chromium.googlesource.com/external/github.com/harfbuzz/harfbuzz.git"
            },
            "src/third_party/highway/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-kNb9UVcFq2BIf9nftUgN8ciFFCzRCou/sLwVf08jf3E=",
                "rev": "8f20644eca693cfb74aa795b0006b6779c370e7a",
                "url": "https://chromium.googlesource.com/external/github.com/google/highway.git"
            },
            "src/third_party/hunspell_dictionaries": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-67mvpJRFFa9eMfyqFMURlbxOaTJBICnk+gl0b0mEHl8=",
                "rev": "41cdffd71c9948f63c7ad36e1fb0ff519aa7a37e",
                "url": "https://chromium.googlesource.com/chromium/deps/hunspell_dictionaries.git"
            },
            "src/third_party/icu": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-9yFRBrHdWcYgrZAaigS8XnxNsqJNklGdFkAAgVdHXFU=",
                "rev": "a622de35ac311c5ad390a7af80724634e5dc61ed",
                "url": "https://chromium.googlesource.com/chromium/deps/icu.git"
            },
            "src/third_party/jsoncpp/source": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-bSLNcoYBz3QCt5VuTR056V9mU2PmBuYBa0W6hFg2m8Q=",
                "rev": "42e892d96e47b1f6e29844cc705e148ec4856448",
                "url": "https://chromium.googlesource.com/external/github.com/open-source-parsers/jsoncpp.git"
            },
            "src/third_party/leveldatabase/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-TTX2FrmcWsgqrh4uzqMyGnnnG51cVC2ILfdLxD65MLY=",
                "rev": "068d5ee1a3ac40dabd00d211d5013af44be55bea",
                "url": "https://chromium.googlesource.com/external/leveldb.git"
            },
            "src/third_party/libFuzzer/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-T0dO+1A0r6kLFoleMkY8heu80biPntCpvA6YfqA7b+E=",
                "rev": "758bd21f103a501b362b1ca46fa8fcb692eaa303",
                "url": "https://chromium.googlesource.com/external/github.com/llvm/llvm-project/compiler-rt/lib/fuzzer.git"
            },
            "src/third_party/libaddressinput/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-xvUUQSPrvqUp5DI9AqlRTWurwDW087c6v4RvI+4sfOQ=",
                "rev": "e8712e415627f22d0b00ebee8db99547077f39bd",
                "url": "https://chromium.googlesource.com/external/libaddressinput.git"
            },
            "src/third_party/libaom/source/libaom": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-6oZWYXRTZ1IC5yGvfPI19PwPU9O7mKBsW2wVxBGwU/I=",
                "rev": "1dbe1c7fae2456f91ccc79fecb919e9ffea0727a",
                "url": "https://aomedia.googlesource.com/aom.git"
            },
            "src/third_party/libavif/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-Jd/KwJJ1oeQMLg8CShTTDQhCVHEDpXcQHiA4+NXYOIA=",
                "rev": "1a78d970b8315e7cc6a8601861ec75189c50c214",
                "url": "https://chromium.googlesource.com/external/github.com/AOMediaCodec/libavif.git"
            },
            "src/third_party/libavifinfo/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-UAc4iYWrKWteH98hD3QLkD3JWmV/rsvWhFIVJN7tc+Q=",
                "rev": "b496868f7c3fd17dfeeecc0364fe37e19edd548a",
                "url": "https://aomedia.googlesource.com/libavifinfo.git"
            },
            "src/third_party/libc++/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-DVO15xGxatRbUp13EoNslGEZ2QSHn97VbEBHyfMvKfQ=",
                "rev": "a429c26ae25c26a569ff12390d5f9be70c5e286b",
                "url": "https://chromium.googlesource.com/external/github.com/llvm/llvm-project/libcxx.git"
            },
            "src/third_party/libc++abi/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-QjCPRgFU34wZ8GG/dl+6wi2gflje3fG/x+eokb9W02c=",
                "rev": "2ca9f38714b1465b9f55b5fbd0da5e4342811e2b",
                "url": "https://chromium.googlesource.com/external/github.com/llvm/llvm-project/libcxxabi.git"
            },
            "src/third_party/libdrm/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-NUxS2rBJ0nFblvHRQUfKT933+DAws5RUTDb+RLxRF4M=",
                "rev": "98e1db501173303e58ef6a1def94ab7a2d84afc1",
                "url": "https://chromium.googlesource.com/chromiumos/third_party/libdrm.git"
            },
            "src/third_party/libgav1/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-dT8/Mdit3Qc5Sno6DYKv1qSNr+6Lhiy24ZNNBKoVq8I=",
                "rev": "df0023cc95b8e606a2fd243522d823401ef86637",
                "url": "https://chromium.googlesource.com/codecs/libgav1.git"
            },
            "src/third_party/libipp/libipp": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-gxU92lHLd6uxO8T3QWhZIK0hGy97cki705DV0VimCPY=",
                "rev": "2209bb84a8e122dab7c02fe66cc61a7b42873d7f",
                "url": "https://chromium.googlesource.com/chromiumos/platform2/libipp.git"
            },
            "src/third_party/libjpeg_turbo": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-+t75ZAdOXc7Nd1/8zEQLX+enZb8upqIQuR6qzb9z7Cg=",
                "rev": "9b894306ec3b28cea46e84c32b56773a98c483da",
                "url": "https://chromium.googlesource.com/chromium/deps/libjpeg_turbo.git"
            },
            "src/third_party/liblouis/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-EI/uaHXe0NlqdEw764q0SjerThYEVLRogUlmrsZwXnY=",
                "rev": "9700847afb92cb35969bdfcbbfbbb74b9c7b3376",
                "url": "https://chromium.googlesource.com/external/liblouis-github.git"
            },
            "src/third_party/libphonenumber/dist": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-3hSnTFTD3KAdbyxfKg12qbIYTmw6YlTCH64gMP/HUJo=",
                "rev": "140dfeb81b753388e8a672900fb7a971e9a0d362",
                "url": "https://chromium.googlesource.com/external/libphonenumber.git"
            },
            "src/third_party/libprotobuf-mutator/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-ZyPweW+V5foxFQwjjMLkaRUo+FNV+kEDGIH/4oRV614=",
                "rev": "a304ec48dcf15d942607032151f7e9ee504b5dcf",
                "url": "https://chromium.googlesource.com/external/github.com/google/libprotobuf-mutator.git"
            },
            "src/third_party/libsrtp": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-pfLFh2JGk/g0ZZxBKTaYW9/PBpkCm0rtJeyNePUMTTc=",
                "rev": "5b7c744eb8310250ccc534f3f86a2015b3887a0a",
                "url": "https://chromium.googlesource.com/chromium/deps/libsrtp.git"
            },
            "src/third_party/libsync/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-Mkl6C1LxF3RYLwYbxiSfoQPt8QKFwQWj/Ati2sNJ32E=",
                "rev": "f4f4387b6bf2387efbcfd1453af4892e8982faf6",
                "url": "https://chromium.googlesource.com/aosp/platform/system/core/libsync.git"
            },
            "src/third_party/libunwind/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-bQHo8CKDpqvJcVv6OzVO7LOGTqL9qHqD4n9TtRK0v5g=",
                "rev": "7686b5d38c69d14932abfb1c1a66ba56c78791ad",
                "url": "https://chromium.googlesource.com/external/github.com/llvm/llvm-project/libunwind.git"
            },
            "src/third_party/libvpx/source/libvpx": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-UA/pf35eWFArRM+QdN6i6LK0ePWzXEsviHlf3WUgMoM=",
                "rev": "424723dc025ce451dab9568239a46b18d0919b4d",
                "url": "https://chromium.googlesource.com/webm/libvpx.git"
            },
            "src/third_party/libwebm/source": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-u/5nkJed0DzdhR5OLL2kIhZhOnrbyzL1Kx37vV/jcEo=",
                "rev": "e4fbea0c9751ae8aa86629b197a28d8276a2b0da",
                "url": "https://chromium.googlesource.com/webm/libwebm.git"
            },
            "src/third_party/libwebp/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-Wa33opOFgcmYtycezDUt2f6PqZBse6xYB5kLuSaw95o=",
                "rev": "ca332209cb5567c9b249c86788cb2dbf8847e760",
                "url": "https://chromium.googlesource.com/webm/libwebp.git"
            },
            "src/third_party/libyuv": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-jxs9kHI40gRFhm9cU6uS1Rxj+LLUUqT9b3myihxgW7s=",
                "rev": "04821d1e7d60845525e8db55c7bcd41ef5be9406",
                "url": "https://chromium.googlesource.com/libyuv/libyuv.git"
            },
            "src/third_party/lss": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-hE8uZf9Fst66qJkoVYChiB8G41ie+k9M4X0W+5JUSdw=",
                "rev": "ce877209e11aa69dcfffbd53ef90ea1d07136521",
                "url": "https://chromium.googlesource.com/linux-syscall-support.git"
            },
            "src/third_party/material_color_utilities/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-oi28dWuTd6ijn/RKSPukDr5GSzYiCTM2klFb7WSMDHY=",
                "rev": "234a000e507d586c20df6e3bf5b9e035bc5ce7b1",
                "url": "https://chromium.googlesource.com/external/github.com/material-foundation/material-color-utilities.git"
            },
            "src/third_party/minigbm/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-9HwvjTETerbQ7YKXH9kUB2eWa8PxGWMAJfx1jAluhrs=",
                "rev": "3018207f4d89395cc271278fb9a6558b660885f5",
                "url": "https://chromium.googlesource.com/chromiumos/platform/minigbm.git"
            },
            "src/third_party/nan": {
                "fetcher": "fetchFromGitHub",
                "hash": "sha256-cwti+BWmF/l/dqa/cN0C587EK4WwRWcWy6gjFVkaMTg=",
                "owner": "nodejs",
                "repo": "nan",
                "rev": "e14bdcd1f72d62bca1d541b66da43130384ec213"
            },
            "src/third_party/nasm": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-L+b3X3vsfpY6FSlIK/AHhxhmq2cXd50vND6uT6yn8Qs=",
                "rev": "7fc833e889d1afda72c06220e5bed8fb43b2e5ce",
                "url": "https://chromium.googlesource.com/chromium/deps/nasm.git"
            },
            "src/third_party/nearby/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-9PT/tuxjREGsvSnYT2wyaL5sB52CcYPpKVKN0ZGldWU=",
                "rev": "629e7ba7c964a62c97f6a882bffaec3c8490bb1e",
                "url": "https://chromium.googlesource.com/external/github.com/google/nearby-connections.git"
            },
            "src/third_party/neon_2_sse/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-299ZptvdTmCnIuVVBkrpf5ZTxKPwgcGUob81tEI91F0=",
                "rev": "a15b489e1222b2087007546b4912e21293ea86ff",
                "url": "https://chromium.googlesource.com/external/github.com/intel/ARM_NEON_2_x86_SSE.git"
            },
            "src/third_party/openh264/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-J7Eqe2QevZh1xfap19W8AVCcwfRu7ztknnbKFJUAH1c=",
                "rev": "09a4f3ec842a8932341b195c5b01e141c8a16eb7",
                "url": "https://chromium.googlesource.com/external/github.com/cisco/openh264"
            },
            "src/third_party/openscreen/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-TyZ/sZ0gnesWjKUnO2RVM2TTdpVIxsBWueHDgix0/wg=",
                "rev": "971d6055e7b78c474e2e734e55a2991fbb7ab665",
                "url": "https://chromium.googlesource.com/openscreen"
            },
            "src/third_party/openscreen/src/third_party/tinycbor/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-fMKBFUSKmODQyg4hKIa1hwnEKIV6WBbY1Gb8DOSnaHA=",
                "rev": "d393c16f3eb30d0c47e6f9d92db62272f0ec4dc7",
                "url": "https://chromium.googlesource.com/external/github.com/intel/tinycbor.git"
            },
            "src/third_party/ots/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-kiUXrXsaGOzPkKh0dVmU1I13WHt0Stzj7QLMqHN9FbU=",
                "rev": "46bea9879127d0ff1c6601b078e2ce98e83fcd33",
                "url": "https://chromium.googlesource.com/external/github.com/khaledhosny/ots.git"
            },
            "src/third_party/pdfium": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-U1cScrfKN0F+cy307RT2iwB6RYKeCNDRnkYxzamezoY=",
                "rev": "a3895af47f600e3f9677f31fa39e15bd01c18457",
                "url": "https://pdfium.googlesource.com/pdfium.git"
            },
            "src/third_party/perfetto": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-xLx+dnUysm+HS1esu2hAqBKg/GgTJK4SQu1ZINr2aYc=",
                "rev": "7ce535ddfc62d30166f35a8ed0f121da5eb0437c",
                "url": "https://android.googlesource.com/platform/external/perfetto.git"
            },
            "src/third_party/pthreadpool/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-R4YmNzWEELSkAws/ejmNVxqXDTJwcqjLU/o/HvgRn2E=",
                "rev": "4fe0e1e183925bf8cfa6aae24237e724a96479b8",
                "url": "https://chromium.googlesource.com/external/github.com/Maratyszcza/pthreadpool.git"
            },
            "src/third_party/pyelftools": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-I/7p3IEvfP/gkes4kx18PvWwhAKilQKb67GXoW4zFB4=",
                "rev": "19b3e610c86fcadb837d252c794cb5e8008826ae",
                "url": "https://chromium.googlesource.com/chromiumos/third_party/pyelftools.git"
            },
            "src/third_party/pywebsocket3/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-WEqqu2/7fLqcf/2/IcD7/FewRSZ6jTgVlVBvnihthYQ=",
                "rev": "50602a14f1b6da17e0b619833a13addc6ea78bc2",
                "url": "https://chromium.googlesource.com/external/github.com/GoogleChromeLabs/pywebsocket3.git"
            },
            "src/third_party/quic_trace/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-Nf9ZDLcE1JunhbpEMHhrY2ROnbgrvVZoRkPwWq1DU0g=",
                "rev": "caa0a6eaba816ecb737f9a70782b7c80b8ac8dbc",
                "url": "https://chromium.googlesource.com/external/github.com/google/quic-trace.git"
            },
            "src/third_party/re2/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-m3bJlSyyhmj/7jvy7ExNX/gol7yeu1mnmyAc8u8Pr8s=",
                "rev": "3d9bdbd0e208d3274a1cb1275c94d8b7626ddde2",
                "url": "https://chromium.googlesource.com/external/github.com/google/re2.git"
            },
            "src/third_party/ruy/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-Zi3A49YqDE5S4iSpw9t9kTzitbQbcslm1zsepWX5cbw=",
                "rev": "6ffa93a89376555b09134c59b84d8f5e9cfc6ce6",
                "url": "https://chromium.googlesource.com/external/github.com/google/ruy.git"
            },
            "src/third_party/securemessage/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-GS4ccnuiqxMs/LVYAtvSlVAYFp4a5GoZsxcriTX3k78=",
                "rev": "fa07beb12babc3b25e0c5b1f38c16aa8cb6b8f84",
                "url": "https://chromium.googlesource.com/external/github.com/google/securemessage.git"
            },
            "src/third_party/skia": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-CvoJxsBN1Nyh+RPgU+aptZW5WsfGB4hmSlhyma1wO+E=",
                "rev": "349c1179c43ef46f2804404952b9460dc007d76a",
                "url": "https://skia.googlesource.com/skia.git"
            },
            "src/third_party/smhasher/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-RyC//me08hwGXRrWcK8GZ1uhIkBq4FByA7fHCVDsniw=",
                "rev": "e87738e57558e0ec472b2fc3a643b838e5b6e88f",
                "url": "https://chromium.googlesource.com/external/smhasher.git"
            },
            "src/third_party/snappy/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-5fV6NfO8vmqK+iCwpLtE2YjYOzjsshctauyjNIOxrH0=",
                "rev": "c9f9edf6d75bb065fa47468bf035e051a57bec7c",
                "url": "https://chromium.googlesource.com/external/github.com/google/snappy.git"
            },
            "src/third_party/speedometer/v3.0": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-PqrwtPFU3TI840za3UU8p+t4ZdyX0l79esEA602Mbq0=",
                "rev": "5107c739c1b2a008e7293e3b489c4f80a8fb2e01",
                "url": "https://chromium.googlesource.com/external/github.com/WebKit/Speedometer.git"
            },
            "src/third_party/sqlite/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-wKsfwZpDRQzYQp6qls07uapgy9K3TWLOEUQlhIFpJtw=",
                "rev": "cd9486849ba3c3ec753f556fd29c0aabee122a28",
                "url": "https://chromium.googlesource.com/chromium/deps/sqlite.git"
            },
            "src/third_party/squirrel.mac": {
                "fetcher": "fetchFromGitHub",
                "hash": "sha256-4GfKQg0u3c9GI+jl3ixESNqWXQJKRMi+00QT0s2Shqw=",
                "owner": "Squirrel",
                "repo": "Squirrel.Mac",
                "rev": "0e5d146ba13101a1302d59ea6e6e0b3cace4ae38"
            },
            "src/third_party/squirrel.mac/vendor/Mantle": {
                "fetcher": "fetchFromGitHub",
                "hash": "sha256-ogFkMJybf2Ue606ojXJu6Gy5aXSi1bSKm60qcTAIaPk=",
                "owner": "Mantle",
                "repo": "Mantle",
                "rev": "78d3966b3c331292ea29ec38661b25df0a245948"
            },
            "src/third_party/squirrel.mac/vendor/ReactiveObjC": {
                "fetcher": "fetchFromGitHub",
                "hash": "sha256-/MCqC1oFe3N9TsmfVLgl+deR6qHU6ZFQQjudb9zB5Mo=",
                "owner": "ReactiveCocoa",
                "repo": "ReactiveObjC",
                "rev": "74ab5baccc6f7202c8ac69a8d1e152c29dc1ea76"
            },
            "src/third_party/swiftshader": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-Im4sdDo4b96YQIKDcAmqUk8PiJzejZgSDPur3hqPPRk=",
                "rev": "d9ec9befba05a8dfca09c1e88f3f7be0e4b153c6",
                "url": "https://swiftshader.googlesource.com/SwiftShader.git"
            },
            "src/third_party/text-fragments-polyfill/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-4rW2u1cQAF4iPWHAt1FvVXIpz2pmI901rEPks/w/iFA=",
                "rev": "c036420683f672d685e27415de0a5f5e85bdc23f",
                "url": "https://chromium.googlesource.com/external/github.com/GoogleChromeLabs/text-fragments-polyfill.git"
            },
            "src/third_party/tflite/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-119/isDtopnj6MBRr3bzBvIppXw8M/ejcPx0CmIjXZU=",
                "rev": "21e56c30e480ac67bed48335a5d122c59a6a6805",
                "url": "https://chromium.googlesource.com/external/github.com/tensorflow/tensorflow.git"
            },
            "src/third_party/ukey2/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-aaLs6ZS+CdBlCJ6ZhsmdAPFxiBIij6oufsDcNeRSV1E=",
                "rev": "0275885d8e6038c39b8a8ca55e75d1d4d1727f47",
                "url": "https://chromium.googlesource.com/external/github.com/google/ukey2.git"
            },
            "src/third_party/vulkan-deps": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-lqCUx70IeHZ7YfE9DXia7dFok/JsFu/HSIv2AGi37YI=",
                "rev": "2b783ed328d3a46e6a7a21218ced6b4dd1684114",
                "url": "https://chromium.googlesource.com/vulkan-deps"
            },
            "src/third_party/vulkan-deps/glslang/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-+Qs+Q3p11y9oUKyWEbuaQ0vx6hppFZSFbFuU0ve6rRo=",
                "rev": "ebb0a8b28e5ea7a13146a24b3ad87b1966dbdfa3",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/glslang"
            },
            "src/third_party/vulkan-deps/spirv-cross/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-UIk5hihUPjXNzEeO2laS4dUef/rEExxXAZjMcftx+3A=",
                "rev": "2de1265fca722929785d9acdec4ab728c47a0254",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/SPIRV-Cross"
            },
            "src/third_party/vulkan-deps/spirv-headers/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-JLFVzFNdXqxyKmg3NymIqqZmf2GAb7tYetQ6HJPsUIQ=",
                "rev": "88bc5e321c2839707df8b1ab534e243e00744177",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/SPIRV-Headers"
            },
            "src/third_party/vulkan-deps/spirv-tools/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-+HUDsp0COKlPtKidOVvUk7lN1AiFw01i5ANc3MO+qjs=",
                "rev": "5084f58e5d187b16f84d2af936ff94ea2f46a00c",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/SPIRV-Tools"
            },
            "src/third_party/vulkan-deps/vulkan-headers/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-UlaNc1NxTYulrF4Ol0rLysbLwbFR46Evq7WkWncPB8k=",
                "rev": "f4bfcd885214675a6a0d7d4df07f52b511e6ea16",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-Headers"
            },
            "src/third_party/vulkan-deps/vulkan-loader/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-GbVr8LmwC6r7a13++5cYJXAq+H4P07quEHpTUV1qfqA=",
                "rev": "7b7d15bc9f1d782e4d6ea34e61fd9a36a7952208",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-Loader"
            },
            "src/third_party/vulkan-deps/vulkan-tools/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-vnrhYM7tcDTcXH4A+2leio5Wc1+b5H+7CQISEI+SPV8=",
                "rev": "f7017f23337b90a2b2ceb65a4e1050e8ad89e065",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-Tools"
            },
            "src/third_party/vulkan-deps/vulkan-utility-libraries/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-buxOdupK/w1sFGGHrEI+On2/mR0q5whvQNKUI8dxJ60=",
                "rev": "dcfce25b439a2785f2c90b184e1964898070b4f1",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-Utility-Libraries"
            },
            "src/third_party/vulkan-deps/vulkan-validation-layers/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-LJd7pkcFd8k4npEv8mJy+47xo/5CXMN75ZAtDp+v6FI=",
                "rev": "281e1c1c6b51bb6b33f88c18ed4da58ac3024311",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-ValidationLayers"
            },
            "src/third_party/vulkan_memory_allocator": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-YzxHZagz/M8Y54UnI4h1wu5jSTuaOgv0ifC9d3fJZlQ=",
                "rev": "56300b29fbfcc693ee6609ddad3fdd5b7a449a21",
                "url": "https://chromium.googlesource.com/external/github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator.git"
            },
            "src/third_party/wayland-protocols/gtk": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-75XNnLkF5Lt1LMRGT+T61k0/mLa3kkynfN+QWvZ0LiQ=",
                "rev": "40ebed3a03aef096addc0af09fec4ec529d882a0",
                "url": "https://chromium.googlesource.com/external/github.com/GNOME/gtk.git"
            },
            "src/third_party/wayland-protocols/kde": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-Dmcp/2ms/k7NxPPmPkp0YNfM9z2Es1ZO0uX10bc7N2Y=",
                "rev": "0b07950714b3a36c9b9f71fc025fc7783e82926e",
                "url": "https://chromium.googlesource.com/external/github.com/KDE/plasma-wayland-protocols.git"
            },
            "src/third_party/wayland-protocols/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-3QK+ZN6IFUFkDxySSoQwP1J3JnTlD7JPaUk6Tr/d/k4=",
                "rev": "4624cfaaf563cd7be5e2e2087c8de6d3a48ea867",
                "url": "https://chromium.googlesource.com/external/anongit.freedesktop.org/git/wayland/wayland-protocols.git"
            },
            "src/third_party/wayland/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-0ICSMZhnsLqMNfqSGjqM3p4ssxptkBtt7EMCpxknW4A=",
                "rev": "3fda2fbf51db54398c0155facee82cc9533958a2",
                "url": "https://chromium.googlesource.com/external/anongit.freedesktop.org/git/wayland/wayland.git"
            },
            "src/third_party/webdriver/pylib": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-WIqWXIKVgElgg8P8laLAlUrgwodGdeVcwohZxnPKedw=",
                "rev": "fc5e7e70c098bfb189a9a74746809ad3c5c34e04",
                "url": "https://chromium.googlesource.com/external/github.com/SeleniumHQ/selenium/py.git"
            },
            "src/third_party/webgl/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-dubsIPZKBGOzANGvMtQxFKFIHr0laDUGpzgRyEOjHMU=",
                "rev": "f4bf599a8b575df685c31d9c4729a70a04e377ed",
                "url": "https://chromium.googlesource.com/external/khronosgroup/webgl.git"
            },
            "src/third_party/webgpu-cts/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-E39f0wy72TwQ9IM4QquqWxwDiHZOUI8hWkx2QDFcRog=",
                "rev": "3dbe4ce12983ccc1ad42e228057c7d8adc17cb78",
                "url": "https://chromium.googlesource.com/external/github.com/gpuweb/cts.git"
            },
            "src/third_party/webrtc": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-ju7sX1jrzg5BZOqdkcnFymRTqdFi7xkeHznKJQB1+08=",
                "rev": "5ab829e4ca8f63be6b4ed1d98eee382d7307d34e",
                "url": "https://webrtc.googlesource.com/src.git"
            },
            "src/third_party/weston/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-y2srFaPUOoB2umzpo4+hFfhNlqXM2AoMGOpUy/ZSacg=",
                "rev": "ccf29cb237c3ed09c5f370f35239c93d07abfdd7",
                "url": "https://chromium.googlesource.com/external/anongit.freedesktop.org/git/wayland/weston.git"
            },
            "src/third_party/wuffs/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-HP8Vf1C9DuA9H+busf3lFoF9SsYqviLKv0l73CxmNEI=",
                "rev": "fe9d08f2b6e80af691bfb1a718e144c49a1b9eba",
                "url": "https://skia.googlesource.com/external/github.com/google/wuffs-mirror-release-c.git"
            },
            "src/third_party/xdg-utils": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-WuQ9uDq+QD17Y20ACFGres4nbkeOiTE2y+tY1avAT5U=",
                "rev": "cb54d9db2e535ee4ef13cc91b65a1e2741a94a44",
                "url": "https://chromium.googlesource.com/chromium/deps/xdg-utils.git"
            },
            "src/third_party/xnnpack/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-s9Avx9o+1igKulOpKhtbbkoINuh1wNercPszRaA4TZM=",
                "rev": "bbbaa7352a3ea729987d3e654d37be93e8009691",
                "url": "https://chromium.googlesource.com/external/github.com/google/XNNPACK.git"
            },
            "src/third_party/zstd/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-95OOpYKGve+YWzqqguQIg1emTOAuaGyYpWxrWVDOKAQ=",
                "rev": "cdceb0fce59785c841bf697e00067163106064e1",
                "url": "https://chromium.googlesource.com/external/github.com/facebook/zstd.git"
            },
            "src/tools/page_cycler/acid3": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-s/49EaYQRsyxuLejXc1zGDYTD7uO0ddaQIJBP50Bvw0=",
                "rev": "a926d0a32e02c4c03ae95bb798e6c780e0e184ba",
                "url": "https://chromium.googlesource.com/chromium/deps/acid3.git"
            },
            "src/v8": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-GevDXfVX4UxwTbgp2ZQbp3AFOHv5tECmyqLGIyYi5Tw=",
                "rev": "71b6b5a68e0883c155e01368aace6eb6d71b85f3",
                "url": "https://chromium.googlesource.com/v8/v8.git"
            }
        },
        "electron_yarn_hash": "117vxam1044yy2akwjfhvb5dpfnv667pwbg92ac43551xfn0slcg",
        "modules": "119",
        "node": "18.18.2",
        "version": "28.3.1"
    },
    "29": {
        "chrome": "122.0.6261.156",
        "chromium": {
            "deps": {
                "gn": {
                    "hash": "sha256-UhdDsq9JyP0efGpAaJ/nLp723BbjM6pkFPcAnQbgMKY=",
                    "rev": "f99e015ac35f689cfdbf46e4eb174e5d2da78d8e",
                    "url": "https://gn.googlesource.com/gn",
                    "version": "2024-01-22"
                }
            },
            "version": "122.0.6261.156"
        },
        "chromium_npm_hash": "sha256-9eFsK673j3pTDOcsU35RN4hagFygA/v/ahCqVVEV0Rs=",
        "deps": {
            "src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-5AmRq2pl3p0QtqyIjx4XDVE9Mnps18F9Z9MyH+38a0Y=",
                "postFetch": "rm -r $out/third_party/blink/web_tests; rm -r $out/third_party/hunspell/tests; rm -r $out/content/test/data; rm -r $out/courgette/testdata; rm -r $out/extensions/test/data; rm -r $out/media/test/data; ",
                "rev": "122.0.6261.156",
                "url": "https://chromium.googlesource.com/chromium/src.git"
            },
            "src/chrome/test/data/perf/canvas_bench": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-svOuyBGKloBLM11xLlWCDsB4PpRjdKTBdW2UEW4JQjM=",
                "rev": "a7b40ea5ae0239517d78845a5fc9b12976bfc732",
                "url": "https://chromium.googlesource.com/chromium/canvas_bench.git"
            },
            "src/chrome/test/data/perf/frame_rate/content": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-t4kcuvH0rkPBkcdiMsoNQaRwU09eU+oSvyHDiAHrKXo=",
                "rev": "c10272c88463efeef6bb19c9ec07c42bc8fe22b9",
                "url": "https://chromium.googlesource.com/chromium/frame_rate/content.git"
            },
            "src/chrome/test/data/xr/webvr_info": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-BsAPwc4oEWri0TlqhyxqFNqKdfgVSrB0vQyISmYY4eg=",
                "rev": "c58ae99b9ff9e2aa4c524633519570bf33536248",
                "url": "https://chromium.googlesource.com/external/github.com/toji/webvr.info.git"
            },
            "src/docs/website": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-sKbrY/m75LVWjWjhhjaeQnfXQP5AkEsEkZ+GmMNQJVo=",
                "rev": "7474472013397bdb177cda70099f6411a5bd8212",
                "url": "https://chromium.googlesource.com/website.git"
            },
            "src/electron": {
                "fetcher": "fetchFromGitHub",
                "hash": "sha256-u9o+2M3dURfZkKSzb+bjZcvHygXDbt2IjaYLoSjWeBw=",
                "owner": "electron",
                "repo": "electron",
                "rev": "v29.3.3"
            },
            "src/media/cdm/api": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-6J6aSYW0or99VAgMNJJOdJqMJspoG7w1HxDN50MV5bw=",
                "rev": "fef0b5aa1bd31efb88dfab804bdbe614f3d54f28",
                "url": "https://chromium.googlesource.com/chromium/cdm.git"
            },
            "src/net/third_party/quiche/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-mrnKQh2d6ewg1X8sCx8U4frHXyFKHuIUpvi0WBzg+PU=",
                "rev": "0e39ce016ee1ec8271aa7216d547917c239db525",
                "url": "https://quiche.googlesource.com/quiche.git"
            },
            "src/third_party/angle": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-h2b/f8MmldZSk3c84rvwO5+UZK36BFf/H9BStWFbDoo=",
                "rev": "f9bad5e27d61e2ab6a7504b1793be5aa14eb1414",
                "url": "https://chromium.googlesource.com/angle/angle.git"
            },
            "src/third_party/angle/third_party/VK-GL-CTS/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-zBY7MY6FXazzTW+nXvknkNar/odL0tzHXxHPmpYuy7E=",
                "rev": "0f6fd3de81102058dc2ae299af1ad5287d2145dd",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/VK-GL-CTS"
            },
            "src/third_party/angle/third_party/glmark2/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-L7+zWM0qn8WFhmON7DGvarTsN1YHt1sn5+hazTOZrrk=",
                "rev": "ca8de51fedb70bace5351c6b002eb952c747e889",
                "url": "https://chromium.googlesource.com/external/github.com/glmark2/glmark2"
            },
            "src/third_party/angle/third_party/rapidjson/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-btUl1a/B0sXwf/+hyvCvVJjWqIkXfVYCpHm3TeBuOxk=",
                "rev": "781a4e667d84aeedbeb8184b7b62425ea66ec59f",
                "url": "https://chromium.googlesource.com/external/github.com/Tencent/rapidjson"
            },
            "src/third_party/anonymous_tokens/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-3+/zvwYAv3OGoKJatg+/c3OM1IyGq2iCyFWgu3b8VoU=",
                "rev": "d024f05b39e21bb2a0b8205a7ce72b1b185b84c2",
                "url": "https://chromium.googlesource.com/external/github.com/google/anonymous-tokens.git"
            },
            "src/third_party/beto-core/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-PkvHqVKjGHxAYntylJxR5xnUVU1o8DJuBmsd9qkl/Yo=",
                "rev": "4d202dab960a0b6a6e4757ab4393945aca5a09db",
                "url": "https://beto-core.googlesource.com/beto-core.git"
            },
            "src/third_party/boringssl/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-shqUB+x7oXgtQqqfhkwXHwLLaJW1/L1vh1O+jvdsDP8=",
                "rev": "414f69504d30d0848b69f6453ea7fb5e88004cb4",
                "url": "https://boringssl.googlesource.com/boringssl.git"
            },
            "src/third_party/breakpad/breakpad": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-7SmO5e/U2shYVslmCRPVLyfU5N4Rp1mzls8lLqIW8x8=",
                "rev": "62ecd463583d09eb7d15b1d410055f30b2c7bcb4",
                "url": "https://chromium.googlesource.com/breakpad/breakpad.git"
            },
            "src/third_party/cast_core/public/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-AalRQhJmornCqmvE2+36J/3LubaA0jr6P1PXy32lX4I=",
                "rev": "71f51fd6fa45fac73848f65421081edd723297cd",
                "url": "https://chromium.googlesource.com/cast_core/public"
            },
            "src/third_party/catapult": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-ixfmLcWTgVcHi2CXAulMXTaAyPYT42Q8VflStxmNRXc=",
                "rev": "ab03292694695864b523636060e2a96b2c9b2df2",
                "url": "https://chromium.googlesource.com/catapult.git"
            },
            "src/third_party/ced/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-ySG74Rj2i2c/PltEgHVEDq+N8yd9gZmxNktc56zIUiY=",
                "rev": "ba412eaaacd3186085babcd901679a48863c7dd5",
                "url": "https://chromium.googlesource.com/external/github.com/google/compact_enc_det.git"
            },
            "src/third_party/chromium-variations": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-px8BHI5Cp3vBRyei50dbxCTn/gydLsps1/SmJxxeGKw=",
                "rev": "d0dcd8802c22c1ac4a7d112782a4c75f0c6ca8ee",
                "url": "https://chromium.googlesource.com/chromium-variations.git"
            },
            "src/third_party/clang-format/script": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-7VvofDDQe+SoMRBfVk26q+C+OPyOE7QH35wVWkfDKxs=",
                "rev": "e5337933f2951cacd3aeacd238ce4578163ca0b9",
                "url": "https://chromium.googlesource.com/external/github.com/llvm/llvm-project/clang/tools/clang-format.git"
            },
            "src/third_party/cld_3/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-C3MOMBUy9jgkT9BAi/Fgm2UH4cxRuwSBEcRl3hzM2Ss=",
                "rev": "b48dc46512566f5a2d41118c8c1116c4f96dc661",
                "url": "https://chromium.googlesource.com/external/github.com/google/cld_3.git"
            },
            "src/third_party/colorama/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-6ZTdPYSHdQOLYMSnE+Tp7PgsVTs3U2awGu9Qb4Rg/tk=",
                "rev": "3de9f013df4b470069d03d250224062e8cf15c49",
                "url": "https://chromium.googlesource.com/external/colorama.git"
            },
            "src/third_party/content_analysis_sdk/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-f5Jmk1MiGjaRdLun+v/GKVl8Yv9hOZMTQUSxgiJalcY=",
                "rev": "9a408736204513e0e95dd2ab3c08de0d95963efc",
                "url": "https://chromium.googlesource.com/external/github.com/chromium/content_analysis_sdk.git"
            },
            "src/third_party/cpu_features/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-E8LoVzhe+TAmARWZTSuINlsVhzpUJMxPPCGe/dHZcyA=",
                "rev": "936b9ab5515dead115606559502e3864958f7f6e",
                "url": "https://chromium.googlesource.com/external/github.com/google/cpu_features.git"
            },
            "src/third_party/cpuinfo/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-56XE95dvaDF8E89V/le19Gk52fR0pqqyE38UgQo+GQM=",
                "rev": "76cc10d627add77922dc24521b332a055a4d6d77",
                "url": "https://chromium.googlesource.com/external/github.com/pytorch/cpuinfo.git"
            },
            "src/third_party/crc32c/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-urg0bmnfMfHagLPELp4WrNCz1gBZ6DFOWpDue1KsMtc=",
                "rev": "fa5ade41ee480003d9c5af6f43567ba22e4e17e6",
                "url": "https://chromium.googlesource.com/external/github.com/google/crc32c.git"
            },
            "src/third_party/cros-components/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-2FuyB/TLKMbqgjvw0q19lcG85fedwlOmKKNlGevEzos=",
                "rev": "ab7bdff32543991f52872c25cecf1f926702dfe3",
                "url": "https://chromium.googlesource.com/external/google3/cros_components.git"
            },
            "src/third_party/cros_system_api": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-Tzn7Sx6k7BpH/UqMZHdLTk26FBp5QNcX0xWhztgRKrw=",
                "rev": "12d5e386005a211570cfdf9849d2fa6a3b38594b",
                "url": "https://chromium.googlesource.com/chromiumos/platform2/system_api.git"
            },
            "src/third_party/crossbench": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-VxH1eOsJGQUk93EYexl1QrCpHTpgCOQP7H+oN0MZNpA=",
                "rev": "1983b3f517da56c35c91296467458f71ad5b9340",
                "url": "https://chromium.googlesource.com/crossbench.git"
            },
            "src/third_party/dav1d/libdav1d": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-9SrbxiOqXKTFf4qZ4Wqg9aoOMY8zv7NczTqN2+lXwCI=",
                "rev": "47107e384bd1dc25674acf04d000a8cdc6195234",
                "url": "https://chromium.googlesource.com/external/github.com/videolan/dav1d.git"
            },
            "src/third_party/dawn": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-/lG4wfy5LVCMGuqKRZgf/NoxsAuCvyUdV1Anbzi0q+U=",
                "rev": "6a6719ee09f1078356fdd31c69061e07b5c61c2d",
                "url": "https://dawn.googlesource.com/dawn.git"
            },
            "src/third_party/dawn/third_party/dxc": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-PGGwxNYgvZ//k+cr19iTG2QwC9Agu2T9k9QOhnX565s=",
                "rev": "701a2b1da0387ac6abf73bdbaf7864b9615db033",
                "url": "https://chromium.googlesource.com/external/github.com/microsoft/DirectXShaderCompiler"
            },
            "src/third_party/dawn/third_party/dxheaders": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-0Miw1Cy/jmOo7bLFBOHuTRDV04cSeyvUEyPkpVsX9DA=",
                "rev": "980971e835876dc0cde415e8f9bc646e64667bf7",
                "url": "https://chromium.googlesource.com/external/github.com/microsoft/DirectX-Headers"
            },
            "src/third_party/dawn/third_party/glfw": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-TwAPRjQxIz3J+zbNxzCp5Tek7MwisxdekMpY5QGsKyg=",
                "rev": "62e175ef9fae75335575964c845a302447c012c7",
                "url": "https://chromium.googlesource.com/external/github.com/glfw/glfw"
            },
            "src/third_party/dawn/third_party/khronos/EGL-Registry": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-Z6DwLfgQ1wsJXz0KKJyVieOatnDmx3cs0qJ6IEgSq1A=",
                "rev": "7dea2ed79187cd13f76183c4b9100159b9e3e071",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/EGL-Registry"
            },
            "src/third_party/dawn/third_party/khronos/OpenGL-Registry": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-K3PcRIiD3AmnbiSm5TwaLs4Gu9hxaN8Y91WMKK8pOXE=",
                "rev": "5bae8738b23d06968e7c3a41308568120943ae77",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/OpenGL-Registry"
            },
            "src/third_party/dawn/third_party/webgpu-cts": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-wlneFqVEhM6fe9p10T22dx4dxnZzWwKHw+35eIlDGVM=",
                "rev": "dedb6316202c8c55b898e52248f1345241299125",
                "url": "https://chromium.googlesource.com/external/github.com/gpuweb/cts"
            },
            "src/third_party/depot_tools": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-C1l4piDzNENx6Vvtzu03HsBZTHIavO5AkmO6QXErh3Y=",
                "rev": "6fc0c97ab284021b72e3bc962f7fa879ffcad65b",
                "url": "https://chromium.googlesource.com/chromium/tools/depot_tools.git"
            },
            "src/third_party/devtools-frontend/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-Y7XPBkKU8p210dj7ydIDVJgiXx6ZQPP4D5Jfw3t9FCc=",
                "rev": "3fa1fc736f46022f45c7ba7d817d1df1519c55d7",
                "url": "https://chromium.googlesource.com/devtools/devtools-frontend"
            },
            "src/third_party/dom_distiller_js/dist": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-yuEBD2XQlV3FGI/i7lTmJbCqzeBiuG1Qow8wvsppGJw=",
                "rev": "199de96b345ada7c6e7e6ba3d2fa7a6911b8767d",
                "url": "https://chromium.googlesource.com/chromium/dom-distiller/dist.git"
            },
            "src/third_party/eigen3/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-a9QAnv6vIM8a9Bn8ZmfeMT0+kbtb0QGxM0+m5xwIqm8=",
                "rev": "454f89af9d6f3525b1df5f9ef9c86df58bf2d4d3",
                "url": "https://chromium.googlesource.com/external/gitlab.com/libeigen/eigen.git"
            },
            "src/third_party/electron_node": {
                "fetcher": "fetchFromGitHub",
                "hash": "sha256-lGNDwe3IiQMLg5o0AMhLfNpyfu4dXVk05YRO0yMzg0I=",
                "owner": "nodejs",
                "repo": "node",
                "rev": "v20.9.0"
            },
            "src/third_party/emoji-segmenter/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-oT9mAKoKnrsFsBAeTRfPOXM76HRQQabFAlPpfKUGFhs=",
                "rev": "9ba6d25d0d9313569665d4a9d2b34f0f39f9a50e",
                "url": "https://chromium.googlesource.com/external/github.com/google/emoji-segmenter.git"
            },
            "src/third_party/engflow-reclient-configs": {
                "fetcher": "fetchFromGitHub",
                "hash": "sha256-aZXYPj9KYBiZnljqOLlWJWS396Fg3EhjiQLZmkwCBsY=",
                "owner": "EngFlow",
                "repo": "reclient-configs",
                "rev": "955335c30a752e9ef7bff375baab5e0819b6c00d"
            },
            "src/third_party/expat/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-FXTDGAK03jc2wvazhRKqtsFRKZUYS/9HLpZNp4JfZJI=",
                "rev": "441f98d02deafd9b090aea568282b28f66a50e36",
                "url": "https://chromium.googlesource.com/external/github.com/libexpat/libexpat.git"
            },
            "src/third_party/farmhash/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-5n58VEUxa/K//jAfZqG4cXyfxrp50ogWDNYcgiXVHdc=",
                "rev": "816a4ae622e964763ca0862d9dbd19324a1eaf45",
                "url": "https://chromium.googlesource.com/external/github.com/google/farmhash.git"
            },
            "src/third_party/ffmpeg": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-NRyMXRxnHJi5JiEJUxOxJyPGe5BGTxNbNyEOu1GyO8E=",
                "rev": "17525de887d54b970ffdd421a0879c1db1952307",
                "url": "https://chromium.googlesource.com/chromium/third_party/ffmpeg.git"
            },
            "src/third_party/flac": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-gvTFPNOlBfozptaH7lTb9iD/09AmpdT3kCl9ClszjEs=",
                "rev": "689da3a7ed50af7448c3f1961d1791c7c1d9c85c",
                "url": "https://chromium.googlesource.com/chromium/deps/flac.git"
            },
            "src/third_party/flatbuffers/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-LecJwLDG6szZZ/UOCFD+MDqH3NKawn0sdEwgnMt8wMM=",
                "rev": "bcb9ef187628fe07514e57756d05e6a6296f7dc5",
                "url": "https://chromium.googlesource.com/external/github.com/google/flatbuffers.git"
            },
            "src/third_party/fontconfig/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-7PFmgr/+KNEYxCMuxMD2Zi9Ydcbp88IU7exr55a392Q=",
                "rev": "2fb3419a92156569bc1ec707401258c922cd0d99",
                "url": "https://chromium.googlesource.com/external/fontconfig.git"
            },
            "src/third_party/fp16/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-m2d9bqZoGWzuUPGkd29MsrdscnJRtuIkLIMp3fMmtRY=",
                "rev": "0a92994d729ff76a58f692d3028ca1b64b145d91",
                "url": "https://chromium.googlesource.com/external/github.com/Maratyszcza/FP16.git"
            },
            "src/third_party/freetype-testing/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-2aHPchIK5Oce5+XxdXVCC+8EM6i0XT0rFbjSIVa2L1A=",
                "rev": "7a69b1a2b028476f840ab7d4a2ffdfe4eb2c389f",
                "url": "https://chromium.googlesource.com/external/github.com/freetype/freetype2-testing.git"
            },
            "src/third_party/freetype/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-ogBt+haM+MoETsPIhwPDPZCLwQB9u9+w7OHL4us6kg8=",
                "rev": "57617782464411201ce7bbc93b086c1b4d7d84a5",
                "url": "https://chromium.googlesource.com/chromium/src/third_party/freetype2.git"
            },
            "src/third_party/fuzztest/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-YEg+/562AX/hK0Adx9bUZqATt+5VDZjn/csWVhRji2M=",
                "rev": "12e7428ab0847b1d1dc6c4b89203adfd1f16a1ad",
                "url": "https://chromium.googlesource.com/external/github.com/google/fuzztest.git"
            },
            "src/third_party/fxdiv/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-LjX5kivfHbqCIA5pF9qUvswG1gjOFo3CMpX0VR+Cn38=",
                "rev": "63058eff77e11aa15bf531df5dd34395ec3017c8",
                "url": "https://chromium.googlesource.com/external/github.com/Maratyszcza/FXdiv.git"
            },
            "src/third_party/gemmlowp/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-O5wD8wxgis0qYMaY+xZ21GBDVQFphMRvInCOswS6inA=",
                "rev": "13d57703abca3005d97b19df1f2db731607a7dc2",
                "url": "https://chromium.googlesource.com/external/github.com/google/gemmlowp.git"
            },
            "src/third_party/google_benchmark/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-h2ryAQAuHI54Cni88L85e7Np4KATGVTRdDcmUvCNeWc=",
                "rev": "b177433f3ee2513b1075140c723d73ab8901790f",
                "url": "https://chromium.googlesource.com/external/github.com/google/benchmark.git"
            },
            "src/third_party/googletest/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-VYRjcM3dDY2FarviXyFMgSkXCqKfWXwtGAj2Msgm7zg=",
                "rev": "af29db7ec28d6df1c7f0f745186884091e602e07",
                "url": "https://chromium.googlesource.com/external/github.com/google/googletest.git"
            },
            "src/third_party/grpc/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-64JEVCx/PCM0dvv7kAQvSjLc0QbRAZVBDzwD/FAV6T8=",
                "rev": "822dab21d9995c5cf942476b35ca12a1aa9d2737",
                "url": "https://chromium.googlesource.com/external/github.com/grpc/grpc.git"
            },
            "src/third_party/harfbuzz-ng/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-VAan6P8PHSq8RsGE4YbI/wCfFAhzl3nJMt0cQBYi5Ls=",
                "rev": "155015f4bec434ecc2f94621665844218f05ce51",
                "url": "https://chromium.googlesource.com/external/github.com/harfbuzz/harfbuzz.git"
            },
            "src/third_party/highway/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-kNb9UVcFq2BIf9nftUgN8ciFFCzRCou/sLwVf08jf3E=",
                "rev": "8f20644eca693cfb74aa795b0006b6779c370e7a",
                "url": "https://chromium.googlesource.com/external/github.com/google/highway.git"
            },
            "src/third_party/hunspell_dictionaries": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-67mvpJRFFa9eMfyqFMURlbxOaTJBICnk+gl0b0mEHl8=",
                "rev": "41cdffd71c9948f63c7ad36e1fb0ff519aa7a37e",
                "url": "https://chromium.googlesource.com/chromium/deps/hunspell_dictionaries.git"
            },
            "src/third_party/icu": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-YYoslfgGfmDpSTxtCOmGGfwQg6mVU1IggzAtWRwwcMc=",
                "rev": "bad7ddbf921358177e56fd723c2f59f8041a370f",
                "url": "https://chromium.googlesource.com/chromium/deps/icu.git"
            },
            "src/third_party/jsoncpp/source": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-bSLNcoYBz3QCt5VuTR056V9mU2PmBuYBa0W6hFg2m8Q=",
                "rev": "42e892d96e47b1f6e29844cc705e148ec4856448",
                "url": "https://chromium.googlesource.com/external/github.com/open-source-parsers/jsoncpp.git"
            },
            "src/third_party/leveldatabase/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-TTX2FrmcWsgqrh4uzqMyGnnnG51cVC2ILfdLxD65MLY=",
                "rev": "068d5ee1a3ac40dabd00d211d5013af44be55bea",
                "url": "https://chromium.googlesource.com/external/leveldb.git"
            },
            "src/third_party/libFuzzer/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-T0dO+1A0r6kLFoleMkY8heu80biPntCpvA6YfqA7b+E=",
                "rev": "758bd21f103a501b362b1ca46fa8fcb692eaa303",
                "url": "https://chromium.googlesource.com/external/github.com/llvm/llvm-project/compiler-rt/lib/fuzzer.git"
            },
            "src/third_party/libaddressinput/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-xvUUQSPrvqUp5DI9AqlRTWurwDW087c6v4RvI+4sfOQ=",
                "rev": "e8712e415627f22d0b00ebee8db99547077f39bd",
                "url": "https://chromium.googlesource.com/external/libaddressinput.git"
            },
            "src/third_party/libaom/source/libaom": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-f65sdsMAWCWpsdTgyTzx5fwM/2ESm/cBCvU41s2BEV0=",
                "rev": "1a72ea323d65e46eb90d08d492c04891abb91926",
                "url": "https://aomedia.googlesource.com/aom.git"
            },
            "src/third_party/libavif/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-rglws6GR11X8SdpYhK9CoxElWuPFYfp5b+vETjEoJOY=",
                "rev": "e170c9366090cdc389d5f47ee3c2d7db71d263bc",
                "url": "https://chromium.googlesource.com/external/github.com/AOMediaCodec/libavif.git"
            },
            "src/third_party/libavifinfo/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-UAc4iYWrKWteH98hD3QLkD3JWmV/rsvWhFIVJN7tc+Q=",
                "rev": "b496868f7c3fd17dfeeecc0364fe37e19edd548a",
                "url": "https://aomedia.googlesource.com/libavifinfo.git"
            },
            "src/third_party/libc++/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-/3VxptC6qAv9NCt8y1peJKTXTFI7blbvnpZ6D0VYyDk=",
                "rev": "28aa23ffb4c7344914a5b4ac7169f12e5a12333f",
                "url": "https://chromium.googlesource.com/external/github.com/llvm/llvm-project/libcxx.git"
            },
            "src/third_party/libc++abi/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-O337gqiB4uiTWUgIfPdEa1Du+/ww+xYpmmZW9Py7uyQ=",
                "rev": "9986707a5f2fc6d5d1ffa7f224a032bdd45c95fd",
                "url": "https://chromium.googlesource.com/external/github.com/llvm/llvm-project/libcxxabi.git"
            },
            "src/third_party/libdrm/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-NUxS2rBJ0nFblvHRQUfKT933+DAws5RUTDb+RLxRF4M=",
                "rev": "98e1db501173303e58ef6a1def94ab7a2d84afc1",
                "url": "https://chromium.googlesource.com/chromiumos/third_party/libdrm.git"
            },
            "src/third_party/libgav1/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-ySRgjJUYFXTw5kys9WDSuxnmfzj1I4ImvTWi+7q0HXE=",
                "rev": "35fea10bfdb790cf131ae74a4ee346905f34dc3c",
                "url": "https://chromium.googlesource.com/codecs/libgav1.git"
            },
            "src/third_party/libipp/libipp": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-gxU92lHLd6uxO8T3QWhZIK0hGy97cki705DV0VimCPY=",
                "rev": "2209bb84a8e122dab7c02fe66cc61a7b42873d7f",
                "url": "https://chromium.googlesource.com/chromiumos/platform2/libipp.git"
            },
            "src/third_party/libjpeg_turbo": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-+t75ZAdOXc7Nd1/8zEQLX+enZb8upqIQuR6qzb9z7Cg=",
                "rev": "9b894306ec3b28cea46e84c32b56773a98c483da",
                "url": "https://chromium.googlesource.com/chromium/deps/libjpeg_turbo.git"
            },
            "src/third_party/liblouis/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-EI/uaHXe0NlqdEw764q0SjerThYEVLRogUlmrsZwXnY=",
                "rev": "9700847afb92cb35969bdfcbbfbbb74b9c7b3376",
                "url": "https://chromium.googlesource.com/external/liblouis-github.git"
            },
            "src/third_party/libphonenumber/dist": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-3hSnTFTD3KAdbyxfKg12qbIYTmw6YlTCH64gMP/HUJo=",
                "rev": "140dfeb81b753388e8a672900fb7a971e9a0d362",
                "url": "https://chromium.googlesource.com/external/libphonenumber.git"
            },
            "src/third_party/libprotobuf-mutator/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-ZyPweW+V5foxFQwjjMLkaRUo+FNV+kEDGIH/4oRV614=",
                "rev": "a304ec48dcf15d942607032151f7e9ee504b5dcf",
                "url": "https://chromium.googlesource.com/external/github.com/google/libprotobuf-mutator.git"
            },
            "src/third_party/libsrtp": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-pfLFh2JGk/g0ZZxBKTaYW9/PBpkCm0rtJeyNePUMTTc=",
                "rev": "5b7c744eb8310250ccc534f3f86a2015b3887a0a",
                "url": "https://chromium.googlesource.com/chromium/deps/libsrtp.git"
            },
            "src/third_party/libsync/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-Mkl6C1LxF3RYLwYbxiSfoQPt8QKFwQWj/Ati2sNJ32E=",
                "rev": "f4f4387b6bf2387efbcfd1453af4892e8982faf6",
                "url": "https://chromium.googlesource.com/aosp/platform/system/core/libsync.git"
            },
            "src/third_party/libunwind/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-WPd6BlhNNF9n/qFU8atEh1fagbc05dWsFzBugw55boY=",
                "rev": "f400fdb561d4416b59b8f8a33d8ec8b79da60495",
                "url": "https://chromium.googlesource.com/external/github.com/llvm/llvm-project/libunwind.git"
            },
            "src/third_party/libvpx/source/libvpx": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-AUNWUicLMpEL/+r5c3JVjgZu9URBVsebayMs+ogNN6M=",
                "rev": "893c9f6d070cc3bd8503152480089673f57fdf76",
                "url": "https://chromium.googlesource.com/webm/libvpx.git"
            },
            "src/third_party/libwebm/source": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-u/5nkJed0DzdhR5OLL2kIhZhOnrbyzL1Kx37vV/jcEo=",
                "rev": "e4fbea0c9751ae8aa86629b197a28d8276a2b0da",
                "url": "https://chromium.googlesource.com/webm/libwebm.git"
            },
            "src/third_party/libwebp/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-Wa33opOFgcmYtycezDUt2f6PqZBse6xYB5kLuSaw95o=",
                "rev": "ca332209cb5567c9b249c86788cb2dbf8847e760",
                "url": "https://chromium.googlesource.com/webm/libwebp.git"
            },
            "src/third_party/libyuv": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-jxs9kHI40gRFhm9cU6uS1Rxj+LLUUqT9b3myihxgW7s=",
                "rev": "04821d1e7d60845525e8db55c7bcd41ef5be9406",
                "url": "https://chromium.googlesource.com/libyuv/libyuv.git"
            },
            "src/third_party/lss": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-hE8uZf9Fst66qJkoVYChiB8G41ie+k9M4X0W+5JUSdw=",
                "rev": "ce877209e11aa69dcfffbd53ef90ea1d07136521",
                "url": "https://chromium.googlesource.com/linux-syscall-support.git"
            },
            "src/third_party/material_color_utilities/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-sYLpJbgwR5POWqbUqu7IdWJ2Gibjz1PsMdSK+7yPDt4=",
                "rev": "bec7bab60e6431201a82761ea4482b98b54c2af9",
                "url": "https://chromium.googlesource.com/external/github.com/material-foundation/material-color-utilities.git"
            },
            "src/third_party/minigbm/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-9HwvjTETerbQ7YKXH9kUB2eWa8PxGWMAJfx1jAluhrs=",
                "rev": "3018207f4d89395cc271278fb9a6558b660885f5",
                "url": "https://chromium.googlesource.com/chromiumos/platform/minigbm.git"
            },
            "src/third_party/nan": {
                "fetcher": "fetchFromGitHub",
                "hash": "sha256-cwti+BWmF/l/dqa/cN0C587EK4WwRWcWy6gjFVkaMTg=",
                "owner": "nodejs",
                "repo": "nan",
                "rev": "e14bdcd1f72d62bca1d541b66da43130384ec213"
            },
            "src/third_party/nasm": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-SiRXHsUlWXtH6dbDjDjqNAm105ibEB3jOfNtQAM4CaY=",
                "rev": "f477acb1049f5e043904b87b825c5915084a9a29",
                "url": "https://chromium.googlesource.com/chromium/deps/nasm.git"
            },
            "src/third_party/nearby/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-XsQrfj0R88qf0C/LtRUsset/lnRpBkbpGUr/ZE3qmyk=",
                "rev": "4bdb5000ee7919724530cf89d50969e7b0ed58a7",
                "url": "https://chromium.googlesource.com/external/github.com/google/nearby-connections.git"
            },
            "src/third_party/neon_2_sse/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-299ZptvdTmCnIuVVBkrpf5ZTxKPwgcGUob81tEI91F0=",
                "rev": "a15b489e1222b2087007546b4912e21293ea86ff",
                "url": "https://chromium.googlesource.com/external/github.com/intel/ARM_NEON_2_x86_SSE.git"
            },
            "src/third_party/openh264/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-J7Eqe2QevZh1xfap19W8AVCcwfRu7ztknnbKFJUAH1c=",
                "rev": "09a4f3ec842a8932341b195c5b01e141c8a16eb7",
                "url": "https://chromium.googlesource.com/external/github.com/cisco/openh264"
            },
            "src/third_party/openscreen/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-habWfKhK66T537zJb/fm0IWpDbD2xgd9Upg97xRBy/M=",
                "rev": "b70c552bedf189fc238e98f8f69e6c30e7925207",
                "url": "https://chromium.googlesource.com/openscreen"
            },
            "src/third_party/openscreen/src/buildtools": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-o974IZvLUG2KlB1pQPYFwnoPGo239CV96pQPoQO7lvM=",
                "rev": "a9a6f0c49d0e8fa0cda37337430b4736ab3dc944",
                "url": "https://chromium.googlesource.com/chromium/src/buildtools"
            },
            "src/third_party/openscreen/src/third_party/tinycbor/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-fMKBFUSKmODQyg4hKIa1hwnEKIV6WBbY1Gb8DOSnaHA=",
                "rev": "d393c16f3eb30d0c47e6f9d92db62272f0ec4dc7",
                "url": "https://chromium.googlesource.com/external/github.com/intel/tinycbor.git"
            },
            "src/third_party/ots/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-kiUXrXsaGOzPkKh0dVmU1I13WHt0Stzj7QLMqHN9FbU=",
                "rev": "46bea9879127d0ff1c6601b078e2ce98e83fcd33",
                "url": "https://chromium.googlesource.com/external/github.com/khaledhosny/ots.git"
            },
            "src/third_party/pdfium": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-XJAQBQjM0JzyeNy5ZU1KpfxE1U6lQtTEhg21riHHJ0E=",
                "rev": "4c4f9ab25dab142d7888f3258ab54df24b97b44f",
                "url": "https://pdfium.googlesource.com/pdfium.git"
            },
            "src/third_party/perfetto": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-DLu7p6tDImRC7sk+PqIZvyjpOVIZl3I/8rYX498DVTk=",
                "rev": "1e15d01da5d619ca617dcdd870efe3c35046a89c",
                "url": "https://android.googlesource.com/platform/external/perfetto.git"
            },
            "src/third_party/pthreadpool/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-R4YmNzWEELSkAws/ejmNVxqXDTJwcqjLU/o/HvgRn2E=",
                "rev": "4fe0e1e183925bf8cfa6aae24237e724a96479b8",
                "url": "https://chromium.googlesource.com/external/github.com/Maratyszcza/pthreadpool.git"
            },
            "src/third_party/pyelftools": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-I/7p3IEvfP/gkes4kx18PvWwhAKilQKb67GXoW4zFB4=",
                "rev": "19b3e610c86fcadb837d252c794cb5e8008826ae",
                "url": "https://chromium.googlesource.com/chromiumos/third_party/pyelftools.git"
            },
            "src/third_party/pywebsocket3/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-WEqqu2/7fLqcf/2/IcD7/FewRSZ6jTgVlVBvnihthYQ=",
                "rev": "50602a14f1b6da17e0b619833a13addc6ea78bc2",
                "url": "https://chromium.googlesource.com/external/github.com/GoogleChromeLabs/pywebsocket3.git"
            },
            "src/third_party/quic_trace/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-Nf9ZDLcE1JunhbpEMHhrY2ROnbgrvVZoRkPwWq1DU0g=",
                "rev": "caa0a6eaba816ecb737f9a70782b7c80b8ac8dbc",
                "url": "https://chromium.googlesource.com/external/github.com/google/quic-trace.git"
            },
            "src/third_party/re2/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-3eAhiKUIMnpVCEuLWVCVOK3alVsxAJrEWtHBzvdjZkY=",
                "rev": "826ad10e58a042faf57d7c329b0fd0a04b797e0b",
                "url": "https://chromium.googlesource.com/external/github.com/google/re2.git"
            },
            "src/third_party/ruy/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-gvzxHQEAK6D9qIr/Wf/s6TfBp9QorHlNi4qzSx5Ih/c=",
                "rev": "cd7b92695b5d3f0c9ff65b865c2a1e19b99d766d",
                "url": "https://chromium.googlesource.com/external/github.com/google/ruy.git"
            },
            "src/third_party/securemessage/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-GS4ccnuiqxMs/LVYAtvSlVAYFp4a5GoZsxcriTX3k78=",
                "rev": "fa07beb12babc3b25e0c5b1f38c16aa8cb6b8f84",
                "url": "https://chromium.googlesource.com/external/github.com/google/securemessage.git"
            },
            "src/third_party/skia": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-iJlxnQL0JsDPOFSyD0ubEMWtDJhtbqCsBtaQqWZt8q0=",
                "rev": "8464f41cf051974e499be9caeab3243506e025c2",
                "url": "https://skia.googlesource.com/skia.git"
            },
            "src/third_party/smhasher/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-RyC//me08hwGXRrWcK8GZ1uhIkBq4FByA7fHCVDsniw=",
                "rev": "e87738e57558e0ec472b2fc3a643b838e5b6e88f",
                "url": "https://chromium.googlesource.com/external/smhasher.git"
            },
            "src/third_party/snappy/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-5fV6NfO8vmqK+iCwpLtE2YjYOzjsshctauyjNIOxrH0=",
                "rev": "c9f9edf6d75bb065fa47468bf035e051a57bec7c",
                "url": "https://chromium.googlesource.com/external/github.com/google/snappy.git"
            },
            "src/third_party/speedometer/v3.0": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-FDsK5sNy3YOrmaGpN3AhSExzBY9D8RGwoZKkjg/5vo0=",
                "rev": "2ee210ca20767c949c4ff29bdffa1138eb0501fe",
                "url": "https://chromium.googlesource.com/external/github.com/WebKit/Speedometer.git"
            },
            "src/third_party/sqlite/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-brDFYmagGIH7fvRAP/JaCAMyuFLJKrc0jf0106gofiw=",
                "rev": "a5270ae741714a5aad187ba8dcd8bddca39f791f",
                "url": "https://chromium.googlesource.com/chromium/deps/sqlite.git"
            },
            "src/third_party/squirrel.mac": {
                "fetcher": "fetchFromGitHub",
                "hash": "sha256-4GfKQg0u3c9GI+jl3ixESNqWXQJKRMi+00QT0s2Shqw=",
                "owner": "Squirrel",
                "repo": "Squirrel.Mac",
                "rev": "0e5d146ba13101a1302d59ea6e6e0b3cace4ae38"
            },
            "src/third_party/squirrel.mac/vendor/Mantle": {
                "fetcher": "fetchFromGitHub",
                "hash": "sha256-ogFkMJybf2Ue606ojXJu6Gy5aXSi1bSKm60qcTAIaPk=",
                "owner": "Mantle",
                "repo": "Mantle",
                "rev": "78d3966b3c331292ea29ec38661b25df0a245948"
            },
            "src/third_party/squirrel.mac/vendor/ReactiveObjC": {
                "fetcher": "fetchFromGitHub",
                "hash": "sha256-/MCqC1oFe3N9TsmfVLgl+deR6qHU6ZFQQjudb9zB5Mo=",
                "owner": "ReactiveCocoa",
                "repo": "ReactiveObjC",
                "rev": "74ab5baccc6f7202c8ac69a8d1e152c29dc1ea76"
            },
            "src/third_party/swiftshader": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-k0WzWDa/+48ogpbmECNDJKIED4wGu/Hm0DyGnCT9xoU=",
                "rev": "2fa7e9b99ae4e70ea5ae2cc9c8d3afb43391384f",
                "url": "https://swiftshader.googlesource.com/SwiftShader.git"
            },
            "src/third_party/text-fragments-polyfill/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-4rW2u1cQAF4iPWHAt1FvVXIpz2pmI901rEPks/w/iFA=",
                "rev": "c036420683f672d685e27415de0a5f5e85bdc23f",
                "url": "https://chromium.googlesource.com/external/github.com/GoogleChromeLabs/text-fragments-polyfill.git"
            },
            "src/third_party/tflite/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-LOQH+qtltrahcPIutw/zYvEhmvbSjFBWT1mrg/pUD/0=",
                "rev": "296f1e3cce03308c7fd5cdc7a76fbc3e41ec5214",
                "url": "https://chromium.googlesource.com/external/github.com/tensorflow/tensorflow.git"
            },
            "src/third_party/ukey2/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-aaLs6ZS+CdBlCJ6ZhsmdAPFxiBIij6oufsDcNeRSV1E=",
                "rev": "0275885d8e6038c39b8a8ca55e75d1d4d1727f47",
                "url": "https://chromium.googlesource.com/external/github.com/google/ukey2.git"
            },
            "src/third_party/vulkan-deps": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-bxg82G3dkugLXpTkfk/kNcKHKWn2i8+cCKPgfbaIVZ8=",
                "rev": "c00c99b8e979ca1b1eba221a60cb1e1d3b12f956",
                "url": "https://chromium.googlesource.com/vulkan-deps"
            },
            "src/third_party/vulkan-deps/glslang/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-QKSPJuIJe44vVNZ8fjqRKc73CZV0fECcnXvY6QRec+0=",
                "rev": "57d86ab763da7b2cd1e00ecec8aa697403a8fd20",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/glslang"
            },
            "src/third_party/vulkan-deps/spirv-cross/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-VxwAs6mNOK/46VIJ0BroR41cNy2ywU+FQCgBatY1sBY=",
                "rev": "b82536766d1b81631b126d1ddbe49baf42929bd3",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/SPIRV-Cross"
            },
            "src/third_party/vulkan-deps/spirv-headers/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-TVfaGY9YjVHvR38OvuphsS68UIpBF21ghBg/2LL3gmE=",
                "rev": "7b0309708da5126b89e4ce6f19835f36dc912f2f",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/SPIRV-Headers"
            },
            "src/third_party/vulkan-deps/spirv-tools/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-yUaUBCj3MqBwkGNC8ElJ/uvcm0Pl5BAdiWAw/Pi52Xo=",
                "rev": "c96fe8b943564fbab3424219d924d21cac2e877a",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/SPIRV-Tools"
            },
            "src/third_party/vulkan-deps/vulkan-headers/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-kBOkj7mr4stPXUCBhNJpNL3A+9BebEwrIBEIroxdH8Y=",
                "rev": "217e93c664ec6704ec2d8c36fa116c1a4a1e2d40",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-Headers"
            },
            "src/third_party/vulkan-deps/vulkan-loader/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-qvpwu4mmmLAFolLZt5q9XYgZff6BHO2Yapg93JUpBVA=",
                "rev": "0b2b71306aebf1e11304b9f961f9a29ab0234756",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-Loader"
            },
            "src/third_party/vulkan-deps/vulkan-tools/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-C4xJwYkMqzmYk6lP7SQNXhCt6FyuH4+pqOHltuxJkOA=",
                "rev": "7c6d640a5ca3ab73c1f42d22312f672b54babfaf",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-Tools"
            },
            "src/third_party/vulkan-deps/vulkan-utility-libraries/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-gvia+Xb9BpOjPARKo3Sgp85Bfh1roFZ2PzCtXVFYeIU=",
                "rev": "4cfc176e3242b4dbdfd3f6c5680c5d8f2cb7db45",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-Utility-Libraries"
            },
            "src/third_party/vulkan-deps/vulkan-validation-layers/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-6YUjvPKjuuZdhBRfM+84btXvAHR2rj7ovocZnLS31JY=",
                "rev": "d26b50b03815ff226e6df478b4ddc4b98d8deaee",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-ValidationLayers"
            },
            "src/third_party/vulkan_memory_allocator": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-YzxHZagz/M8Y54UnI4h1wu5jSTuaOgv0ifC9d3fJZlQ=",
                "rev": "56300b29fbfcc693ee6609ddad3fdd5b7a449a21",
                "url": "https://chromium.googlesource.com/external/github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator.git"
            },
            "src/third_party/wayland-protocols/gtk": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-75XNnLkF5Lt1LMRGT+T61k0/mLa3kkynfN+QWvZ0LiQ=",
                "rev": "40ebed3a03aef096addc0af09fec4ec529d882a0",
                "url": "https://chromium.googlesource.com/external/github.com/GNOME/gtk.git"
            },
            "src/third_party/wayland-protocols/kde": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-Dmcp/2ms/k7NxPPmPkp0YNfM9z2Es1ZO0uX10bc7N2Y=",
                "rev": "0b07950714b3a36c9b9f71fc025fc7783e82926e",
                "url": "https://chromium.googlesource.com/external/github.com/KDE/plasma-wayland-protocols.git"
            },
            "src/third_party/wayland-protocols/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-ljMcY59iOdGYeToadCuQ3t0lrBnsBdot+NiT6e+JJ04=",
                "rev": "681c33c8547d6aefe24455ba2bffe1c5ae11fee5",
                "url": "https://chromium.googlesource.com/external/anongit.freedesktop.org/git/wayland/wayland-protocols.git"
            },
            "src/third_party/wayland/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-By+3qSfYs4dM4Hcjq2j4ZlSSPhagwqtNl//HKMrc5LY=",
                "rev": "af7f44122127b86a8c74cb7432909180f4899eaa",
                "url": "https://chromium.googlesource.com/external/anongit.freedesktop.org/git/wayland/wayland.git"
            },
            "src/third_party/webdriver/pylib": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-WIqWXIKVgElgg8P8laLAlUrgwodGdeVcwohZxnPKedw=",
                "rev": "fc5e7e70c098bfb189a9a74746809ad3c5c34e04",
                "url": "https://chromium.googlesource.com/external/github.com/SeleniumHQ/selenium/py.git"
            },
            "src/third_party/webgl/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-dubsIPZKBGOzANGvMtQxFKFIHr0laDUGpzgRyEOjHMU=",
                "rev": "f4bf599a8b575df685c31d9c4729a70a04e377ed",
                "url": "https://chromium.googlesource.com/external/khronosgroup/webgl.git"
            },
            "src/third_party/webgpu-cts/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-RC2t+H44HyIvHLRcZyebSgVZvbmtw0vsy2KJRUlvTKs=",
                "rev": "e082b08475761a2ba6a3349dfea72f704c8b68d4",
                "url": "https://chromium.googlesource.com/external/github.com/gpuweb/cts.git"
            },
            "src/third_party/webrtc": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-KipyGhohU2fQF67dDm4tPeH9xbFC2FNxhU4yiga5pwg=",
                "rev": "6b419a0536b1a0ccfff3682f997c6f19bcbd9bd8",
                "url": "https://webrtc.googlesource.com/src.git"
            },
            "src/third_party/weston/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-y2srFaPUOoB2umzpo4+hFfhNlqXM2AoMGOpUy/ZSacg=",
                "rev": "ccf29cb237c3ed09c5f370f35239c93d07abfdd7",
                "url": "https://chromium.googlesource.com/external/anongit.freedesktop.org/git/wayland/weston.git"
            },
            "src/third_party/wuffs/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-373d2F/STcgCHEq+PO+SCHrKVOo6uO1rqqwRN5eeBCw=",
                "rev": "e3f919ccfe3ef542cfc983a82146070258fb57f8",
                "url": "https://skia.googlesource.com/external/github.com/google/wuffs-mirror-release-c.git"
            },
            "src/third_party/xdg-utils": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-WuQ9uDq+QD17Y20ACFGres4nbkeOiTE2y+tY1avAT5U=",
                "rev": "cb54d9db2e535ee4ef13cc91b65a1e2741a94a44",
                "url": "https://chromium.googlesource.com/chromium/deps/xdg-utils.git"
            },
            "src/third_party/xnnpack/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-JE3qg3lTpKTLgnpiNw6+wkhVXGx55MiyVDuvEp7Dk0Y=",
                "rev": "a68aa0a24b0d3e1c75f2f7c0915b70121cee0470",
                "url": "https://chromium.googlesource.com/external/github.com/google/XNNPACK.git"
            },
            "src/third_party/zstd/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-9FxRLrcbJoWAd+3Elr9mJ3vG6ilT6ZQZqdY9OiTpcWw=",
                "rev": "050fec5c378d676fede8b2171ec5e84f6afa1504",
                "url": "https://chromium.googlesource.com/external/github.com/facebook/zstd.git"
            },
            "src/tools/page_cycler/acid3": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-s/49EaYQRsyxuLejXc1zGDYTD7uO0ddaQIJBP50Bvw0=",
                "rev": "a926d0a32e02c4c03ae95bb798e6c780e0e184ba",
                "url": "https://chromium.googlesource.com/chromium/deps/acid3.git"
            },
            "src/v8": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-qDQ1rt/9nfv9L6RJLZDb1KTn9+Z70XDjkTs6gOt3u/Y=",
                "rev": "ddb4756a90fb7d89dc789859f8b2a3639d8de125",
                "url": "https://chromium.googlesource.com/v8/v8.git"
            }
        },
        "electron_yarn_hash": "0f868gk3d2cablpczav8a4vhk4nfirph45yzjz18mgzgday7w8hf",
        "modules": "121",
        "node": "20.9.0",
        "version": "29.3.3"
    },
    "30": {
        "chrome": "124.0.6367.119",
        "chromium": {
            "deps": {
                "gn": {
                    "hash": "sha256-aEL1kIhgPAFqdb174dG093HoLhCJ07O1Kpqfu7r14wQ=",
                    "rev": "22581fb46c0c0c9530caa67149ee4dd8811063cf",
                    "url": "https://gn.googlesource.com/gn",
                    "version": "2024-03-14"
                }
            },
            "version": "124.0.6367.119"
        },
        "chromium_npm_hash": "sha256-oILlQlzTcc0YqAvK5htRvG/YXWJTDtJ60Z1EcBEj9dw=",
        "deps": {
            "src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-mhH2pQskQw39PUCociK/g7QLjI/cDh2GXk9PJIeJ7HU=",
                "postFetch": "rm -r $out/third_party/blink/web_tests; rm -r $out/third_party/hunspell/tests; rm -r $out/content/test/data; rm -r $out/courgette/testdata; rm -r $out/extensions/test/data; rm -r $out/media/test/data; ",
                "rev": "124.0.6367.119",
                "url": "https://chromium.googlesource.com/chromium/src.git"
            },
            "src/chrome/test/data/perf/canvas_bench": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-svOuyBGKloBLM11xLlWCDsB4PpRjdKTBdW2UEW4JQjM=",
                "rev": "a7b40ea5ae0239517d78845a5fc9b12976bfc732",
                "url": "https://chromium.googlesource.com/chromium/canvas_bench.git"
            },
            "src/chrome/test/data/perf/frame_rate/content": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-t4kcuvH0rkPBkcdiMsoNQaRwU09eU+oSvyHDiAHrKXo=",
                "rev": "c10272c88463efeef6bb19c9ec07c42bc8fe22b9",
                "url": "https://chromium.googlesource.com/chromium/frame_rate/content.git"
            },
            "src/chrome/test/data/xr/webvr_info": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-BsAPwc4oEWri0TlqhyxqFNqKdfgVSrB0vQyISmYY4eg=",
                "rev": "c58ae99b9ff9e2aa4c524633519570bf33536248",
                "url": "https://chromium.googlesource.com/external/github.com/toji/webvr.info.git"
            },
            "src/docs/website": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-2WyiSqza9Mp2G8KHUnrzfikC7hGcUTLu4/W9AD6Zdi4=",
                "rev": "02057aa20e0dd4598967e3daf2f25c815962ef1c",
                "url": "https://chromium.googlesource.com/website.git"
            },
            "src/electron": {
                "fetcher": "fetchFromGitHub",
                "hash": "sha256-tW9LODdKT8W6UYmpqh1bwGTk5wQYJ3TSxSvxfAqc4uQ=",
                "owner": "electron",
                "repo": "electron",
                "rev": "v30.0.3"
            },
            "src/media/cdm/api": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-6J6aSYW0or99VAgMNJJOdJqMJspoG7w1HxDN50MV5bw=",
                "rev": "fef0b5aa1bd31efb88dfab804bdbe614f3d54f28",
                "url": "https://chromium.googlesource.com/chromium/cdm.git"
            },
            "src/net/third_party/quiche/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-BJ3CCKFHOcIgIqnYxfjfOqbRhnt9ycrZfAFRZOLPYZQ=",
                "rev": "9f8738892edd83219d2f83fdd73c7c14d5dbb80d",
                "url": "https://quiche.googlesource.com/quiche.git"
            },
            "src/third_party/accessibility_test_framework/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-mzVgoxxBWebesG6okyMxxmO6oH+TITA4o9ucHHMMzkQ=",
                "rev": "4a764c690353ea136c82f1a696a70bf38d1ef5fe",
                "url": "https://chromium.googlesource.com/external/github.com/google/Accessibility-Test-Framework-for-Android.git"
            },
            "src/third_party/angle": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-O89W5dE97eUKpOnSuoBbl2BCigsDYK609Hq9pqd25CQ=",
                "rev": "0b776d32f69a932acb61963d9daad9e13f610944",
                "url": "https://chromium.googlesource.com/angle/angle.git"
            },
            "src/third_party/angle/third_party/VK-GL-CTS/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-eQvZmm6aAsI+z++SMM9i/SsREjikIjMLpedzw57eKyA=",
                "rev": "ec9827528085fcffca353c8d941ec20e3de7aaea",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/VK-GL-CTS"
            },
            "src/third_party/angle/third_party/glmark2/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-L7+zWM0qn8WFhmON7DGvarTsN1YHt1sn5+hazTOZrrk=",
                "rev": "ca8de51fedb70bace5351c6b002eb952c747e889",
                "url": "https://chromium.googlesource.com/external/github.com/glmark2/glmark2"
            },
            "src/third_party/angle/third_party/rapidjson/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-btUl1a/B0sXwf/+hyvCvVJjWqIkXfVYCpHm3TeBuOxk=",
                "rev": "781a4e667d84aeedbeb8184b7b62425ea66ec59f",
                "url": "https://chromium.googlesource.com/external/github.com/Tencent/rapidjson"
            },
            "src/third_party/anonymous_tokens/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-ZKvfil6V4PexxVl/UCW/mUINlCHBTrZnhTB0UhTW0PQ=",
                "rev": "321a40ba18a083feccb8ae2f99a8676bb1702676",
                "url": "https://chromium.googlesource.com/external/github.com/google/anonymous-tokens.git"
            },
            "src/third_party/beto-core/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-7GkqH4hgTVmISjUy/Km/X28tBSsiMs3JRnDmol1zaag=",
                "rev": "8bd72cfb219344308ee857bcbe65a27fe91acfe8",
                "url": "https://beto-core.googlesource.com/beto-core.git"
            },
            "src/third_party/boringssl/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-RiDdH26xzoAD2NdTNKDraco9p2jKHXJxbRWI3pUhI78=",
                "rev": "4fa4804c8ab4521079af62dba5260a99c34b8a29",
                "url": "https://boringssl.googlesource.com/boringssl.git"
            },
            "src/third_party/breakpad/breakpad": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-qAIXZ1jZous0Un0jVkOQ66nA2525NziV3Lbso2/+Z1Y=",
                "rev": "76788faa4ef163081f82273bfca7fae8a734b971",
                "url": "https://chromium.googlesource.com/breakpad/breakpad.git"
            },
            "src/third_party/cast_core/public/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-AalRQhJmornCqmvE2+36J/3LubaA0jr6P1PXy32lX4I=",
                "rev": "71f51fd6fa45fac73848f65421081edd723297cd",
                "url": "https://chromium.googlesource.com/cast_core/public"
            },
            "src/third_party/catapult": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-HhpP5OeGF9in2XEoZMfMCIAFHAqlDvJpfSWa8JfGWzM=",
                "rev": "9128ec6d34905512199f953bc60ff75ca29d0cf2",
                "url": "https://chromium.googlesource.com/catapult.git"
            },
            "src/third_party/ced/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-ySG74Rj2i2c/PltEgHVEDq+N8yd9gZmxNktc56zIUiY=",
                "rev": "ba412eaaacd3186085babcd901679a48863c7dd5",
                "url": "https://chromium.googlesource.com/external/github.com/google/compact_enc_det.git"
            },
            "src/third_party/chromium-variations": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-YwnqJynhunMvIduUcJ1/nBLabe/WS4RDox+XLMYMA2c=",
                "rev": "e78e275e34f94fdf333245137878f0f6482db67d",
                "url": "https://chromium.googlesource.com/chromium-variations.git"
            },
            "src/third_party/clang-format/script": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-7VvofDDQe+SoMRBfVk26q+C+OPyOE7QH35wVWkfDKxs=",
                "rev": "e5337933f2951cacd3aeacd238ce4578163ca0b9",
                "url": "https://chromium.googlesource.com/external/github.com/llvm/llvm-project/clang/tools/clang-format.git"
            },
            "src/third_party/cld_3/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-C3MOMBUy9jgkT9BAi/Fgm2UH4cxRuwSBEcRl3hzM2Ss=",
                "rev": "b48dc46512566f5a2d41118c8c1116c4f96dc661",
                "url": "https://chromium.googlesource.com/external/github.com/google/cld_3.git"
            },
            "src/third_party/colorama/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-6ZTdPYSHdQOLYMSnE+Tp7PgsVTs3U2awGu9Qb4Rg/tk=",
                "rev": "3de9f013df4b470069d03d250224062e8cf15c49",
                "url": "https://chromium.googlesource.com/external/colorama.git"
            },
            "src/third_party/content_analysis_sdk/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-f5Jmk1MiGjaRdLun+v/GKVl8Yv9hOZMTQUSxgiJalcY=",
                "rev": "9a408736204513e0e95dd2ab3c08de0d95963efc",
                "url": "https://chromium.googlesource.com/external/github.com/chromium/content_analysis_sdk.git"
            },
            "src/third_party/cpu_features/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-E8LoVzhe+TAmARWZTSuINlsVhzpUJMxPPCGe/dHZcyA=",
                "rev": "936b9ab5515dead115606559502e3864958f7f6e",
                "url": "https://chromium.googlesource.com/external/github.com/google/cpu_features.git"
            },
            "src/third_party/cpuinfo/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-9QRj4OA1qWlZujVJ6Z9x3190taVjTCZocM/272eepIs=",
                "rev": "aa4b2163b99ac9534194520f70b93eeefb0b3b4e",
                "url": "https://chromium.googlesource.com/external/github.com/pytorch/cpuinfo.git"
            },
            "src/third_party/crc32c/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-urg0bmnfMfHagLPELp4WrNCz1gBZ6DFOWpDue1KsMtc=",
                "rev": "fa5ade41ee480003d9c5af6f43567ba22e4e17e6",
                "url": "https://chromium.googlesource.com/external/github.com/google/crc32c.git"
            },
            "src/third_party/cros-components/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-w2VosAdg+GtalFaGxDB8FB2w7498PMudsXxX4SpJqYE=",
                "rev": "a254b37189cf97cfc76634644e58be511aefb69a",
                "url": "https://chromium.googlesource.com/external/google3/cros_components.git"
            },
            "src/third_party/cros_system_api": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-dFp4Hy7fldUjXxUTtcyRXdt7zpIP2lchzDKkk0b+iko=",
                "rev": "9a51dc89c4f21362e858b20a6a7cc8adfd7c7238",
                "url": "https://chromium.googlesource.com/chromiumos/platform2/system_api.git"
            },
            "src/third_party/crossbench": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-4gQn5y/Z6ccYA/0VjIQfMpFMkEuPA78jyCgZ+FpmsFs=",
                "rev": "acbea986f40578f43c88239c78c797f61842e642",
                "url": "https://chromium.googlesource.com/crossbench.git"
            },
            "src/third_party/dav1d/libdav1d": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-AA2bcrsW1xFspyl5TqYUJeAwKM06rWTNtXr/uMVIJmw=",
                "rev": "006ca01d387ac6652825d6cce1a57b2de67dbf8d",
                "url": "https://chromium.googlesource.com/external/github.com/videolan/dav1d.git"
            },
            "src/third_party/dawn": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-GUB25IUviLFxGI3UQJS/kf51BZBeoYFqbiaSTSY11qA=",
                "rev": "394edde38c9323f7c910e3bdec9b7efc4ee39379",
                "url": "https://dawn.googlesource.com/dawn.git"
            },
            "src/third_party/dawn/third_party/dxc": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-wsQtYqH8gFsDmLTUA7SKvTYiGQWX7Vbcz1QtsAg/epY=",
                "rev": "bd7aa97798735e1288d36de41dcda75e867550e4",
                "url": "https://chromium.googlesource.com/external/github.com/microsoft/DirectXShaderCompiler"
            },
            "src/third_party/dawn/third_party/dxheaders": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-0Miw1Cy/jmOo7bLFBOHuTRDV04cSeyvUEyPkpVsX9DA=",
                "rev": "980971e835876dc0cde415e8f9bc646e64667bf7",
                "url": "https://chromium.googlesource.com/external/github.com/microsoft/DirectX-Headers"
            },
            "src/third_party/dawn/third_party/glfw": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-TwAPRjQxIz3J+zbNxzCp5Tek7MwisxdekMpY5QGsKyg=",
                "rev": "62e175ef9fae75335575964c845a302447c012c7",
                "url": "https://chromium.googlesource.com/external/github.com/glfw/glfw"
            },
            "src/third_party/dawn/third_party/khronos/EGL-Registry": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-Z6DwLfgQ1wsJXz0KKJyVieOatnDmx3cs0qJ6IEgSq1A=",
                "rev": "7dea2ed79187cd13f76183c4b9100159b9e3e071",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/EGL-Registry"
            },
            "src/third_party/dawn/third_party/khronos/OpenGL-Registry": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-K3PcRIiD3AmnbiSm5TwaLs4Gu9hxaN8Y91WMKK8pOXE=",
                "rev": "5bae8738b23d06968e7c3a41308568120943ae77",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/OpenGL-Registry"
            },
            "src/third_party/dawn/third_party/webgpu-cts": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-VTYTdvBNxqRzYjEx5ml4LnkDEUGpyvssSzDOndHyYgU=",
                "rev": "3e45aee0b16dc724a79a0feb0490e2ddb06c9f0d",
                "url": "https://chromium.googlesource.com/external/github.com/gpuweb/cts"
            },
            "src/third_party/depot_tools": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-YmjhwOjqCRxDhC7P+aRoNN+Vokl7hB4s6hDNFS5gLYo=",
                "rev": "9c43bc14f1a7404fd4b6f744050d553acca557bf",
                "url": "https://chromium.googlesource.com/chromium/tools/depot_tools.git"
            },
            "src/third_party/devtools-frontend/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-FVYUoK3KWlIjQTWlNkjmnzJDfpRkEZ9sFWTr4GdOUJw=",
                "rev": "694ad4ed3c55195acd701950d2b2528880e9201e",
                "url": "https://chromium.googlesource.com/devtools/devtools-frontend"
            },
            "src/third_party/dom_distiller_js/dist": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-yuEBD2XQlV3FGI/i7lTmJbCqzeBiuG1Qow8wvsppGJw=",
                "rev": "199de96b345ada7c6e7e6ba3d2fa7a6911b8767d",
                "url": "https://chromium.googlesource.com/chromium/dom-distiller/dist.git"
            },
            "src/third_party/eigen3/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-tx/XR7xJ7IMh5RMvL8wRo/g+dfD3xcjZkLPSY4D9HaY=",
                "rev": "2a9055b50ed22101da7d77e999b90ed50956fe0b",
                "url": "https://chromium.googlesource.com/external/gitlab.com/libeigen/eigen.git"
            },
            "src/third_party/electron_node": {
                "fetcher": "fetchFromGitHub",
                "hash": "sha256-9/TPxYbnQPDpWf/Zti8bTh22e/uFRlzs7SCThfx/byQ=",
                "owner": "nodejs",
                "repo": "node",
                "rev": "v20.11.1"
            },
            "src/third_party/emoji-segmenter/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-oT9mAKoKnrsFsBAeTRfPOXM76HRQQabFAlPpfKUGFhs=",
                "rev": "9ba6d25d0d9313569665d4a9d2b34f0f39f9a50e",
                "url": "https://chromium.googlesource.com/external/github.com/google/emoji-segmenter.git"
            },
            "src/third_party/engflow-reclient-configs": {
                "fetcher": "fetchFromGitHub",
                "hash": "sha256-aZXYPj9KYBiZnljqOLlWJWS396Fg3EhjiQLZmkwCBsY=",
                "owner": "EngFlow",
                "repo": "reclient-configs",
                "rev": "955335c30a752e9ef7bff375baab5e0819b6c00d"
            },
            "src/third_party/expat/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-FXTDGAK03jc2wvazhRKqtsFRKZUYS/9HLpZNp4JfZJI=",
                "rev": "441f98d02deafd9b090aea568282b28f66a50e36",
                "url": "https://chromium.googlesource.com/external/github.com/libexpat/libexpat.git"
            },
            "src/third_party/farmhash/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-5n58VEUxa/K//jAfZqG4cXyfxrp50ogWDNYcgiXVHdc=",
                "rev": "816a4ae622e964763ca0862d9dbd19324a1eaf45",
                "url": "https://chromium.googlesource.com/external/github.com/google/farmhash.git"
            },
            "src/third_party/ffmpeg": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-5ynDd2wQ3QtS6SM2X+j3hTKB9aVhGrjoIlGSzy43K8Q=",
                "rev": "52d8ef3799b2f16b66351dd0972bb0bcee1648ac",
                "url": "https://chromium.googlesource.com/chromium/third_party/ffmpeg.git"
            },
            "src/third_party/flac": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-gvTFPNOlBfozptaH7lTb9iD/09AmpdT3kCl9ClszjEs=",
                "rev": "689da3a7ed50af7448c3f1961d1791c7c1d9c85c",
                "url": "https://chromium.googlesource.com/chromium/deps/flac.git"
            },
            "src/third_party/flatbuffers/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-LecJwLDG6szZZ/UOCFD+MDqH3NKawn0sdEwgnMt8wMM=",
                "rev": "bcb9ef187628fe07514e57756d05e6a6296f7dc5",
                "url": "https://chromium.googlesource.com/external/github.com/google/flatbuffers.git"
            },
            "src/third_party/fontconfig/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-W5WIgC6A52kY4fNkbsDEa0o+dfd97Rl5NKfgnIRpI00=",
                "rev": "14d466b30a8ab4a9d789977ed94f2c30e7209267",
                "url": "https://chromium.googlesource.com/external/fontconfig.git"
            },
            "src/third_party/fp16/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-m2d9bqZoGWzuUPGkd29MsrdscnJRtuIkLIMp3fMmtRY=",
                "rev": "0a92994d729ff76a58f692d3028ca1b64b145d91",
                "url": "https://chromium.googlesource.com/external/github.com/Maratyszcza/FP16.git"
            },
            "src/third_party/freetype-testing/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-2aHPchIK5Oce5+XxdXVCC+8EM6i0XT0rFbjSIVa2L1A=",
                "rev": "7a69b1a2b028476f840ab7d4a2ffdfe4eb2c389f",
                "url": "https://chromium.googlesource.com/external/github.com/freetype/freetype2-testing.git"
            },
            "src/third_party/freetype/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-FtFRJaxyp7vo4EPBiqx05OsKo1UA1g/h+9BjuoijLFA=",
                "rev": "f42ce25563b73fed0123d18a2556b9ba01d2c76b",
                "url": "https://chromium.googlesource.com/chromium/src/third_party/freetype2.git"
            },
            "src/third_party/fuzztest/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-utl9uwFqMqDW9ll9/3lh3rfjmPHlv5sx/enQuPffQZ8=",
                "rev": "bddcd9f77ba0a81a99ce50bcadf5149efe545df0",
                "url": "https://chromium.googlesource.com/external/github.com/google/fuzztest.git"
            },
            "src/third_party/fxdiv/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-LjX5kivfHbqCIA5pF9qUvswG1gjOFo3CMpX0VR+Cn38=",
                "rev": "63058eff77e11aa15bf531df5dd34395ec3017c8",
                "url": "https://chromium.googlesource.com/external/github.com/Maratyszcza/FXdiv.git"
            },
            "src/third_party/gemmlowp/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-O5wD8wxgis0qYMaY+xZ21GBDVQFphMRvInCOswS6inA=",
                "rev": "13d57703abca3005d97b19df1f2db731607a7dc2",
                "url": "https://chromium.googlesource.com/external/github.com/google/gemmlowp.git"
            },
            "src/third_party/google_benchmark/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-gztnxui9Fe/FTieMjdvfJjWHjkImtlsHn6fM1FruyME=",
                "rev": "344117638c8ff7e239044fd0fa7085839fc03021",
                "url": "https://chromium.googlesource.com/external/github.com/google/benchmark.git"
            },
            "src/third_party/googletest/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-mNYS3k2fAc7Q6GlpnO7pkXSkGHfUH1MXuZXkCmwG4q4=",
                "rev": "c231e6f5b152029dbd5fa4a9e0c04095035aec3f",
                "url": "https://chromium.googlesource.com/external/github.com/google/googletest.git"
            },
            "src/third_party/grpc/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-64JEVCx/PCM0dvv7kAQvSjLc0QbRAZVBDzwD/FAV6T8=",
                "rev": "822dab21d9995c5cf942476b35ca12a1aa9d2737",
                "url": "https://chromium.googlesource.com/external/github.com/grpc/grpc.git"
            },
            "src/third_party/harfbuzz-ng/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-VAan6P8PHSq8RsGE4YbI/wCfFAhzl3nJMt0cQBYi5Ls=",
                "rev": "155015f4bec434ecc2f94621665844218f05ce51",
                "url": "https://chromium.googlesource.com/external/github.com/harfbuzz/harfbuzz.git"
            },
            "src/third_party/highway/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-kNb9UVcFq2BIf9nftUgN8ciFFCzRCou/sLwVf08jf3E=",
                "rev": "8f20644eca693cfb74aa795b0006b6779c370e7a",
                "url": "https://chromium.googlesource.com/external/github.com/google/highway.git"
            },
            "src/third_party/hunspell_dictionaries": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-67mvpJRFFa9eMfyqFMURlbxOaTJBICnk+gl0b0mEHl8=",
                "rev": "41cdffd71c9948f63c7ad36e1fb0ff519aa7a37e",
                "url": "https://chromium.googlesource.com/chromium/deps/hunspell_dictionaries.git"
            },
            "src/third_party/icu": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-YYoslfgGfmDpSTxtCOmGGfwQg6mVU1IggzAtWRwwcMc=",
                "rev": "bad7ddbf921358177e56fd723c2f59f8041a370f",
                "url": "https://chromium.googlesource.com/chromium/deps/icu.git"
            },
            "src/third_party/jsoncpp/source": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-bSLNcoYBz3QCt5VuTR056V9mU2PmBuYBa0W6hFg2m8Q=",
                "rev": "42e892d96e47b1f6e29844cc705e148ec4856448",
                "url": "https://chromium.googlesource.com/external/github.com/open-source-parsers/jsoncpp.git"
            },
            "src/third_party/leveldatabase/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-TTX2FrmcWsgqrh4uzqMyGnnnG51cVC2ILfdLxD65MLY=",
                "rev": "068d5ee1a3ac40dabd00d211d5013af44be55bea",
                "url": "https://chromium.googlesource.com/external/leveldb.git"
            },
            "src/third_party/libFuzzer/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-T0dO+1A0r6kLFoleMkY8heu80biPntCpvA6YfqA7b+E=",
                "rev": "758bd21f103a501b362b1ca46fa8fcb692eaa303",
                "url": "https://chromium.googlesource.com/external/github.com/llvm/llvm-project/compiler-rt/lib/fuzzer.git"
            },
            "src/third_party/libaddressinput/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-xvUUQSPrvqUp5DI9AqlRTWurwDW087c6v4RvI+4sfOQ=",
                "rev": "e8712e415627f22d0b00ebee8db99547077f39bd",
                "url": "https://chromium.googlesource.com/external/libaddressinput.git"
            },
            "src/third_party/libaom/source/libaom": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-zgtNjrQE+fzr8Aye0rAkQR5enzfacCAsRbC3crUrMQ4=",
                "rev": "158761dfb40e77f3a54c3b14a596112837baa24b",
                "url": "https://aomedia.googlesource.com/aom.git"
            },
            "src/third_party/libavif/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-moVf7i0gZ/KW53ACcVIWKWNL0oAimOSU1m5IdQHz6z8=",
                "rev": "43ec9ace31c6ca11efddddb61b94b744450d46e2",
                "url": "https://chromium.googlesource.com/external/github.com/AOMediaCodec/libavif.git"
            },
            "src/third_party/libavifinfo/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-UAc4iYWrKWteH98hD3QLkD3JWmV/rsvWhFIVJN7tc+Q=",
                "rev": "b496868f7c3fd17dfeeecc0364fe37e19edd548a",
                "url": "https://aomedia.googlesource.com/libavifinfo.git"
            },
            "src/third_party/libc++/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-k2bSS8OhVyd0/metFpwFvRCWYOaLEU0Md4AW50GpGTM=",
                "rev": "80307e66e74bae927fb8709a549859e777e3bf0b",
                "url": "https://chromium.googlesource.com/external/github.com/llvm/llvm-project/libcxx.git"
            },
            "src/third_party/libc++abi/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-AdyX58sg//O2e76HAcRC5DcuiTsd68QS4mNVkPv0Vck=",
                "rev": "ec88f0ab262c5f2426dbf138b92ee9ae5961e431",
                "url": "https://chromium.googlesource.com/external/github.com/llvm/llvm-project/libcxxabi.git"
            },
            "src/third_party/libdrm/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-NUxS2rBJ0nFblvHRQUfKT933+DAws5RUTDb+RLxRF4M=",
                "rev": "98e1db501173303e58ef6a1def94ab7a2d84afc1",
                "url": "https://chromium.googlesource.com/chromiumos/third_party/libdrm.git"
            },
            "src/third_party/libgav1/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-tB9Wzjs4Sct7QendDMKkaEE4ddD6ptnNCmj1yYKcQSc=",
                "rev": "f9a93151adf7203c6ab90f3c94bbd5972b7967b8",
                "url": "https://chromium.googlesource.com/codecs/libgav1.git"
            },
            "src/third_party/libipp/libipp": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-gxU92lHLd6uxO8T3QWhZIK0hGy97cki705DV0VimCPY=",
                "rev": "2209bb84a8e122dab7c02fe66cc61a7b42873d7f",
                "url": "https://chromium.googlesource.com/chromiumos/platform2/libipp.git"
            },
            "src/third_party/libjpeg_turbo": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-+t75ZAdOXc7Nd1/8zEQLX+enZb8upqIQuR6qzb9z7Cg=",
                "rev": "9b894306ec3b28cea46e84c32b56773a98c483da",
                "url": "https://chromium.googlesource.com/chromium/deps/libjpeg_turbo.git"
            },
            "src/third_party/liblouis/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-EI/uaHXe0NlqdEw764q0SjerThYEVLRogUlmrsZwXnY=",
                "rev": "9700847afb92cb35969bdfcbbfbbb74b9c7b3376",
                "url": "https://chromium.googlesource.com/external/liblouis-github.git"
            },
            "src/third_party/libphonenumber/dist": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-3hSnTFTD3KAdbyxfKg12qbIYTmw6YlTCH64gMP/HUJo=",
                "rev": "140dfeb81b753388e8a672900fb7a971e9a0d362",
                "url": "https://chromium.googlesource.com/external/libphonenumber.git"
            },
            "src/third_party/libprotobuf-mutator/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-ZyPweW+V5foxFQwjjMLkaRUo+FNV+kEDGIH/4oRV614=",
                "rev": "a304ec48dcf15d942607032151f7e9ee504b5dcf",
                "url": "https://chromium.googlesource.com/external/github.com/google/libprotobuf-mutator.git"
            },
            "src/third_party/libsrtp": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-pfLFh2JGk/g0ZZxBKTaYW9/PBpkCm0rtJeyNePUMTTc=",
                "rev": "5b7c744eb8310250ccc534f3f86a2015b3887a0a",
                "url": "https://chromium.googlesource.com/chromium/deps/libsrtp.git"
            },
            "src/third_party/libsync/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-Mkl6C1LxF3RYLwYbxiSfoQPt8QKFwQWj/Ati2sNJ32E=",
                "rev": "f4f4387b6bf2387efbcfd1453af4892e8982faf6",
                "url": "https://chromium.googlesource.com/aosp/platform/system/core/libsync.git"
            },
            "src/third_party/libunwind/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-/4/Trextb4F9UMDVrg4uG9QZl6S0H9FiwnL+2S5+ZpE=",
                "rev": "419b03c0b8f20d6da9ddcb0d661a94a97cdd7dad",
                "url": "https://chromium.googlesource.com/external/github.com/llvm/llvm-project/libunwind.git"
            },
            "src/third_party/libvpx/source/libvpx": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-5IsUUvhcKKiWJFetS29+S7Wiz5JwqRZGK2t2ehld/M4=",
                "rev": "19832b1702d5b0adf616a0e080abd5207c8445b5",
                "url": "https://chromium.googlesource.com/webm/libvpx.git"
            },
            "src/third_party/libwebm/source": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-u/5nkJed0DzdhR5OLL2kIhZhOnrbyzL1Kx37vV/jcEo=",
                "rev": "e4fbea0c9751ae8aa86629b197a28d8276a2b0da",
                "url": "https://chromium.googlesource.com/webm/libwebm.git"
            },
            "src/third_party/libwebp/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-Wa33opOFgcmYtycezDUt2f6PqZBse6xYB5kLuSaw95o=",
                "rev": "ca332209cb5567c9b249c86788cb2dbf8847e760",
                "url": "https://chromium.googlesource.com/webm/libwebp.git"
            },
            "src/third_party/libyuv": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-hD5B9fPNwf8M98iS/PYeUJgJxtBvvf2BrrlnBNYXSg0=",
                "rev": "a6a2ec654b1be1166b376476a7555c89eca0c275",
                "url": "https://chromium.googlesource.com/libyuv/libyuv.git"
            },
            "src/third_party/lss": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-hE8uZf9Fst66qJkoVYChiB8G41ie+k9M4X0W+5JUSdw=",
                "rev": "ce877209e11aa69dcfffbd53ef90ea1d07136521",
                "url": "https://chromium.googlesource.com/linux-syscall-support.git"
            },
            "src/third_party/material_color_utilities/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-Y85XU+z9W6tvmDNHJ/dXQnUKXvvDkO3nH/kUJRLqbc4=",
                "rev": "13434b50dcb64a482cc91191f8cf6151d90f5465",
                "url": "https://chromium.googlesource.com/external/github.com/material-foundation/material-color-utilities.git"
            },
            "src/third_party/minigbm/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-9HwvjTETerbQ7YKXH9kUB2eWa8PxGWMAJfx1jAluhrs=",
                "rev": "3018207f4d89395cc271278fb9a6558b660885f5",
                "url": "https://chromium.googlesource.com/chromiumos/platform/minigbm.git"
            },
            "src/third_party/nan": {
                "fetcher": "fetchFromGitHub",
                "hash": "sha256-cwti+BWmF/l/dqa/cN0C587EK4WwRWcWy6gjFVkaMTg=",
                "owner": "nodejs",
                "repo": "nan",
                "rev": "e14bdcd1f72d62bca1d541b66da43130384ec213"
            },
            "src/third_party/nasm": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-SiRXHsUlWXtH6dbDjDjqNAm105ibEB3jOfNtQAM4CaY=",
                "rev": "f477acb1049f5e043904b87b825c5915084a9a29",
                "url": "https://chromium.googlesource.com/chromium/deps/nasm.git"
            },
            "src/third_party/nearby/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-YotKuKutnjuphwiElfQO6qpoNLhZGP6bqWZnW3Zv6QI=",
                "rev": "33e682f24427a0eb634bd3186fe3c6fd96bd6768",
                "url": "https://chromium.googlesource.com/external/github.com/google/nearby-connections.git"
            },
            "src/third_party/neon_2_sse/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-299ZptvdTmCnIuVVBkrpf5ZTxKPwgcGUob81tEI91F0=",
                "rev": "a15b489e1222b2087007546b4912e21293ea86ff",
                "url": "https://chromium.googlesource.com/external/github.com/intel/ARM_NEON_2_x86_SSE.git"
            },
            "src/third_party/openh264/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-J7Eqe2QevZh1xfap19W8AVCcwfRu7ztknnbKFJUAH1c=",
                "rev": "09a4f3ec842a8932341b195c5b01e141c8a16eb7",
                "url": "https://chromium.googlesource.com/external/github.com/cisco/openh264"
            },
            "src/third_party/openscreen/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-wUKhF9sU1HAZvs4fQHxeFfxkpkhBp6nTljJrQ4lH7lA=",
                "rev": "a3f9719bed95289c59771d4c4bcb85f5ecacac43",
                "url": "https://chromium.googlesource.com/openscreen"
            },
            "src/third_party/openscreen/src/buildtools": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-SBorO59kMSnskcp3oP5lrGQg+9cr/Ymey2aZGlRTgu0=",
                "rev": "0ac67b7cef80e421283f633ee9c2ce652f6e42cc",
                "url": "https://chromium.googlesource.com/chromium/src/buildtools"
            },
            "src/third_party/openscreen/src/third_party/tinycbor/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-fMKBFUSKmODQyg4hKIa1hwnEKIV6WBbY1Gb8DOSnaHA=",
                "rev": "d393c16f3eb30d0c47e6f9d92db62272f0ec4dc7",
                "url": "https://chromium.googlesource.com/external/github.com/intel/tinycbor.git"
            },
            "src/third_party/ots/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-kiUXrXsaGOzPkKh0dVmU1I13WHt0Stzj7QLMqHN9FbU=",
                "rev": "46bea9879127d0ff1c6601b078e2ce98e83fcd33",
                "url": "https://chromium.googlesource.com/external/github.com/khaledhosny/ots.git"
            },
            "src/third_party/pdfium": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-4CPHeZAJM756a2TIxs4ZX0D7j85deDIf/bTGow75m/U=",
                "rev": "7b90b15a21cfdd3d74525616b5de04df94fa0583",
                "url": "https://pdfium.googlesource.com/pdfium.git"
            },
            "src/third_party/perfetto": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-FeI+nAa5N8mQoA8gDSmWn6nw6TSPhDGwJI8/7r/5z1c=",
                "rev": "a66020f87046d8934c22e20acb2bb8a91901ce8e",
                "url": "https://android.googlesource.com/platform/external/perfetto.git"
            },
            "src/third_party/protobuf-javascript/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-TmP6xftUVTD7yML7UEM/DB8bcsL5RFlKPyCpcboD86U=",
                "rev": "e34549db516f8712f678fcd4bc411613b5cc5295",
                "url": "https://chromium.googlesource.com/external/github.com/protocolbuffers/protobuf-javascript"
            },
            "src/third_party/pthreadpool/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-R4YmNzWEELSkAws/ejmNVxqXDTJwcqjLU/o/HvgRn2E=",
                "rev": "4fe0e1e183925bf8cfa6aae24237e724a96479b8",
                "url": "https://chromium.googlesource.com/external/github.com/Maratyszcza/pthreadpool.git"
            },
            "src/third_party/pyelftools": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-I/7p3IEvfP/gkes4kx18PvWwhAKilQKb67GXoW4zFB4=",
                "rev": "19b3e610c86fcadb837d252c794cb5e8008826ae",
                "url": "https://chromium.googlesource.com/chromiumos/third_party/pyelftools.git"
            },
            "src/third_party/pywebsocket3/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-WEqqu2/7fLqcf/2/IcD7/FewRSZ6jTgVlVBvnihthYQ=",
                "rev": "50602a14f1b6da17e0b619833a13addc6ea78bc2",
                "url": "https://chromium.googlesource.com/external/github.com/GoogleChromeLabs/pywebsocket3.git"
            },
            "src/third_party/quic_trace/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-Nf9ZDLcE1JunhbpEMHhrY2ROnbgrvVZoRkPwWq1DU0g=",
                "rev": "caa0a6eaba816ecb737f9a70782b7c80b8ac8dbc",
                "url": "https://chromium.googlesource.com/external/github.com/google/quic-trace.git"
            },
            "src/third_party/re2/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-gB6vW6UJ60LrrGeNP6NKAcirIK6jgZjHRc6TA+pNXAQ=",
                "rev": "6598a8ecd57724c8c7d43b2fca8eb9f9969ce57c",
                "url": "https://chromium.googlesource.com/external/github.com/google/re2.git"
            },
            "src/third_party/ruy/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-cwmKQJpR+7lp+dq8fGu6U8A+qmkXz6SlWvAdhBkKZOw=",
                "rev": "587c2cf8b11d3c32fa26887063eda3171a3d353e",
                "url": "https://chromium.googlesource.com/external/github.com/google/ruy.git"
            },
            "src/third_party/securemessage/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-GS4ccnuiqxMs/LVYAtvSlVAYFp4a5GoZsxcriTX3k78=",
                "rev": "fa07beb12babc3b25e0c5b1f38c16aa8cb6b8f84",
                "url": "https://chromium.googlesource.com/external/github.com/google/securemessage.git"
            },
            "src/third_party/skia": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-8C8IMQjfJGeCXCXZyd/eSbDNsdcKI/Bul0m1wrqx1P8=",
                "rev": "e2ea2eb3e0d37fff47968dfaaa337debb3b75b1e",
                "url": "https://skia.googlesource.com/skia.git"
            },
            "src/third_party/smhasher/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-RyC//me08hwGXRrWcK8GZ1uhIkBq4FByA7fHCVDsniw=",
                "rev": "e87738e57558e0ec472b2fc3a643b838e5b6e88f",
                "url": "https://chromium.googlesource.com/external/smhasher.git"
            },
            "src/third_party/snappy/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-5fV6NfO8vmqK+iCwpLtE2YjYOzjsshctauyjNIOxrH0=",
                "rev": "c9f9edf6d75bb065fa47468bf035e051a57bec7c",
                "url": "https://chromium.googlesource.com/external/github.com/google/snappy.git"
            },
            "src/third_party/speedometer/v3.0": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-qMQ4naX+4uUu3vtzzinjkhxX9/dNoTwj6vWCu4FdQmU=",
                "rev": "8d67f28d0281ac4330f283495b7f48286654ad7d",
                "url": "https://chromium.googlesource.com/external/github.com/WebKit/Speedometer.git"
            },
            "src/third_party/sqlite/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-TsrSvL76H7SFhJWgHqyl8Y/BhAcnI9oaT2tUT6Ktan4=",
                "rev": "f51e3fa404f5853650525549c78d7489a7f457b3",
                "url": "https://chromium.googlesource.com/chromium/deps/sqlite.git"
            },
            "src/third_party/squirrel.mac": {
                "fetcher": "fetchFromGitHub",
                "hash": "sha256-4GfKQg0u3c9GI+jl3ixESNqWXQJKRMi+00QT0s2Shqw=",
                "owner": "Squirrel",
                "repo": "Squirrel.Mac",
                "rev": "0e5d146ba13101a1302d59ea6e6e0b3cace4ae38"
            },
            "src/third_party/squirrel.mac/vendor/Mantle": {
                "fetcher": "fetchFromGitHub",
                "hash": "sha256-ogFkMJybf2Ue606ojXJu6Gy5aXSi1bSKm60qcTAIaPk=",
                "owner": "Mantle",
                "repo": "Mantle",
                "rev": "78d3966b3c331292ea29ec38661b25df0a245948"
            },
            "src/third_party/squirrel.mac/vendor/ReactiveObjC": {
                "fetcher": "fetchFromGitHub",
                "hash": "sha256-/MCqC1oFe3N9TsmfVLgl+deR6qHU6ZFQQjudb9zB5Mo=",
                "owner": "ReactiveCocoa",
                "repo": "ReactiveObjC",
                "rev": "74ab5baccc6f7202c8ac69a8d1e152c29dc1ea76"
            },
            "src/third_party/swiftshader": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-tU0maePvL35JIVKFm+9hmPYDM81szLNYqUJyTKMHT0k=",
                "rev": "bbe6452b420c5ddc4b0fd421b0a3ce271262f4ca",
                "url": "https://swiftshader.googlesource.com/SwiftShader.git"
            },
            "src/third_party/text-fragments-polyfill/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-4rW2u1cQAF4iPWHAt1FvVXIpz2pmI901rEPks/w/iFA=",
                "rev": "c036420683f672d685e27415de0a5f5e85bdc23f",
                "url": "https://chromium.googlesource.com/external/github.com/GoogleChromeLabs/text-fragments-polyfill.git"
            },
            "src/third_party/tflite/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-Iqun3uMTCjGzHxUDeTCrvZufNtobnbqYVPDt7ZJ06wM=",
                "rev": "55bc062601e4ee5a4efa834a84ae5c5ec6b28306",
                "url": "https://chromium.googlesource.com/external/github.com/tensorflow/tensorflow.git"
            },
            "src/third_party/ukey2/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-aaLs6ZS+CdBlCJ6ZhsmdAPFxiBIij6oufsDcNeRSV1E=",
                "rev": "0275885d8e6038c39b8a8ca55e75d1d4d1727f47",
                "url": "https://chromium.googlesource.com/external/github.com/google/ukey2.git"
            },
            "src/third_party/vulkan-deps": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-MokWdjOP8Mc5hmoRrSXHXkobMPWbbmMzAMBOOoKG3gk=",
                "rev": "3cebaae6743688201c8aa9b3694bba6948f0fa68",
                "url": "https://chromium.googlesource.com/vulkan-deps"
            },
            "src/third_party/vulkan-deps/glslang/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-lP+N1d6jE+Cj5ofomgMEhbA6VbH5eKw83mY6zNIOfNk=",
                "rev": "9f37ad360ea1c32162f0cc1799b1b292594fc771",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/glslang"
            },
            "src/third_party/vulkan-deps/spirv-cross/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-H43M9DXfEuyKuvo6rjb5k0KEbYOSFodbPJh8ZKY4PQg=",
                "rev": "b8fcf307f1f347089e3c46eb4451d27f32ebc8d3",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/SPIRV-Cross"
            },
            "src/third_party/vulkan-deps/spirv-headers/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-kyOAwe4R0FmeA9IIJF2eoZR+7g9LiGKaZ7FuIfkrXJ4=",
                "rev": "8b246ff75c6615ba4532fe4fde20f1be090c3764",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/SPIRV-Headers"
            },
            "src/third_party/vulkan-deps/spirv-tools/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-/Cldtx75V+z3FuColEqwweyZHEqR2NaIj1Ha/vPoCsc=",
                "rev": "c6615779ef8a1eb5ef48fef77bf3eb2cf4f5438d",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/SPIRV-Tools"
            },
            "src/third_party/vulkan-deps/vulkan-headers/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-EnKiCtH6rh3ACQgokSSfp4FPFluMZW0dheP8IEzZtY4=",
                "rev": "577baa05033cf1d9236b3d078ca4b3269ed87a2b",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-Headers"
            },
            "src/third_party/vulkan-deps/vulkan-loader/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-zkJSPshRaZRDiBvLJbJo8l1MX10KXYZniqtNTNnokT4=",
                "rev": "61a9c50248e09f3a0e0be7ce6f8bb1663855f979",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-Loader"
            },
            "src/third_party/vulkan-deps/vulkan-tools/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-9qs0oS6W7x/1Z+wlFt91bqF09oxoloNPtjjH9mECJFk=",
                "rev": "733fd2b522918f81f9c4669350dafd066f99c5d5",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-Tools"
            },
            "src/third_party/vulkan-deps/vulkan-utility-libraries/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-mCD9/bpWUXRVJ+OyOqG0tXTgFuptIlcG6UR/RiNV1Z0=",
                "rev": "a4140c5fd47dcf3a030726a60b293db61cfb54a3",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-Utility-Libraries"
            },
            "src/third_party/vulkan-deps/vulkan-validation-layers/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-Bcm5yMo7JL/E6YZetlabkA0mkEFxbWriYNd8tRtgx5k=",
                "rev": "5b8af92af052c83444ac560ff1e28c1c322424ef",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-ValidationLayers"
            },
            "src/third_party/vulkan_memory_allocator": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-YzxHZagz/M8Y54UnI4h1wu5jSTuaOgv0ifC9d3fJZlQ=",
                "rev": "56300b29fbfcc693ee6609ddad3fdd5b7a449a21",
                "url": "https://chromium.googlesource.com/external/github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator.git"
            },
            "src/third_party/wayland-protocols/gtk": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-75XNnLkF5Lt1LMRGT+T61k0/mLa3kkynfN+QWvZ0LiQ=",
                "rev": "40ebed3a03aef096addc0af09fec4ec529d882a0",
                "url": "https://chromium.googlesource.com/external/github.com/GNOME/gtk.git"
            },
            "src/third_party/wayland-protocols/kde": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-Dmcp/2ms/k7NxPPmPkp0YNfM9z2Es1ZO0uX10bc7N2Y=",
                "rev": "0b07950714b3a36c9b9f71fc025fc7783e82926e",
                "url": "https://chromium.googlesource.com/external/github.com/KDE/plasma-wayland-protocols.git"
            },
            "src/third_party/wayland-protocols/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-ljMcY59iOdGYeToadCuQ3t0lrBnsBdot+NiT6e+JJ04=",
                "rev": "681c33c8547d6aefe24455ba2bffe1c5ae11fee5",
                "url": "https://chromium.googlesource.com/external/anongit.freedesktop.org/git/wayland/wayland-protocols.git"
            },
            "src/third_party/wayland/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-YSo1DznmcaYSUcJl/3voVSfZfuLokAFQt6F3M1Iat28=",
                "rev": "c35d1a3d1c0a1735afe5eb227cb826faa878ec19",
                "url": "https://chromium.googlesource.com/external/anongit.freedesktop.org/git/wayland/wayland.git"
            },
            "src/third_party/webdriver/pylib": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-WIqWXIKVgElgg8P8laLAlUrgwodGdeVcwohZxnPKedw=",
                "rev": "fc5e7e70c098bfb189a9a74746809ad3c5c34e04",
                "url": "https://chromium.googlesource.com/external/github.com/SeleniumHQ/selenium/py.git"
            },
            "src/third_party/webgl/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-dubsIPZKBGOzANGvMtQxFKFIHr0laDUGpzgRyEOjHMU=",
                "rev": "f4bf599a8b575df685c31d9c4729a70a04e377ed",
                "url": "https://chromium.googlesource.com/external/khronosgroup/webgl.git"
            },
            "src/third_party/webgpu-cts/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-/duXwmqanyI2KEnV5izvr0kE8tJNI1F1jMMIY0ylLH8=",
                "rev": "addbf812fd750dc8cebbd63732e7ce54a763fbee",
                "url": "https://chromium.googlesource.com/external/github.com/gpuweb/cts.git"
            },
            "src/third_party/webrtc": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-USSfh+vUFrWnXYvZIORRb4AEGNSCPub2cNqEdZD9mKM=",
                "rev": "a55ff9e83e4592010969d428bee656bace8cbc3b",
                "url": "https://webrtc.googlesource.com/src.git"
            },
            "src/third_party/weston/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-y2srFaPUOoB2umzpo4+hFfhNlqXM2AoMGOpUy/ZSacg=",
                "rev": "ccf29cb237c3ed09c5f370f35239c93d07abfdd7",
                "url": "https://chromium.googlesource.com/external/anongit.freedesktop.org/git/wayland/weston.git"
            },
            "src/third_party/wuffs/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-373d2F/STcgCHEq+PO+SCHrKVOo6uO1rqqwRN5eeBCw=",
                "rev": "e3f919ccfe3ef542cfc983a82146070258fb57f8",
                "url": "https://skia.googlesource.com/external/github.com/google/wuffs-mirror-release-c.git"
            },
            "src/third_party/xdg-utils": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-WuQ9uDq+QD17Y20ACFGres4nbkeOiTE2y+tY1avAT5U=",
                "rev": "cb54d9db2e535ee4ef13cc91b65a1e2741a94a44",
                "url": "https://chromium.googlesource.com/chromium/deps/xdg-utils.git"
            },
            "src/third_party/xnnpack/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-Cmw+rj805YTnnCwy2Zwzi2ZW4sdX5JWjTnBaUB6+YyU=",
                "rev": "7e696d941310a528dd2d6fbee3d499d19b24746d",
                "url": "https://chromium.googlesource.com/external/github.com/google/XNNPACK.git"
            },
            "src/third_party/zstd/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-hWfYKiTzkmeiUTgNrSYXOFauusSVceVhD04Hgk69CK4=",
                "rev": "621a263fb2e6c2175fbd489e5d77ee8038baa2b2",
                "url": "https://chromium.googlesource.com/external/github.com/facebook/zstd.git"
            },
            "src/tools/page_cycler/acid3": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-s/49EaYQRsyxuLejXc1zGDYTD7uO0ddaQIJBP50Bvw0=",
                "rev": "a926d0a32e02c4c03ae95bb798e6c780e0e184ba",
                "url": "https://chromium.googlesource.com/chromium/deps/acid3.git"
            },
            "src/v8": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-rwEdjWYJz7shrwLWRyzOgbRvmIR0C9aZXn0vhcBLF50=",
                "rev": "c6b8b43c3042d99f07d5cc0771e58511afaa66a3",
                "url": "https://chromium.googlesource.com/v8/v8.git"
            }
        },
        "electron_yarn_hash": "0f868gk3d2cablpczav8a4vhk4nfirph45yzjz18mgzgday7w8hf",
        "modules": "123",
        "node": "20.11.1",
        "version": "30.0.3"
    }
}