summary refs log tree commit diff
path: root/pkgs/development/tools/electron/info.json
blob: 2404fa07a4519a964c7cf2736dc7ddcb025b0947 (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
{
    "28": {
        "deps": {
            "src/electron": {
                "fetcher": "fetchFromGitHub",
                "hash": "sha256-klH7DkP/wFUh0IxMMr//EPIsQRv5RzykAR3xC17k9jI=",
                "owner": "electron",
                "repo": "electron",
                "rev": "v28.0.0-nightly.20231009"
            },
            "src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-vXnKOAl9gG0VnYs02Lko2EsDi3eIdV9+nPSyzDFxIQQ=",
                "url": "https://chromium.googlesource.com/chromium/src.git",
                "rev": "119.0.6045.0",
                "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; "
            },
            "src/third_party/clang-format/script": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-7VvofDDQe+SoMRBfVk26q+C+OPyOE7QH35wVWkfDKxs=",
                "url": "https://chromium.googlesource.com/external/github.com/llvm/llvm-project/clang/tools/clang-format.git",
                "rev": "e5337933f2951cacd3aeacd238ce4578163ca0b9"
            },
            "src/third_party/libc++/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-6kuGJCCRgOwrV85e2i+UTyzt40u2pTET6cs0/MtI9Hk=",
                "url": "https://chromium.googlesource.com/external/github.com/llvm/llvm-project/libcxx.git",
                "rev": "7cf98622abaf832e2d4784889ebc69d5b6fde4d8"
            },
            "src/third_party/libc++abi/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-iFIXi4kq/LhNhFPJG4UJfO08MCxvthpiZ0WT9jg0lHE=",
                "url": "https://chromium.googlesource.com/external/github.com/llvm/llvm-project/libcxxabi.git",
                "rev": "e8e4eb8f1c413ea4365256b2b83a6093c95d2d86"
            },
            "src/third_party/libunwind/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-ytY/QvFzbqkGbsB+um1Rxo+O5DEOFUxUzRIuKMrC8YE=",
                "url": "https://chromium.googlesource.com/external/github.com/llvm/llvm-project/libunwind.git",
                "rev": "43e5a34c5b7066a7ee15c74f09dc37b4b9b5630e"
            },
            "src/chrome/test/data/perf/canvas_bench": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-svOuyBGKloBLM11xLlWCDsB4PpRjdKTBdW2UEW4JQjM=",
                "url": "https://chromium.googlesource.com/chromium/canvas_bench.git",
                "rev": "a7b40ea5ae0239517d78845a5fc9b12976bfc732"
            },
            "src/chrome/test/data/perf/frame_rate/content": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-t4kcuvH0rkPBkcdiMsoNQaRwU09eU+oSvyHDiAHrKXo=",
                "url": "https://chromium.googlesource.com/chromium/frame_rate/content.git",
                "rev": "c10272c88463efeef6bb19c9ec07c42bc8fe22b9"
            },
            "src/chrome/test/data/xr/webvr_info": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-BsAPwc4oEWri0TlqhyxqFNqKdfgVSrB0vQyISmYY4eg=",
                "url": "https://chromium.googlesource.com/external/github.com/toji/webvr.info.git",
                "rev": "c58ae99b9ff9e2aa4c524633519570bf33536248"
            },
            "src/docs/website": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-aYgan6NIIIWDzCplczvU57TZQ6GAluejBoWjfx5FPs4=",
                "url": "https://chromium.googlesource.com/website.git",
                "rev": "98972e05cf600ceefe641ac5d83b661e2792fcb4"
            },
            "src/media/cdm/api": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-6J6aSYW0or99VAgMNJJOdJqMJspoG7w1HxDN50MV5bw=",
                "url": "https://chromium.googlesource.com/chromium/cdm.git",
                "rev": "fef0b5aa1bd31efb88dfab804bdbe614f3d54f28"
            },
            "src/net/third_party/quiche/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-dziuBpghbxrXXH6on6WxYvfHInSaUWyNrWbYwAJeMuA=",
                "url": "https://quiche.googlesource.com/quiche.git",
                "rev": "0c75f987990bfb2fe27eeaa8f3cc78f98f3ef42d"
            },
            "src/third_party/angle": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-PpW7/iZWiMUhmGfAARnSAn3Sd29ngfz6Q9gY+A994LI=",
                "url": "https://chromium.googlesource.com/angle/angle.git",
                "rev": "3d5308aac229dabf751b9ebf8a7e81fa2b0477cd"
            },
            "src/third_party/angle/third_party/glmark2/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-L7+zWM0qn8WFhmON7DGvarTsN1YHt1sn5+hazTOZrrk=",
                "url": "https://chromium.googlesource.com/external/github.com/glmark2/glmark2",
                "rev": "ca8de51fedb70bace5351c6b002eb952c747e889"
            },
            "src/third_party/angle/third_party/rapidjson/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-btUl1a/B0sXwf/+hyvCvVJjWqIkXfVYCpHm3TeBuOxk=",
                "url": "https://chromium.googlesource.com/external/github.com/Tencent/rapidjson",
                "rev": "781a4e667d84aeedbeb8184b7b62425ea66ec59f"
            },
            "src/third_party/angle/third_party/VK-GL-CTS/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-yXo4h4SgMdmHxtT5IeFDzBa5hq/7RZtMRrktaLJkvfs=",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/VK-GL-CTS",
                "rev": "a55b0930e9db612b25cc67701569931200bc2ee0"
            },
            "src/third_party/anonymous_tokens/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-/AuMmFWKOaYCsd9cHbZBYUqJUHXJ0xxOuIWe/+lEZ1c=",
                "url": "https://chromium.googlesource.com/external/github.com/google/anonymous-tokens.git",
                "rev": "79562f0175dba82f671046b5bdea0853323445b7"
            },
            "src/third_party/content_analysis_sdk/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-f5Jmk1MiGjaRdLun+v/GKVl8Yv9hOZMTQUSxgiJalcY=",
                "url": "https://chromium.googlesource.com/external/github.com/chromium/content_analysis_sdk.git",
                "rev": "9a408736204513e0e95dd2ab3c08de0d95963efc"
            },
            "src/third_party/dav1d/libdav1d": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-KSo2s3M3S13gY84NlAdnPsjoKfJZy7ipTlWSvUHD9Ak=",
                "url": "https://chromium.googlesource.com/external/github.com/videolan/dav1d.git",
                "rev": "f8ae94eca0f53502a2cddd29a263c1edea4822a0"
            },
            "src/third_party/dawn": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-PE1LHtfdL9grVxBKaSVoc/kc6eHLaP7LKJFWxx+BByE=",
                "url": "https://dawn.googlesource.com/dawn.git",
                "rev": "e1f1c0135a5eca328a320d4f14d21b24576eea9b"
            },
            "src/third_party/dawn/third_party/glfw": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-TwAPRjQxIz3J+zbNxzCp5Tek7MwisxdekMpY5QGsKyg=",
                "url": "https://chromium.googlesource.com/external/github.com/glfw/glfw",
                "rev": "62e175ef9fae75335575964c845a302447c012c7"
            },
            "src/third_party/dawn/third_party/dxc": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-uCSypev3Jvy6vfzF0AG3w9DIewV7u4w7TNtw1WVVrXM=",
                "url": "https://chromium.googlesource.com/external/github.com/microsoft/DirectXShaderCompiler",
                "rev": "6b4b0eb5f2ca9b9039a7dbf7b324a9478fbd6f03"
            },
            "src/third_party/dawn/third_party/dxheaders": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-0Miw1Cy/jmOo7bLFBOHuTRDV04cSeyvUEyPkpVsX9DA=",
                "url": "https://chromium.googlesource.com/external/github.com/microsoft/DirectX-Headers",
                "rev": "980971e835876dc0cde415e8f9bc646e64667bf7"
            },
            "src/third_party/dawn/third_party/khronos/OpenGL-Registry": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-K3PcRIiD3AmnbiSm5TwaLs4Gu9hxaN8Y91WMKK8pOXE=",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/OpenGL-Registry",
                "rev": "5bae8738b23d06968e7c3a41308568120943ae77"
            },
            "src/third_party/dawn/third_party/khronos/EGL-Registry": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-Z6DwLfgQ1wsJXz0KKJyVieOatnDmx3cs0qJ6IEgSq1A=",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/EGL-Registry",
                "rev": "7dea2ed79187cd13f76183c4b9100159b9e3e071"
            },
            "src/third_party/dawn/third_party/webgpu-cts": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-+pKnhSC7qQf8P5YL7ei1IPJ0ur89IJAiItnXhw6HKLo=",
                "url": "https://chromium.googlesource.com/external/github.com/gpuweb/cts",
                "rev": "be1210e145e89e7a2943947d983f9592495e0f52"
            },
            "src/third_party/highway/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-kNb9UVcFq2BIf9nftUgN8ciFFCzRCou/sLwVf08jf3E=",
                "url": "https://chromium.googlesource.com/external/github.com/google/highway.git",
                "rev": "8f20644eca693cfb74aa795b0006b6779c370e7a"
            },
            "src/third_party/google_benchmark/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-h2ryAQAuHI54Cni88L85e7Np4KATGVTRdDcmUvCNeWc=",
                "url": "https://chromium.googlesource.com/external/github.com/google/benchmark.git",
                "rev": "b177433f3ee2513b1075140c723d73ab8901790f"
            },
            "src/third_party/boringssl/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-FBQ7y4N2rCM/Cyd6LBnDUXpSa2O3osUXukECTBjZL6s=",
                "url": "https://boringssl.googlesource.com/boringssl.git",
                "rev": "d24a38200fef19150eef00cad35b138936c08767"
            },
            "src/third_party/breakpad/breakpad": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-8AkC/8oX4OWAcV21laJ0AeMRB9G04rFc6UJFy7Wus4A=",
                "url": "https://chromium.googlesource.com/breakpad/breakpad.git",
                "rev": "8988364bcddd9b194b0bf931c10bc125987330ed"
            },
            "src/third_party/cast_core/public/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-AalRQhJmornCqmvE2+36J/3LubaA0jr6P1PXy32lX4I=",
                "url": "https://chromium.googlesource.com/cast_core/public",
                "rev": "71f51fd6fa45fac73848f65421081edd723297cd"
            },
            "src/third_party/catapult": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-j5NFdjcsv3CaAOrUmNkuxodQyudxqWCNPTd6ovW83sg=",
                "url": "https://chromium.googlesource.com/catapult.git",
                "rev": "4f81c1e295978227d83f1b42ceff40b4f9b5b08c"
            },
            "src/third_party/ced/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-ySG74Rj2i2c/PltEgHVEDq+N8yd9gZmxNktc56zIUiY=",
                "url": "https://chromium.googlesource.com/external/github.com/google/compact_enc_det.git",
                "rev": "ba412eaaacd3186085babcd901679a48863c7dd5"
            },
            "src/third_party/chromium-variations": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-mWnpJb5yV30slOvqc543uqxN1t6TEGP2H3MKl7x6mbw=",
                "url": "https://chromium.googlesource.com/chromium-variations.git",
                "rev": "990efdd6cf54f2124621d065e2de629856c395e4"
            },
            "src/third_party/cld_3/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-C3MOMBUy9jgkT9BAi/Fgm2UH4cxRuwSBEcRl3hzM2Ss=",
                "url": "https://chromium.googlesource.com/external/github.com/google/cld_3.git",
                "rev": "b48dc46512566f5a2d41118c8c1116c4f96dc661"
            },
            "src/third_party/colorama/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-6ZTdPYSHdQOLYMSnE+Tp7PgsVTs3U2awGu9Qb4Rg/tk=",
                "url": "https://chromium.googlesource.com/external/colorama.git",
                "rev": "3de9f013df4b470069d03d250224062e8cf15c49"
            },
            "src/third_party/cpu_features/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-E8LoVzhe+TAmARWZTSuINlsVhzpUJMxPPCGe/dHZcyA=",
                "url": "https://chromium.googlesource.com/external/github.com/google/cpu_features.git",
                "rev": "936b9ab5515dead115606559502e3864958f7f6e"
            },
            "src/third_party/cpuinfo/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-nOSaLZGqmt+8W5Ut9QHDKznh1cekl1jL2ghCM4mgbgc=",
                "url": "https://chromium.googlesource.com/external/github.com/pytorch/cpuinfo.git",
                "rev": "959002f82d7962a473d8bf301845f2af720e0aa4"
            },
            "src/third_party/crc32c/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-urg0bmnfMfHagLPELp4WrNCz1gBZ6DFOWpDue1KsMtc=",
                "url": "https://chromium.googlesource.com/external/github.com/google/crc32c.git",
                "rev": "fa5ade41ee480003d9c5af6f43567ba22e4e17e6"
            },
            "src/third_party/cros_system_api": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-uTeouExil2es07n1a4oVa/r6CUraZ0+iu8Q+A1n4kgA=",
                "url": "https://chromium.googlesource.com/chromiumos/platform2/system_api.git",
                "rev": "b7b78587c03de1cd478f31f734498430773adeb3"
            },
            "src/third_party/crossbench": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-s/+y5bMj+CRnljFZ5aWKirPCsRUjckLOZ5F65WnPYSY=",
                "url": "https://chromium.googlesource.com/crossbench.git",
                "rev": "06981428c28d66678ebec13ca1fac3785cf51bb1"
            },
            "src/third_party/depot_tools": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-Zx8VtOMxysriVmcPb9YkdS84WXV6NsSkfnCSV8OBwbc=",
                "url": "https://chromium.googlesource.com/chromium/tools/depot_tools.git",
                "rev": "90a30a5b5357636fa05bb315c393275be7ca705c"
            },
            "src/third_party/devtools-frontend/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-p95bOkzo984NqbWNs0Ee7QUd6Iz+Zz1e+3ENUzbFELY=",
                "url": "https://chromium.googlesource.com/devtools/devtools-frontend",
                "rev": "46268f4b777d9e3812ae478fd3254f82fea73f3a"
            },
            "src/third_party/dom_distiller_js/dist": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-yuEBD2XQlV3FGI/i7lTmJbCqzeBiuG1Qow8wvsppGJw=",
                "url": "https://chromium.googlesource.com/chromium/dom-distiller/dist.git",
                "rev": "199de96b345ada7c6e7e6ba3d2fa7a6911b8767d"
            },
            "src/third_party/eigen3/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-a7TnzR57VmIBUqAEKmxncgV/22g3z7b1lEHsYnNZjKo=",
                "url": "https://chromium.googlesource.com/external/gitlab.com/libeigen/eigen.git",
                "rev": "18018ed013029ca3f28f52a62360999b5a659eac"
            },
            "src/third_party/farmhash/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-5n58VEUxa/K//jAfZqG4cXyfxrp50ogWDNYcgiXVHdc=",
                "url": "https://chromium.googlesource.com/external/github.com/google/farmhash.git",
                "rev": "816a4ae622e964763ca0862d9dbd19324a1eaf45"
            },
            "src/third_party/ffmpeg": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-uRgHTVaCAEaoqY20SmePQbApPmjimgggm5922KKfnbc=",
                "url": "https://chromium.googlesource.com/chromium/third_party/ffmpeg.git",
                "rev": "0ba37733400593b162e5ae9ff26b384cff49c250"
            },
            "src/third_party/flac": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-gvTFPNOlBfozptaH7lTb9iD/09AmpdT3kCl9ClszjEs=",
                "url": "https://chromium.googlesource.com/chromium/deps/flac.git",
                "rev": "689da3a7ed50af7448c3f1961d1791c7c1d9c85c"
            },
            "src/third_party/flatbuffers/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-yu+bMwlTqT5I+BbJhemGMvs/Yw9TusNnFsHgERXYb2M=",
                "url": "https://chromium.googlesource.com/external/github.com/google/flatbuffers.git",
                "rev": "0343396e49d1c0bf4ca1058130efd9585ecb3c8f"
            },
            "src/third_party/fontconfig/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-7PFmgr/+KNEYxCMuxMD2Zi9Ydcbp88IU7exr55a392Q=",
                "url": "https://chromium.googlesource.com/external/fontconfig.git",
                "rev": "2fb3419a92156569bc1ec707401258c922cd0d99"
            },
            "src/third_party/fp16/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-m2d9bqZoGWzuUPGkd29MsrdscnJRtuIkLIMp3fMmtRY=",
                "url": "https://chromium.googlesource.com/external/github.com/Maratyszcza/FP16.git",
                "rev": "0a92994d729ff76a58f692d3028ca1b64b145d91"
            },
            "src/third_party/gemmlowp/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-O5wD8wxgis0qYMaY+xZ21GBDVQFphMRvInCOswS6inA=",
                "url": "https://chromium.googlesource.com/external/github.com/google/gemmlowp.git",
                "rev": "13d57703abca3005d97b19df1f2db731607a7dc2"
            },
            "src/third_party/grpc/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-64JEVCx/PCM0dvv7kAQvSjLc0QbRAZVBDzwD/FAV6T8=",
                "url": "https://chromium.googlesource.com/external/github.com/grpc/grpc.git",
                "rev": "822dab21d9995c5cf942476b35ca12a1aa9d2737"
            },
            "src/third_party/freetype/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-+n7BwWerzg8bMIgZYBOtCibfNkECijNVJKNk7qOQVhU=",
                "url": "https://chromium.googlesource.com/chromium/src/third_party/freetype2.git",
                "rev": "7b308a29dd105074eea9c8d5953a182d325f74f1"
            },
            "src/third_party/freetype-testing/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-2aHPchIK5Oce5+XxdXVCC+8EM6i0XT0rFbjSIVa2L1A=",
                "url": "https://chromium.googlesource.com/external/github.com/freetype/freetype2-testing.git",
                "rev": "7a69b1a2b028476f840ab7d4a2ffdfe4eb2c389f"
            },
            "src/third_party/fxdiv/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-LjX5kivfHbqCIA5pF9qUvswG1gjOFo3CMpX0VR+Cn38=",
                "url": "https://chromium.googlesource.com/external/github.com/Maratyszcza/FXdiv.git",
                "rev": "63058eff77e11aa15bf531df5dd34395ec3017c8"
            },
            "src/third_party/harfbuzz-ng/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-+fClyD9Rsge9qdGF8WCv8taLTWNL8iManpXZUzDL2LM=",
                "url": "https://chromium.googlesource.com/external/github.com/harfbuzz/harfbuzz.git",
                "rev": "db700b5670d9475cc8ed4880cc9447b232c5e432"
            },
            "src/third_party/emoji-segmenter/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-oT9mAKoKnrsFsBAeTRfPOXM76HRQQabFAlPpfKUGFhs=",
                "url": "https://chromium.googlesource.com/external/github.com/google/emoji-segmenter.git",
                "rev": "9ba6d25d0d9313569665d4a9d2b34f0f39f9a50e"
            },
            "src/third_party/ots/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-kiUXrXsaGOzPkKh0dVmU1I13WHt0Stzj7QLMqHN9FbU=",
                "url": "https://chromium.googlesource.com/external/github.com/khaledhosny/ots.git",
                "rev": "46bea9879127d0ff1c6601b078e2ce98e83fcd33"
            },
            "src/third_party/libgav1/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-dT8/Mdit3Qc5Sno6DYKv1qSNr+6Lhiy24ZNNBKoVq8I=",
                "url": "https://chromium.googlesource.com/codecs/libgav1.git",
                "rev": "df0023cc95b8e606a2fd243522d823401ef86637"
            },
            "src/third_party/googletest/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-VYRjcM3dDY2FarviXyFMgSkXCqKfWXwtGAj2Msgm7zg=",
                "url": "https://chromium.googlesource.com/external/github.com/google/googletest.git",
                "rev": "af29db7ec28d6df1c7f0f745186884091e602e07"
            },
            "src/third_party/hunspell_dictionaries": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-67mvpJRFFa9eMfyqFMURlbxOaTJBICnk+gl0b0mEHl8=",
                "url": "https://chromium.googlesource.com/chromium/deps/hunspell_dictionaries.git",
                "rev": "41cdffd71c9948f63c7ad36e1fb0ff519aa7a37e"
            },
            "src/third_party/icu": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-6do7X9xUCMe2mFQoffazdC5W9UJdHp424QEThqX6P48=",
                "url": "https://chromium.googlesource.com/chromium/deps/icu.git",
                "rev": "985b9a6f70e13f3db741fed121e4dcc3046ad494"
            },
            "src/third_party/jsoncpp/source": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-bSLNcoYBz3QCt5VuTR056V9mU2PmBuYBa0W6hFg2m8Q=",
                "url": "https://chromium.googlesource.com/external/github.com/open-source-parsers/jsoncpp.git",
                "rev": "42e892d96e47b1f6e29844cc705e148ec4856448"
            },
            "src/third_party/leveldatabase/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-TTX2FrmcWsgqrh4uzqMyGnnnG51cVC2ILfdLxD65MLY=",
                "url": "https://chromium.googlesource.com/external/leveldb.git",
                "rev": "068d5ee1a3ac40dabd00d211d5013af44be55bea"
            },
            "src/third_party/libFuzzer/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-T0dO+1A0r6kLFoleMkY8heu80biPntCpvA6YfqA7b+E=",
                "url": "https://chromium.googlesource.com/external/github.com/llvm/llvm-project/compiler-rt/lib/fuzzer.git",
                "rev": "758bd21f103a501b362b1ca46fa8fcb692eaa303"
            },
            "src/third_party/fuzztest/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-53SzbbDlzLl1MTeHxBhLpVGMKICd3ka6qfGcru9AVog=",
                "url": "https://chromium.googlesource.com/external/github.com/google/fuzztest.git",
                "rev": "ce460dd7cae252b8505ce0009121bcac17939e3a"
            },
            "src/third_party/libaddressinput/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-xvUUQSPrvqUp5DI9AqlRTWurwDW087c6v4RvI+4sfOQ=",
                "url": "https://chromium.googlesource.com/external/libaddressinput.git",
                "rev": "e8712e415627f22d0b00ebee8db99547077f39bd"
            },
            "src/third_party/libaom/source/libaom": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-76duDNvaq8o7RdswZglifr+gml86fSTdXAEx0nOTybI=",
                "url": "https://aomedia.googlesource.com/aom.git",
                "rev": "0d59418942412c4176805198f2ab7ff446637c3b"
            },
            "src/third_party/libavif/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-ZAsOy32MHx3YPvEnbBGGT4+iYhFyFPik0+9cLRoVDP4=",
                "url": "https://chromium.googlesource.com/external/github.com/AOMediaCodec/libavif.git",
                "rev": "0d4747af5b3f7b150c3838e6148c49a0bf0e0064"
            },
            "src/third_party/libavifinfo/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-UAc4iYWrKWteH98hD3QLkD3JWmV/rsvWhFIVJN7tc+Q=",
                "url": "https://aomedia.googlesource.com/libavifinfo.git",
                "rev": "b496868f7c3fd17dfeeecc0364fe37e19edd548a"
            },
            "src/third_party/nearby/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-0tTpC11sFIPq+FPlkGFrDNaAK93isQV/Fd2x1lHmtQ8=",
                "url": "https://chromium.googlesource.com/external/github.com/google/nearby-connections.git",
                "rev": "d477a2d174fc0e31f6dd06264ff3f47ff8da5378"
            },
            "src/third_party/beto-core/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-qgsPK7RyVqGRji0sTcMck1JqX9iCsYIExGoGwNZyVT0=",
                "url": "https://beto-core.googlesource.com/beto-core.git",
                "rev": "b902b346037ea3f4aadf8177021f6f917b16e648"
            },
            "src/third_party/securemessage/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-GS4ccnuiqxMs/LVYAtvSlVAYFp4a5GoZsxcriTX3k78=",
                "url": "https://chromium.googlesource.com/external/github.com/google/securemessage.git",
                "rev": "fa07beb12babc3b25e0c5b1f38c16aa8cb6b8f84"
            },
            "src/third_party/speedometer/v3.0": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-PqrwtPFU3TI840za3UU8p+t4ZdyX0l79esEA602Mbq0=",
                "url": "https://chromium.googlesource.com/external/github.com/WebKit/Speedometer.git",
                "rev": "5107c739c1b2a008e7293e3b489c4f80a8fb2e01"
            },
            "src/third_party/ukey2/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-aaLs6ZS+CdBlCJ6ZhsmdAPFxiBIij6oufsDcNeRSV1E=",
                "url": "https://chromium.googlesource.com/external/github.com/google/ukey2.git",
                "rev": "0275885d8e6038c39b8a8ca55e75d1d4d1727f47"
            },
            "src/third_party/cros-components/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-grvqHNesTNc3pUkM5YH4P+LaeSWXEKBM8Kw/eRMaB4E=",
                "url": "https://chromium.googlesource.com/external/google3/cros_components.git",
                "rev": "10d2e376519e88221117e38cd901054b0153501c"
            },
            "src/third_party/libdrm/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-NUxS2rBJ0nFblvHRQUfKT933+DAws5RUTDb+RLxRF4M=",
                "url": "https://chromium.googlesource.com/chromiumos/third_party/libdrm.git",
                "rev": "98e1db501173303e58ef6a1def94ab7a2d84afc1"
            },
            "src/third_party/expat/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-FXTDGAK03jc2wvazhRKqtsFRKZUYS/9HLpZNp4JfZJI=",
                "url": "https://chromium.googlesource.com/external/github.com/libexpat/libexpat.git",
                "rev": "441f98d02deafd9b090aea568282b28f66a50e36"
            },
            "src/third_party/libipp/libipp": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-gxU92lHLd6uxO8T3QWhZIK0hGy97cki705DV0VimCPY=",
                "url": "https://chromium.googlesource.com/chromiumos/platform2/libipp.git",
                "rev": "2209bb84a8e122dab7c02fe66cc61a7b42873d7f"
            },
            "src/third_party/libjpeg_turbo": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-bcmp8RqQYp4lRI9NfdfYgrAJsDLecJEhgRu9oosB9lQ=",
                "url": "https://chromium.googlesource.com/chromium/deps/libjpeg_turbo.git",
                "rev": "30bdb85e302ecfc52593636b2f44af438e05e784"
            },
            "src/third_party/liblouis/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-EI/uaHXe0NlqdEw764q0SjerThYEVLRogUlmrsZwXnY=",
                "url": "https://chromium.googlesource.com/external/liblouis-github.git",
                "rev": "9700847afb92cb35969bdfcbbfbbb74b9c7b3376"
            },
            "src/third_party/libphonenumber/dist": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-3hSnTFTD3KAdbyxfKg12qbIYTmw6YlTCH64gMP/HUJo=",
                "url": "https://chromium.googlesource.com/external/libphonenumber.git",
                "rev": "140dfeb81b753388e8a672900fb7a971e9a0d362"
            },
            "src/third_party/libprotobuf-mutator/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-ZyPweW+V5foxFQwjjMLkaRUo+FNV+kEDGIH/4oRV614=",
                "url": "https://chromium.googlesource.com/external/github.com/google/libprotobuf-mutator.git",
                "rev": "a304ec48dcf15d942607032151f7e9ee504b5dcf"
            },
            "src/third_party/libsrtp": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-pfLFh2JGk/g0ZZxBKTaYW9/PBpkCm0rtJeyNePUMTTc=",
                "url": "https://chromium.googlesource.com/chromium/deps/libsrtp.git",
                "rev": "5b7c744eb8310250ccc534f3f86a2015b3887a0a"
            },
            "src/third_party/libsync/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-Mkl6C1LxF3RYLwYbxiSfoQPt8QKFwQWj/Ati2sNJ32E=",
                "url": "https://chromium.googlesource.com/aosp/platform/system/core/libsync.git",
                "rev": "f4f4387b6bf2387efbcfd1453af4892e8982faf6"
            },
            "src/third_party/libvpx/source/libvpx": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-5x0Sk8/DXaTCIydK79vWZgIx3IHeQbLUxoNyE7E+Sdo=",
                "url": "https://chromium.googlesource.com/webm/libvpx.git",
                "rev": "38a707faef72eeff89d669c553e7bfe9e08dba8f"
            },
            "src/third_party/libwebm/source": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-u/5nkJed0DzdhR5OLL2kIhZhOnrbyzL1Kx37vV/jcEo=",
                "url": "https://chromium.googlesource.com/webm/libwebm.git",
                "rev": "e4fbea0c9751ae8aa86629b197a28d8276a2b0da"
            },
            "src/third_party/libwebp/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-79peh0y3eeiW5cVQqVq0mUgDcGZ9BlY+OXkPZylKARY=",
                "url": "https://chromium.googlesource.com/webm/libwebp.git",
                "rev": "2af26267cdfcb63a88e5c74a85927a12d6ca1d76"
            },
            "src/third_party/libyuv": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-jxs9kHI40gRFhm9cU6uS1Rxj+LLUUqT9b3myihxgW7s=",
                "url": "https://chromium.googlesource.com/libyuv/libyuv.git",
                "rev": "04821d1e7d60845525e8db55c7bcd41ef5be9406"
            },
            "src/third_party/lss": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-hE8uZf9Fst66qJkoVYChiB8G41ie+k9M4X0W+5JUSdw=",
                "url": "https://chromium.googlesource.com/linux-syscall-support.git",
                "rev": "ce877209e11aa69dcfffbd53ef90ea1d07136521"
            },
            "src/third_party/material_color_utilities/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-oi28dWuTd6ijn/RKSPukDr5GSzYiCTM2klFb7WSMDHY=",
                "url": "https://chromium.googlesource.com/external/github.com/material-foundation/material-color-utilities.git",
                "rev": "234a000e507d586c20df6e3bf5b9e035bc5ce7b1"
            },
            "src/third_party/minigbm/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-9HwvjTETerbQ7YKXH9kUB2eWa8PxGWMAJfx1jAluhrs=",
                "url": "https://chromium.googlesource.com/chromiumos/platform/minigbm.git",
                "rev": "3018207f4d89395cc271278fb9a6558b660885f5"
            },
            "src/third_party/nasm": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-L+b3X3vsfpY6FSlIK/AHhxhmq2cXd50vND6uT6yn8Qs=",
                "url": "https://chromium.googlesource.com/chromium/deps/nasm.git",
                "rev": "7fc833e889d1afda72c06220e5bed8fb43b2e5ce"
            },
            "src/third_party/neon_2_sse/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-299ZptvdTmCnIuVVBkrpf5ZTxKPwgcGUob81tEI91F0=",
                "url": "https://chromium.googlesource.com/external/github.com/intel/ARM_NEON_2_x86_SSE.git",
                "rev": "a15b489e1222b2087007546b4912e21293ea86ff"
            },
            "src/third_party/openh264/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-J7Eqe2QevZh1xfap19W8AVCcwfRu7ztknnbKFJUAH1c=",
                "url": "https://chromium.googlesource.com/external/github.com/cisco/openh264",
                "rev": "09a4f3ec842a8932341b195c5b01e141c8a16eb7"
            },
            "src/third_party/openscreen/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-rxNhfd/ujWtLWDjEbx/ZIo9tdILB1gD5q4cwxQ6DPnw=",
                "url": "https://chromium.googlesource.com/openscreen",
                "rev": "934f2462ad01c407a596641dbc611df49e2017b4"
            },
            "src/third_party/openscreen/src/third_party/tinycbor/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-fMKBFUSKmODQyg4hKIa1hwnEKIV6WBbY1Gb8DOSnaHA=",
                "url": "https://chromium.googlesource.com/external/github.com/intel/tinycbor.git",
                "rev": "d393c16f3eb30d0c47e6f9d92db62272f0ec4dc7"
            },
            "src/third_party/pdfium": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-Uk9knKf3Ixep8h2vDZmCLjP4OJSqNPyUaHU8/5FR5B4=",
                "url": "https://pdfium.googlesource.com/pdfium.git",
                "rev": "8cf636e15ce21f4c8a574882c7cfd00629b59aba"
            },
            "src/third_party/perfetto": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-qv1fTy/0xUauutP0PFaCwPvr1qptfeB3iqNjHXPDKyc=",
                "url": "https://android.googlesource.com/platform/external/perfetto.git",
                "rev": "a3d4c1de9bcf2a0471ab183c45cf111efd29571e"
            },
            "src/third_party/pthreadpool/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-R4YmNzWEELSkAws/ejmNVxqXDTJwcqjLU/o/HvgRn2E=",
                "url": "https://chromium.googlesource.com/external/github.com/Maratyszcza/pthreadpool.git",
                "rev": "4fe0e1e183925bf8cfa6aae24237e724a96479b8"
            },
            "src/third_party/pyelftools": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-I/7p3IEvfP/gkes4kx18PvWwhAKilQKb67GXoW4zFB4=",
                "url": "https://chromium.googlesource.com/chromiumos/third_party/pyelftools.git",
                "rev": "19b3e610c86fcadb837d252c794cb5e8008826ae"
            },
            "src/third_party/quic_trace/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-Nf9ZDLcE1JunhbpEMHhrY2ROnbgrvVZoRkPwWq1DU0g=",
                "url": "https://chromium.googlesource.com/external/github.com/google/quic-trace.git",
                "rev": "caa0a6eaba816ecb737f9a70782b7c80b8ac8dbc"
            },
            "src/third_party/pywebsocket3/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-WEqqu2/7fLqcf/2/IcD7/FewRSZ6jTgVlVBvnihthYQ=",
                "url": "https://chromium.googlesource.com/external/github.com/GoogleChromeLabs/pywebsocket3.git",
                "rev": "50602a14f1b6da17e0b619833a13addc6ea78bc2"
            },
            "src/third_party/re2/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-zrVjt229SfVipS05zF5glhd7/D1zpojDyiSnYZpGok4=",
                "url": "https://chromium.googlesource.com/external/github.com/google/re2.git",
                "rev": "26f7d889e1f7e75e95e65490086538edf9f5275c"
            },
            "src/third_party/ruy/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-Zi3A49YqDE5S4iSpw9t9kTzitbQbcslm1zsepWX5cbw=",
                "url": "https://chromium.googlesource.com/external/github.com/google/ruy.git",
                "rev": "6ffa93a89376555b09134c59b84d8f5e9cfc6ce6"
            },
            "src/third_party/skia": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-0rjCxtgv+PuiBAIw82fw2NJw4G+fcuig4n1mYoP2pmQ=",
                "url": "https://skia.googlesource.com/skia.git",
                "rev": "fcd1b7521805ab1cde2947be6118f329e4ace14d"
            },
            "src/third_party/smhasher/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-RyC//me08hwGXRrWcK8GZ1uhIkBq4FByA7fHCVDsniw=",
                "url": "https://chromium.googlesource.com/external/smhasher.git",
                "rev": "e87738e57558e0ec472b2fc3a643b838e5b6e88f"
            },
            "src/third_party/snappy/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-5fV6NfO8vmqK+iCwpLtE2YjYOzjsshctauyjNIOxrH0=",
                "url": "https://chromium.googlesource.com/external/github.com/google/snappy.git",
                "rev": "c9f9edf6d75bb065fa47468bf035e051a57bec7c"
            },
            "src/third_party/sqlite/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-35rSG+ptFMC62FsprLvAqfXZknKu40Ee6H2qpAcA3wI=",
                "url": "https://chromium.googlesource.com/chromium/deps/sqlite.git",
                "rev": "b7e480172bb2411f9afedefdcc69a57a12f18b7b"
            },
            "src/third_party/swiftshader": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-r7u2WjgPvoVY9Oj2RVqfI/G6PFh/2gWNDVQ5R2qhtLU=",
                "url": "https://swiftshader.googlesource.com/SwiftShader.git",
                "rev": "7f4d495c89c200c1945cce5995d348dd41dadb5a"
            },
            "src/third_party/text-fragments-polyfill/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-4rW2u1cQAF4iPWHAt1FvVXIpz2pmI901rEPks/w/iFA=",
                "url": "https://chromium.googlesource.com/external/github.com/GoogleChromeLabs/text-fragments-polyfill.git",
                "rev": "c036420683f672d685e27415de0a5f5e85bdc23f"
            },
            "src/third_party/tflite/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-Mpofo5P6WrkA3hN+sjAhHG4GBQ71vEFnuxfdLRf5epw=",
                "url": "https://chromium.googlesource.com/external/github.com/tensorflow/tensorflow.git",
                "rev": "edf7215123c67d76199d099779137b974b6e1293"
            },
            "src/third_party/vulkan-deps": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-uJFrlLEjFJJSR0+eCtx7bpIC0z8NaHuk/uLeaFBLKKw=",
                "url": "https://chromium.googlesource.com/vulkan-deps",
                "rev": "7413048934e28b97ae00c37c419e576db8add866"
            },
            "src/third_party/vulkan-deps/glslang/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-CBA9LlD+Ttki3nc693MSmud0feafxi2/PC2YSn3BX2A=",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/glslang",
                "rev": "b0ed4788858157e271779a7726cccc1149a05407"
            },
            "src/third_party/vulkan-deps/spirv-cross/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-Wgpdjmes05dMeBr7mrv9UvpabdzJ9lTZ38eO/6Ps60E=",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/SPIRV-Cross",
                "rev": "37fee00a71b5a47247c1cf20256a3f794537c6c0"
            },
            "src/third_party/vulkan-deps/spirv-headers/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-yAzbZHLtx+XP34Umkp0CuP/vn7JrW4VPVgVOFi50KHM=",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/SPIRV-Headers",
                "rev": "79743b899fde5c954897b2694291002626358fac"
            },
            "src/third_party/vulkan-deps/spirv-tools/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-/J1eb6ZYSoYZDE8AR/CeRc5GoQEyIlYiHC+JKvi5I5w=",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/SPIRV-Tools",
                "rev": "1bc0e6f59abc3c9cd75f93baef47e9612a448045"
            },
            "src/third_party/vulkan-deps/vulkan-headers/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-GAl5xC7PCGsVHHUhLkIuwj2zlTCgyNWaBjk6I0qDkhQ=",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-Headers",
                "rev": "7e691380166fb1cd9b193ac9db896bc23a4ea9ad"
            },
            "src/third_party/vulkan-deps/vulkan-loader/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-6iJxI1SwOjN26dyVs6JSYWODZbA25G/M2ZabGLCGRIo=",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-Loader",
                "rev": "9e33cfc66f88c863e9a13492b8045ca28118ebbf"
            },
            "src/third_party/vulkan-deps/vulkan-tools/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-r2VdG1o2JXbtN14nGjeZ+Ru4Cn1Za/eQd3NU2O6CnkA=",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-Tools",
                "rev": "3a19c1973f0e4732b8f3746593aee2ac425ecb78"
            },
            "src/third_party/vulkan-deps/vulkan-utility-libraries/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-Zz8r7zHe3MaEzMIyVx6Walsd5QicQ3MxEAunmgWHZcI=",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-Utility-Libraries",
                "rev": "2169a0849e3df4e2133b728dec67d3b16bd30263"
            },
            "src/third_party/vulkan-deps/vulkan-validation-layers/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-AUeSb7/sgTZGg/VEkdvGDnj88gqjE1t6qGY0oTAcYsY=",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-ValidationLayers",
                "rev": "d82e3c2f34dcf3b849fd7ed6d932ff61dcd838c5"
            },
            "src/third_party/vulkan_memory_allocator": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-FdRPPdLZHj3RX3YzcmF58JJuIqeWQV3TDiiXPEW2lsc=",
                "url": "https://chromium.googlesource.com/external/github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator.git",
                "rev": "e87036508bb156f9986ea959323de1869e328f58"
            },
            "src/third_party/wayland/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-0ICSMZhnsLqMNfqSGjqM3p4ssxptkBtt7EMCpxknW4A=",
                "url": "https://chromium.googlesource.com/external/anongit.freedesktop.org/git/wayland/wayland.git",
                "rev": "3fda2fbf51db54398c0155facee82cc9533958a2"
            },
            "src/third_party/wayland-protocols/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-3QK+ZN6IFUFkDxySSoQwP1J3JnTlD7JPaUk6Tr/d/k4=",
                "url": "https://chromium.googlesource.com/external/anongit.freedesktop.org/git/wayland/wayland-protocols.git",
                "rev": "4624cfaaf563cd7be5e2e2087c8de6d3a48ea867"
            },
            "src/third_party/wayland-protocols/kde": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-Dmcp/2ms/k7NxPPmPkp0YNfM9z2Es1ZO0uX10bc7N2Y=",
                "url": "https://chromium.googlesource.com/external/github.com/KDE/plasma-wayland-protocols.git",
                "rev": "0b07950714b3a36c9b9f71fc025fc7783e82926e"
            },
            "src/third_party/wayland-protocols/gtk": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-75XNnLkF5Lt1LMRGT+T61k0/mLa3kkynfN+QWvZ0LiQ=",
                "url": "https://chromium.googlesource.com/external/github.com/GNOME/gtk.git",
                "rev": "40ebed3a03aef096addc0af09fec4ec529d882a0"
            },
            "src/third_party/webdriver/pylib": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-WIqWXIKVgElgg8P8laLAlUrgwodGdeVcwohZxnPKedw=",
                "url": "https://chromium.googlesource.com/external/github.com/SeleniumHQ/selenium/py.git",
                "rev": "fc5e7e70c098bfb189a9a74746809ad3c5c34e04"
            },
            "src/third_party/webgl/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-dubsIPZKBGOzANGvMtQxFKFIHr0laDUGpzgRyEOjHMU=",
                "url": "https://chromium.googlesource.com/external/khronosgroup/webgl.git",
                "rev": "f4bf599a8b575df685c31d9c4729a70a04e377ed"
            },
            "src/third_party/webgpu-cts/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-vkwuibUzHacAh5x/g05cGR+UohZmcATysnnFfldM2zA=",
                "url": "https://chromium.googlesource.com/external/github.com/gpuweb/cts.git",
                "rev": "609645eb5b272668cbfb120d1aa9549eee86e02d"
            },
            "src/third_party/webrtc": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-AYiJ8pt56Wd54MHlnjPnHf5PhKSi9CYoNIk3ASMYQXw=",
                "url": "https://webrtc.googlesource.com/src.git",
                "rev": "bce7ce7ba054ac0e79fed49b84ef52fb24c31778"
            },
            "src/third_party/wuffs/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-HP8Vf1C9DuA9H+busf3lFoF9SsYqviLKv0l73CxmNEI=",
                "url": "https://skia.googlesource.com/external/github.com/google/wuffs-mirror-release-c.git",
                "rev": "fe9d08f2b6e80af691bfb1a718e144c49a1b9eba"
            },
            "src/third_party/weston/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-y2srFaPUOoB2umzpo4+hFfhNlqXM2AoMGOpUy/ZSacg=",
                "url": "https://chromium.googlesource.com/external/anongit.freedesktop.org/git/wayland/weston.git",
                "rev": "ccf29cb237c3ed09c5f370f35239c93d07abfdd7"
            },
            "src/third_party/xdg-utils": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-t3uV9JkkQQIwmezzSoEdTMLSizZdLQB7eLKTRQGH4kQ=",
                "url": "https://chromium.googlesource.com/chromium/deps/xdg-utils.git",
                "rev": "d80274d5869b17b8c9067a1022e4416ee7ed5e0d"
            },
            "src/third_party/xnnpack/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-s9Avx9o+1igKulOpKhtbbkoINuh1wNercPszRaA4TZM=",
                "url": "https://chromium.googlesource.com/external/github.com/google/XNNPACK.git",
                "rev": "bbbaa7352a3ea729987d3e654d37be93e8009691"
            },
            "src/tools/page_cycler/acid3": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-s/49EaYQRsyxuLejXc1zGDYTD7uO0ddaQIJBP50Bvw0=",
                "url": "https://chromium.googlesource.com/chromium/deps/acid3.git",
                "rev": "a926d0a32e02c4c03ae95bb798e6c780e0e184ba"
            },
            "src/third_party/zstd/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-95OOpYKGve+YWzqqguQIg1emTOAuaGyYpWxrWVDOKAQ=",
                "url": "https://chromium.googlesource.com/external/github.com/facebook/zstd.git",
                "rev": "cdceb0fce59785c841bf697e00067163106064e1"
            },
            "src/v8": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-hJKPhOEF2MKmTsr4TpbTDFs7cTYcYkf0y7LXSAWMjOE=",
                "url": "https://chromium.googlesource.com/v8/v8.git",
                "rev": "3eb7d73cbd4266dcc250a7b4d0099d0946ec1138"
            },
            "src/third_party/nan": {
                "fetcher": "fetchFromGitHub",
                "hash": "sha256-cwti+BWmF/l/dqa/cN0C587EK4WwRWcWy6gjFVkaMTg=",
                "owner": "nodejs",
                "repo": "nan",
                "rev": "e14bdcd1f72d62bca1d541b66da43130384ec213"
            },
            "src/third_party/electron_node": {
                "fetcher": "fetchFromGitHub",
                "hash": "sha256-feGhB6o14/qgSQvhJ5eMD74KqWrlOoTpaGAlCs486IU=",
                "owner": "nodejs",
                "repo": "node",
                "rev": "v18.18.0"
            },
            "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/ReactiveObjC": {
                "fetcher": "fetchFromGitHub",
                "hash": "sha256-/MCqC1oFe3N9TsmfVLgl+deR6qHU6ZFQQjudb9zB5Mo=",
                "owner": "ReactiveCocoa",
                "repo": "ReactiveObjC",
                "rev": "74ab5baccc6f7202c8ac69a8d1e152c29dc1ea76"
            },
            "src/third_party/squirrel.mac/vendor/Mantle": {
                "fetcher": "fetchFromGitHub",
                "hash": "sha256-ogFkMJybf2Ue606ojXJu6Gy5aXSi1bSKm60qcTAIaPk=",
                "owner": "Mantle",
                "repo": "Mantle",
                "rev": "78d3966b3c331292ea29ec38661b25df0a245948"
            }
        },
        "version": "28.0.0-nightly.20231009",
        "modules": "119",
        "chrome": "119.0.6045.0",
        "node": "18.18.0",
        "chromium": {
            "version": "119.0.6045.0",
            "deps": {
                "gn": {
                    "version": "2023-09-12",
                    "url": "https://gn.googlesource.com/gn",
                    "rev": "991530ce394efb58fcd848195469022fa17ae126",
                    "sha256": "1zpbaspb2mncbsabps8n1iwzc67nhr79ndc9dnqxx1w1qfvaldg2"
                }
            }
        },
        "chromium_npm_hash": "sha256-10OGEsA0BDrkbTeIbdXLYRyKNwVsb/tP2ryBBuhi+m8=",
        "electron_yarn_hash": "1akq5cxcy7fpn4m5qk5kx94vy30z0ybx6ka5qp8an0p33yx9wg8z"
    },
    "27": {
        "deps": {
            "src/electron": {
                "fetcher": "fetchFromGitHub",
                "hash": "sha256-UIOHCvqMXuCCrduDo6tnxc6qJuHw2LX4Kgmiu/geiR8=",
                "owner": "electron",
                "repo": "electron",
                "rev": "v27.0.0"
            },
            "src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-dT23fhZ9RDY2j7YChaK/hUePkHULTXoXyHNpldmh4Gw=",
                "url": "https://chromium.googlesource.com/chromium/src.git",
                "rev": "118.0.5993.54",
                "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; "
            },
            "src/third_party/clang-format/script": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-7VvofDDQe+SoMRBfVk26q+C+OPyOE7QH35wVWkfDKxs=",
                "url": "https://chromium.googlesource.com/external/github.com/llvm/llvm-project/clang/tools/clang-format.git",
                "rev": "e5337933f2951cacd3aeacd238ce4578163ca0b9"
            },
            "src/third_party/libc++/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-YP1LAUaV8epDAsd9LOovdXUyzpaLgffOJcGM6VmTaKc=",
                "url": "https://chromium.googlesource.com/external/github.com/llvm/llvm-project/libcxx.git",
                "rev": "84fb809dd6dae36d556dc0bb702c6cc2ce9d4b80"
            },
            "src/third_party/libc++abi/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-CBUw50T/jFMXU0cR+BQH6JyEY3mHamLM6kA8YdvI24Q=",
                "url": "https://chromium.googlesource.com/external/github.com/llvm/llvm-project/libcxxabi.git",
                "rev": "331847d7a5e6f8706689cf5d468e6e58c868fa10"
            },
            "src/third_party/libunwind/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-rqmY4JNm4zuYqXs7o+1QhNnaNX4Cmt7PTJMGploHPnY=",
                "url": "https://chromium.googlesource.com/external/github.com/llvm/llvm-project/libunwind.git",
                "rev": "a321409e66c212098e755cfae1a978bbcff1ccbb"
            },
            "src/chrome/test/data/perf/canvas_bench": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-svOuyBGKloBLM11xLlWCDsB4PpRjdKTBdW2UEW4JQjM=",
                "url": "https://chromium.googlesource.com/chromium/canvas_bench.git",
                "rev": "a7b40ea5ae0239517d78845a5fc9b12976bfc732"
            },
            "src/chrome/test/data/perf/frame_rate/content": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-t4kcuvH0rkPBkcdiMsoNQaRwU09eU+oSvyHDiAHrKXo=",
                "url": "https://chromium.googlesource.com/chromium/frame_rate/content.git",
                "rev": "c10272c88463efeef6bb19c9ec07c42bc8fe22b9"
            },
            "src/chrome/test/data/xr/webvr_info": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-BsAPwc4oEWri0TlqhyxqFNqKdfgVSrB0vQyISmYY4eg=",
                "url": "https://chromium.googlesource.com/external/github.com/toji/webvr.info.git",
                "rev": "c58ae99b9ff9e2aa4c524633519570bf33536248"
            },
            "src/docs/website": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-6/LSJGUVZuJe1WIBJEJO/dXZYnsby+X3EzeBbvWjUZU=",
                "url": "https://chromium.googlesource.com/website.git",
                "rev": "243c1406199960e001e1dceccafc6fc2db6897f9"
            },
            "src/media/cdm/api": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-6J6aSYW0or99VAgMNJJOdJqMJspoG7w1HxDN50MV5bw=",
                "url": "https://chromium.googlesource.com/chromium/cdm.git",
                "rev": "fef0b5aa1bd31efb88dfab804bdbe614f3d54f28"
            },
            "src/net/third_party/quiche/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-hB3gUqi/9SI9PGNkXNpli/TifI1kJEBScqRFIw7hm4c=",
                "url": "https://quiche.googlesource.com/quiche.git",
                "rev": "7d201495d8a5ef115787765fb12af0d5575281c1"
            },
            "src/third_party/angle": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-It05E3+qG17dEbhbaX/VQJaydWOQ1mpsj95dT5IJkgo=",
                "url": "https://chromium.googlesource.com/angle/angle.git",
                "rev": "05f45adc147393562b518ca1f82a3ccba7ee40f7"
            },
            "src/third_party/angle/third_party/glmark2/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-L7+zWM0qn8WFhmON7DGvarTsN1YHt1sn5+hazTOZrrk=",
                "url": "https://chromium.googlesource.com/external/github.com/glmark2/glmark2",
                "rev": "ca8de51fedb70bace5351c6b002eb952c747e889"
            },
            "src/third_party/angle/third_party/rapidjson/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-btUl1a/B0sXwf/+hyvCvVJjWqIkXfVYCpHm3TeBuOxk=",
                "url": "https://chromium.googlesource.com/external/github.com/Tencent/rapidjson",
                "rev": "781a4e667d84aeedbeb8184b7b62425ea66ec59f"
            },
            "src/third_party/angle/third_party/VK-GL-CTS/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-LWGll3KiMYndiLZBizhN+mzELjYpSxvtIctH+LO+20Q=",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/VK-GL-CTS",
                "rev": "385ae8bed1f99e497cdf2f3a5640905b90e69292"
            },
            "src/third_party/anonymous_tokens/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-TcNIocV0p53NJCudvy8wf+fIPIP2tnkoBf1F7mEBFLs=",
                "url": "https://chromium.googlesource.com/external/github.com/google/anonymous-tokens.git",
                "rev": "8c8d20953d502db31fec2353b199e6c22ef0236e"
            },
            "src/third_party/content_analysis_sdk/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-auHBX00DSvyMyhEsZGkpKh9KOO2RcaeP9PK6kmmMYls=",
                "url": "https://chromium.googlesource.com/external/github.com/chromium/content_analysis_sdk.git",
                "rev": "8d5118720805fdce0dd3ee2999c964501de4532c"
            },
            "src/third_party/dav1d/libdav1d": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-KSo2s3M3S13gY84NlAdnPsjoKfJZy7ipTlWSvUHD9Ak=",
                "url": "https://chromium.googlesource.com/external/github.com/videolan/dav1d.git",
                "rev": "f8ae94eca0f53502a2cddd29a263c1edea4822a0"
            },
            "src/third_party/dawn": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-iCCvQVwf+MLZR6Zz/ML7H9uQ0FiSSCw1gZZeGC6zRLo=",
                "url": "https://dawn.googlesource.com/dawn.git",
                "rev": "ec2cc40563739fa6e6ff0e12c58ac0fdbe0a132f"
            },
            "src/third_party/dawn/third_party/glfw": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-TwAPRjQxIz3J+zbNxzCp5Tek7MwisxdekMpY5QGsKyg=",
                "url": "https://chromium.googlesource.com/external/github.com/glfw/glfw",
                "rev": "62e175ef9fae75335575964c845a302447c012c7"
            },
            "src/third_party/dawn/third_party/dxc": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-u29t+pF7aRfhRmi36YyEPcQU7gIDqsjrf38+C0YIpFk=",
                "url": "https://chromium.googlesource.com/external/github.com/microsoft/DirectXShaderCompiler",
                "rev": "50c4c887f1ccfa1a4bfb158b7dbc93058659ed01"
            },
            "src/third_party/dawn/third_party/dxheaders": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-0Miw1Cy/jmOo7bLFBOHuTRDV04cSeyvUEyPkpVsX9DA=",
                "url": "https://chromium.googlesource.com/external/github.com/microsoft/DirectX-Headers",
                "rev": "980971e835876dc0cde415e8f9bc646e64667bf7"
            },
            "src/third_party/dawn/third_party/khronos/OpenGL-Registry": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-K3PcRIiD3AmnbiSm5TwaLs4Gu9hxaN8Y91WMKK8pOXE=",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/OpenGL-Registry",
                "rev": "5bae8738b23d06968e7c3a41308568120943ae77"
            },
            "src/third_party/dawn/third_party/khronos/EGL-Registry": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-Z6DwLfgQ1wsJXz0KKJyVieOatnDmx3cs0qJ6IEgSq1A=",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/EGL-Registry",
                "rev": "7dea2ed79187cd13f76183c4b9100159b9e3e071"
            },
            "src/third_party/dawn/third_party/webgpu-cts": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-gbZpmcbqLisjLb6vnKKvHS6eRqjqvavvTRgxJsaE/RQ=",
                "url": "https://chromium.googlesource.com/external/github.com/gpuweb/cts",
                "rev": "5dfa3b88f0863c3949f713804e0461c9cc34a030"
            },
            "src/third_party/highway/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-kNb9UVcFq2BIf9nftUgN8ciFFCzRCou/sLwVf08jf3E=",
                "url": "https://chromium.googlesource.com/external/github.com/google/highway.git",
                "rev": "8f20644eca693cfb74aa795b0006b6779c370e7a"
            },
            "src/third_party/google_benchmark/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-h2ryAQAuHI54Cni88L85e7Np4KATGVTRdDcmUvCNeWc=",
                "url": "https://chromium.googlesource.com/external/github.com/google/benchmark.git",
                "rev": "b177433f3ee2513b1075140c723d73ab8901790f"
            },
            "src/third_party/boringssl/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-P0Aj2Puy6S1aRIHrAhmokiAmSmHfuWQR6UW/AbQFW+M=",
                "url": "https://boringssl.googlesource.com/boringssl.git",
                "rev": "85081c6b3c0b26129893c1bff6bfa42bc3ba2d2c"
            },
            "src/third_party/breakpad/breakpad": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-8AkC/8oX4OWAcV21laJ0AeMRB9G04rFc6UJFy7Wus4A=",
                "url": "https://chromium.googlesource.com/breakpad/breakpad.git",
                "rev": "8988364bcddd9b194b0bf931c10bc125987330ed"
            },
            "src/third_party/cast_core/public/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-AalRQhJmornCqmvE2+36J/3LubaA0jr6P1PXy32lX4I=",
                "url": "https://chromium.googlesource.com/cast_core/public",
                "rev": "71f51fd6fa45fac73848f65421081edd723297cd"
            },
            "src/third_party/catapult": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-AK85yVeCR3GKGtdW8G9Of+6UMJirJ9BNVyp9pffft7s=",
                "url": "https://chromium.googlesource.com/catapult.git",
                "rev": "f16ca3c78e46cefa982100444844da3fcb25390e"
            },
            "src/third_party/ced/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-ySG74Rj2i2c/PltEgHVEDq+N8yd9gZmxNktc56zIUiY=",
                "url": "https://chromium.googlesource.com/external/github.com/google/compact_enc_det.git",
                "rev": "ba412eaaacd3186085babcd901679a48863c7dd5"
            },
            "src/third_party/chromium-variations": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-2lP3uGdqIZY3DpxGzfDhR2dW+o3Arduaeu56Au7h/5Q=",
                "url": "https://chromium.googlesource.com/chromium-variations.git",
                "rev": "e0c145ca93c0439a65bcb1607e813edfbc97520b"
            },
            "src/third_party/cld_3/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-C3MOMBUy9jgkT9BAi/Fgm2UH4cxRuwSBEcRl3hzM2Ss=",
                "url": "https://chromium.googlesource.com/external/github.com/google/cld_3.git",
                "rev": "b48dc46512566f5a2d41118c8c1116c4f96dc661"
            },
            "src/third_party/colorama/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-6ZTdPYSHdQOLYMSnE+Tp7PgsVTs3U2awGu9Qb4Rg/tk=",
                "url": "https://chromium.googlesource.com/external/colorama.git",
                "rev": "3de9f013df4b470069d03d250224062e8cf15c49"
            },
            "src/third_party/cpu_features/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-E8LoVzhe+TAmARWZTSuINlsVhzpUJMxPPCGe/dHZcyA=",
                "url": "https://chromium.googlesource.com/external/github.com/google/cpu_features.git",
                "rev": "936b9ab5515dead115606559502e3864958f7f6e"
            },
            "src/third_party/cpuinfo/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-oZjA2cMQMyhFcI+m6eOmdZ9A1oPAbyISeLxNyaoGivk=",
                "url": "https://chromium.googlesource.com/external/github.com/pytorch/cpuinfo.git",
                "rev": "c13d0bbb266d200a13532b5915d704c30d21081b"
            },
            "src/third_party/crc32c/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-urg0bmnfMfHagLPELp4WrNCz1gBZ6DFOWpDue1KsMtc=",
                "url": "https://chromium.googlesource.com/external/github.com/google/crc32c.git",
                "rev": "fa5ade41ee480003d9c5af6f43567ba22e4e17e6"
            },
            "src/third_party/cros_system_api": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-wq7fJVNRSiyaADrCYB0TEmWQ//BJg4GYiHZNtMb1QlI=",
                "url": "https://chromium.googlesource.com/chromiumos/platform2/system_api.git",
                "rev": "81ac4449008dffea00e4e8f251f87fabc5abe0d3"
            },
            "src/third_party/crossbench": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-s/+y5bMj+CRnljFZ5aWKirPCsRUjckLOZ5F65WnPYSY=",
                "url": "https://chromium.googlesource.com/crossbench.git",
                "rev": "06981428c28d66678ebec13ca1fac3785cf51bb1"
            },
            "src/third_party/depot_tools": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-EXxlQGA7qwjuZ2Qg/rZinkllkdfCbKXz8c4JJEr4mtU=",
                "url": "https://chromium.googlesource.com/chromium/tools/depot_tools.git",
                "rev": "7e251262409b3401809e57c5314dd158210355b8"
            },
            "src/third_party/devtools-frontend/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-D3W8U19i5pHWPLviMKbpzhiDoF6A0+tClYJcZWdbTqk=",
                "url": "https://chromium.googlesource.com/devtools/devtools-frontend",
                "rev": "bcf0ed097be848d234fb5290c1e4d69672dc5405"
            },
            "src/third_party/dom_distiller_js/dist": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-yuEBD2XQlV3FGI/i7lTmJbCqzeBiuG1Qow8wvsppGJw=",
                "url": "https://chromium.googlesource.com/chromium/dom-distiller/dist.git",
                "rev": "199de96b345ada7c6e7e6ba3d2fa7a6911b8767d"
            },
            "src/third_party/eigen3/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-c/4bf5+sJEgsKOJ34wPDNm1+6QUzETZZr/nE4SG5nKA=",
                "url": "https://chromium.googlesource.com/external/gitlab.com/libeigen/eigen.git",
                "rev": "66e8f38891841bf88ee976a316c0c78a52f0cee5"
            },
            "src/third_party/farmhash/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-5n58VEUxa/K//jAfZqG4cXyfxrp50ogWDNYcgiXVHdc=",
                "url": "https://chromium.googlesource.com/external/github.com/google/farmhash.git",
                "rev": "816a4ae622e964763ca0862d9dbd19324a1eaf45"
            },
            "src/third_party/ffmpeg": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-uRgHTVaCAEaoqY20SmePQbApPmjimgggm5922KKfnbc=",
                "url": "https://chromium.googlesource.com/chromium/third_party/ffmpeg.git",
                "rev": "0ba37733400593b162e5ae9ff26b384cff49c250"
            },
            "src/third_party/flac": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-gvTFPNOlBfozptaH7lTb9iD/09AmpdT3kCl9ClszjEs=",
                "url": "https://chromium.googlesource.com/chromium/deps/flac.git",
                "rev": "689da3a7ed50af7448c3f1961d1791c7c1d9c85c"
            },
            "src/third_party/flatbuffers/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-yibx1WMAwNajROMGVqox3naMU09RSayxUaTCJ860euo=",
                "url": "https://chromium.googlesource.com/external/github.com/google/flatbuffers.git",
                "rev": "28861d1d7d5ec6ce34d4bbdc10bec4aace341167"
            },
            "src/third_party/fontconfig/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-7PFmgr/+KNEYxCMuxMD2Zi9Ydcbp88IU7exr55a392Q=",
                "url": "https://chromium.googlesource.com/external/fontconfig.git",
                "rev": "2fb3419a92156569bc1ec707401258c922cd0d99"
            },
            "src/third_party/fp16/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-m2d9bqZoGWzuUPGkd29MsrdscnJRtuIkLIMp3fMmtRY=",
                "url": "https://chromium.googlesource.com/external/github.com/Maratyszcza/FP16.git",
                "rev": "0a92994d729ff76a58f692d3028ca1b64b145d91"
            },
            "src/third_party/gemmlowp/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-O5wD8wxgis0qYMaY+xZ21GBDVQFphMRvInCOswS6inA=",
                "url": "https://chromium.googlesource.com/external/github.com/google/gemmlowp.git",
                "rev": "13d57703abca3005d97b19df1f2db731607a7dc2"
            },
            "src/third_party/grpc/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-64JEVCx/PCM0dvv7kAQvSjLc0QbRAZVBDzwD/FAV6T8=",
                "url": "https://chromium.googlesource.com/external/github.com/grpc/grpc.git",
                "rev": "822dab21d9995c5cf942476b35ca12a1aa9d2737"
            },
            "src/third_party/freetype/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-RRieGqEeAk5AYzJqPRpF25FmxMpEYwR7AQWLzXkED50=",
                "url": "https://chromium.googlesource.com/chromium/src/third_party/freetype2.git",
                "rev": "45903920b984540bb629bc89f4c010159c23a89a"
            },
            "src/third_party/freetype-testing/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-2aHPchIK5Oce5+XxdXVCC+8EM6i0XT0rFbjSIVa2L1A=",
                "url": "https://chromium.googlesource.com/external/github.com/freetype/freetype2-testing.git",
                "rev": "7a69b1a2b028476f840ab7d4a2ffdfe4eb2c389f"
            },
            "src/third_party/fxdiv/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-LjX5kivfHbqCIA5pF9qUvswG1gjOFo3CMpX0VR+Cn38=",
                "url": "https://chromium.googlesource.com/external/github.com/Maratyszcza/FXdiv.git",
                "rev": "63058eff77e11aa15bf531df5dd34395ec3017c8"
            },
            "src/third_party/harfbuzz-ng/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-+fClyD9Rsge9qdGF8WCv8taLTWNL8iManpXZUzDL2LM=",
                "url": "https://chromium.googlesource.com/external/github.com/harfbuzz/harfbuzz.git",
                "rev": "db700b5670d9475cc8ed4880cc9447b232c5e432"
            },
            "src/third_party/emoji-segmenter/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-oT9mAKoKnrsFsBAeTRfPOXM76HRQQabFAlPpfKUGFhs=",
                "url": "https://chromium.googlesource.com/external/github.com/google/emoji-segmenter.git",
                "rev": "9ba6d25d0d9313569665d4a9d2b34f0f39f9a50e"
            },
            "src/third_party/ots/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-kiUXrXsaGOzPkKh0dVmU1I13WHt0Stzj7QLMqHN9FbU=",
                "url": "https://chromium.googlesource.com/external/github.com/khaledhosny/ots.git",
                "rev": "46bea9879127d0ff1c6601b078e2ce98e83fcd33"
            },
            "src/third_party/libgav1/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-dT8/Mdit3Qc5Sno6DYKv1qSNr+6Lhiy24ZNNBKoVq8I=",
                "url": "https://chromium.googlesource.com/codecs/libgav1.git",
                "rev": "df0023cc95b8e606a2fd243522d823401ef86637"
            },
            "src/third_party/googletest/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-VYRjcM3dDY2FarviXyFMgSkXCqKfWXwtGAj2Msgm7zg=",
                "url": "https://chromium.googlesource.com/external/github.com/google/googletest.git",
                "rev": "af29db7ec28d6df1c7f0f745186884091e602e07"
            },
            "src/third_party/hunspell_dictionaries": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-67mvpJRFFa9eMfyqFMURlbxOaTJBICnk+gl0b0mEHl8=",
                "url": "https://chromium.googlesource.com/chromium/deps/hunspell_dictionaries.git",
                "rev": "41cdffd71c9948f63c7ad36e1fb0ff519aa7a37e"
            },
            "src/third_party/icu": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-6do7X9xUCMe2mFQoffazdC5W9UJdHp424QEThqX6P48=",
                "url": "https://chromium.googlesource.com/chromium/deps/icu.git",
                "rev": "985b9a6f70e13f3db741fed121e4dcc3046ad494"
            },
            "src/third_party/jsoncpp/source": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-bSLNcoYBz3QCt5VuTR056V9mU2PmBuYBa0W6hFg2m8Q=",
                "url": "https://chromium.googlesource.com/external/github.com/open-source-parsers/jsoncpp.git",
                "rev": "42e892d96e47b1f6e29844cc705e148ec4856448"
            },
            "src/third_party/leveldatabase/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-TTX2FrmcWsgqrh4uzqMyGnnnG51cVC2ILfdLxD65MLY=",
                "url": "https://chromium.googlesource.com/external/leveldb.git",
                "rev": "068d5ee1a3ac40dabd00d211d5013af44be55bea"
            },
            "src/third_party/libFuzzer/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-Zp8Ea/7GwmEl964MEIk3UM6IR5+FtUz8InlqZaOniDA=",
                "url": "https://chromium.googlesource.com/external/github.com/llvm/llvm-project/compiler-rt/lib/fuzzer.git",
                "rev": "26cc39e59b2bf5cbc20486296248a842c536878d"
            },
            "src/third_party/fuzztest/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-tVtrSbLxnHrbh027cafNbqkfjq/afQxw57rW9yGsRe0=",
                "url": "https://chromium.googlesource.com/external/github.com/google/fuzztest.git",
                "rev": "25f44f341f701eccc29d22f69313a54363c6099b"
            },
            "src/third_party/libaddressinput/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-xvUUQSPrvqUp5DI9AqlRTWurwDW087c6v4RvI+4sfOQ=",
                "url": "https://chromium.googlesource.com/external/libaddressinput.git",
                "rev": "e8712e415627f22d0b00ebee8db99547077f39bd"
            },
            "src/third_party/libaom/source/libaom": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-Z8td6FIvHibTQsB6x/A/69xduogj2b2lteiQB6l56vE=",
                "url": "https://aomedia.googlesource.com/aom.git",
                "rev": "5f8db64abce68a3698fb732697ae50880bc9cac4"
            },
            "src/third_party/libavif/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-3zNhKl8REWsRlblXIFD7zn7qvrc/pa4wHZI0oEc3pKE=",
                "url": "https://chromium.googlesource.com/external/github.com/AOMediaCodec/libavif.git",
                "rev": "d1c26facaf5a8a97919ceee06814d05d10e25622"
            },
            "src/third_party/libavifinfo/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-yTv1AGtWfxXcywZycpsQBkBRLwuUJMPFKtpj7nrsc4A=",
                "url": "https://aomedia.googlesource.com/libavifinfo.git",
                "rev": "707919b2f8ac1920b2f7ae252c233f9c6dcf84e1"
            },
            "src/third_party/nearby/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-5d7c8WvkjmBuwcwqhxQf0wRE3qaF8fFsiqUE1sHh0nc=",
                "url": "https://chromium.googlesource.com/external/github.com/google/nearby-connections.git",
                "rev": "8725391822b8901784b379a4573ab8828e7091d3"
            },
            "src/third_party/beto-core/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-qgsPK7RyVqGRji0sTcMck1JqX9iCsYIExGoGwNZyVT0=",
                "url": "https://beto-core.googlesource.com/beto-core.git",
                "rev": "b902b346037ea3f4aadf8177021f6f917b16e648"
            },
            "src/third_party/securemessage/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-GS4ccnuiqxMs/LVYAtvSlVAYFp4a5GoZsxcriTX3k78=",
                "url": "https://chromium.googlesource.com/external/github.com/google/securemessage.git",
                "rev": "fa07beb12babc3b25e0c5b1f38c16aa8cb6b8f84"
            },
            "src/third_party/speedometer/v3.0": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-PqrwtPFU3TI840za3UU8p+t4ZdyX0l79esEA602Mbq0=",
                "url": "https://chromium.googlesource.com/external/github.com/WebKit/Speedometer.git",
                "rev": "5107c739c1b2a008e7293e3b489c4f80a8fb2e01"
            },
            "src/third_party/ukey2/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-aaLs6ZS+CdBlCJ6ZhsmdAPFxiBIij6oufsDcNeRSV1E=",
                "url": "https://chromium.googlesource.com/external/github.com/google/ukey2.git",
                "rev": "0275885d8e6038c39b8a8ca55e75d1d4d1727f47"
            },
            "src/third_party/cros-components/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-s8pfcu5SkxXFCat76TJaDi1NTTQckZ1F+T8URCxOUdI=",
                "url": "https://chromium.googlesource.com/external/google3/cros_components.git",
                "rev": "bf7aaccb73b26c11e8bf21cb7d90314338e1743f"
            },
            "src/third_party/libdrm/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-NUxS2rBJ0nFblvHRQUfKT933+DAws5RUTDb+RLxRF4M=",
                "url": "https://chromium.googlesource.com/chromiumos/third_party/libdrm.git",
                "rev": "98e1db501173303e58ef6a1def94ab7a2d84afc1"
            },
            "src/third_party/expat/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-FXTDGAK03jc2wvazhRKqtsFRKZUYS/9HLpZNp4JfZJI=",
                "url": "https://chromium.googlesource.com/external/github.com/libexpat/libexpat.git",
                "rev": "441f98d02deafd9b090aea568282b28f66a50e36"
            },
            "src/third_party/libipp/libipp": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-gxU92lHLd6uxO8T3QWhZIK0hGy97cki705DV0VimCPY=",
                "url": "https://chromium.googlesource.com/chromiumos/platform2/libipp.git",
                "rev": "2209bb84a8e122dab7c02fe66cc61a7b42873d7f"
            },
            "src/third_party/libjpeg_turbo": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-bcmp8RqQYp4lRI9NfdfYgrAJsDLecJEhgRu9oosB9lQ=",
                "url": "https://chromium.googlesource.com/chromium/deps/libjpeg_turbo.git",
                "rev": "30bdb85e302ecfc52593636b2f44af438e05e784"
            },
            "src/third_party/liblouis/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-EI/uaHXe0NlqdEw764q0SjerThYEVLRogUlmrsZwXnY=",
                "url": "https://chromium.googlesource.com/external/liblouis-github.git",
                "rev": "9700847afb92cb35969bdfcbbfbbb74b9c7b3376"
            },
            "src/third_party/libphonenumber/dist": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-3hSnTFTD3KAdbyxfKg12qbIYTmw6YlTCH64gMP/HUJo=",
                "url": "https://chromium.googlesource.com/external/libphonenumber.git",
                "rev": "140dfeb81b753388e8a672900fb7a971e9a0d362"
            },
            "src/third_party/libprotobuf-mutator/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-ZyPweW+V5foxFQwjjMLkaRUo+FNV+kEDGIH/4oRV614=",
                "url": "https://chromium.googlesource.com/external/github.com/google/libprotobuf-mutator.git",
                "rev": "a304ec48dcf15d942607032151f7e9ee504b5dcf"
            },
            "src/third_party/libsrtp": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-pfLFh2JGk/g0ZZxBKTaYW9/PBpkCm0rtJeyNePUMTTc=",
                "url": "https://chromium.googlesource.com/chromium/deps/libsrtp.git",
                "rev": "5b7c744eb8310250ccc534f3f86a2015b3887a0a"
            },
            "src/third_party/libsync/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-Mkl6C1LxF3RYLwYbxiSfoQPt8QKFwQWj/Ati2sNJ32E=",
                "url": "https://chromium.googlesource.com/aosp/platform/system/core/libsync.git",
                "rev": "f4f4387b6bf2387efbcfd1453af4892e8982faf6"
            },
            "src/third_party/libvpx/source/libvpx": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-5x0Sk8/DXaTCIydK79vWZgIx3IHeQbLUxoNyE7E+Sdo=",
                "url": "https://chromium.googlesource.com/webm/libvpx.git",
                "rev": "38a707faef72eeff89d669c553e7bfe9e08dba8f"
            },
            "src/third_party/libwebm/source": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-u/5nkJed0DzdhR5OLL2kIhZhOnrbyzL1Kx37vV/jcEo=",
                "url": "https://chromium.googlesource.com/webm/libwebm.git",
                "rev": "e4fbea0c9751ae8aa86629b197a28d8276a2b0da"
            },
            "src/third_party/libwebp/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-79peh0y3eeiW5cVQqVq0mUgDcGZ9BlY+OXkPZylKARY=",
                "url": "https://chromium.googlesource.com/webm/libwebp.git",
                "rev": "2af26267cdfcb63a88e5c74a85927a12d6ca1d76"
            },
            "src/third_party/libyuv": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-jxs9kHI40gRFhm9cU6uS1Rxj+LLUUqT9b3myihxgW7s=",
                "url": "https://chromium.googlesource.com/libyuv/libyuv.git",
                "rev": "04821d1e7d60845525e8db55c7bcd41ef5be9406"
            },
            "src/third_party/lss": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-hE8uZf9Fst66qJkoVYChiB8G41ie+k9M4X0W+5JUSdw=",
                "url": "https://chromium.googlesource.com/linux-syscall-support.git",
                "rev": "ce877209e11aa69dcfffbd53ef90ea1d07136521"
            },
            "src/third_party/material_color_utilities/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-oi28dWuTd6ijn/RKSPukDr5GSzYiCTM2klFb7WSMDHY=",
                "url": "https://chromium.googlesource.com/external/github.com/material-foundation/material-color-utilities.git",
                "rev": "234a000e507d586c20df6e3bf5b9e035bc5ce7b1"
            },
            "src/third_party/minigbm/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-9HwvjTETerbQ7YKXH9kUB2eWa8PxGWMAJfx1jAluhrs=",
                "url": "https://chromium.googlesource.com/chromiumos/platform/minigbm.git",
                "rev": "3018207f4d89395cc271278fb9a6558b660885f5"
            },
            "src/third_party/nasm": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-L+b3X3vsfpY6FSlIK/AHhxhmq2cXd50vND6uT6yn8Qs=",
                "url": "https://chromium.googlesource.com/chromium/deps/nasm.git",
                "rev": "7fc833e889d1afda72c06220e5bed8fb43b2e5ce"
            },
            "src/third_party/neon_2_sse/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-299ZptvdTmCnIuVVBkrpf5ZTxKPwgcGUob81tEI91F0=",
                "url": "https://chromium.googlesource.com/external/github.com/intel/ARM_NEON_2_x86_SSE.git",
                "rev": "a15b489e1222b2087007546b4912e21293ea86ff"
            },
            "src/third_party/openh264/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-J7Eqe2QevZh1xfap19W8AVCcwfRu7ztknnbKFJUAH1c=",
                "url": "https://chromium.googlesource.com/external/github.com/cisco/openh264",
                "rev": "09a4f3ec842a8932341b195c5b01e141c8a16eb7"
            },
            "src/third_party/openscreen/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-CtCGOoKbbyUGUHfqd7n3uPlv9GEExuYgMTCIaU+ypOA=",
                "url": "https://chromium.googlesource.com/openscreen",
                "rev": "fd0e81e558086c30fa91a4af89361cef8d1327e4"
            },
            "src/third_party/openscreen/src/third_party/tinycbor/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-fMKBFUSKmODQyg4hKIa1hwnEKIV6WBbY1Gb8DOSnaHA=",
                "url": "https://chromium.googlesource.com/external/github.com/intel/tinycbor.git",
                "rev": "d393c16f3eb30d0c47e6f9d92db62272f0ec4dc7"
            },
            "src/third_party/pdfium": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-9qxj8TgFVf64aFTx/DwkUVa41682OSfVnBj9eubMafs=",
                "url": "https://pdfium.googlesource.com/pdfium.git",
                "rev": "d7470394271b6a6856e28ec905b19a12100f2797"
            },
            "src/third_party/perfetto": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-/8WQO0r10Hz3yLNh1MtjE8rGfzbpDkUowA2OPwEuRvA=",
                "url": "https://android.googlesource.com/platform/external/perfetto.git",
                "rev": "43b72e3ce703b676c9c923b04540472d10790f56"
            },
            "src/third_party/pthreadpool/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-Pfvievhma1rOpbLdSrIX4KaZyRpdvrnjRzzPYl3fDQo=",
                "url": "https://chromium.googlesource.com/external/github.com/Maratyszcza/pthreadpool.git",
                "rev": "1787867f6183f056420e532eec640cba25efafea"
            },
            "src/third_party/pyelftools": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-I/7p3IEvfP/gkes4kx18PvWwhAKilQKb67GXoW4zFB4=",
                "url": "https://chromium.googlesource.com/chromiumos/third_party/pyelftools.git",
                "rev": "19b3e610c86fcadb837d252c794cb5e8008826ae"
            },
            "src/third_party/quic_trace/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-Nf9ZDLcE1JunhbpEMHhrY2ROnbgrvVZoRkPwWq1DU0g=",
                "url": "https://chromium.googlesource.com/external/github.com/google/quic-trace.git",
                "rev": "caa0a6eaba816ecb737f9a70782b7c80b8ac8dbc"
            },
            "src/third_party/pywebsocket3/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-WEqqu2/7fLqcf/2/IcD7/FewRSZ6jTgVlVBvnihthYQ=",
                "url": "https://chromium.googlesource.com/external/github.com/GoogleChromeLabs/pywebsocket3.git",
                "rev": "50602a14f1b6da17e0b619833a13addc6ea78bc2"
            },
            "src/third_party/re2/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-9V/Q5o24sL1TJUDNifUqpyrQ2zTSrhU0Bxo9qDwd0+4=",
                "url": "https://chromium.googlesource.com/external/github.com/google/re2.git",
                "rev": "87d09ef4f0307e53f1d3796843f4b90d41cfccaa"
            },
            "src/third_party/ruy/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-hNco0Jol4vQS1bkYiXaoZ1IPHwoRq3DD3iY0TeLygew=",
                "url": "https://chromium.googlesource.com/external/github.com/google/ruy.git",
                "rev": "c04e5e52ae6b144f74ac032652e3c538bda15c9b"
            },
            "src/third_party/skia": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-6JN+orZM77HNPDQ9VlZws1Zq8GuwDI83eXXauKknOTc=",
                "url": "https://skia.googlesource.com/skia.git",
                "rev": "bd56a010b6941116cd1900276bf5201f9a9c73da"
            },
            "src/third_party/smhasher/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-RyC//me08hwGXRrWcK8GZ1uhIkBq4FByA7fHCVDsniw=",
                "url": "https://chromium.googlesource.com/external/smhasher.git",
                "rev": "e87738e57558e0ec472b2fc3a643b838e5b6e88f"
            },
            "src/third_party/snappy/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-5fV6NfO8vmqK+iCwpLtE2YjYOzjsshctauyjNIOxrH0=",
                "url": "https://chromium.googlesource.com/external/github.com/google/snappy.git",
                "rev": "c9f9edf6d75bb065fa47468bf035e051a57bec7c"
            },
            "src/third_party/sqlite/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-35rSG+ptFMC62FsprLvAqfXZknKu40Ee6H2qpAcA3wI=",
                "url": "https://chromium.googlesource.com/chromium/deps/sqlite.git",
                "rev": "b7e480172bb2411f9afedefdcc69a57a12f18b7b"
            },
            "src/third_party/swiftshader": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-PCPb5opTATGCCQmw8TGF09TbLL8QES+So+yaL68H//I=",
                "url": "https://swiftshader.googlesource.com/SwiftShader.git",
                "rev": "32f9332d1d7aacbdba7c1aa5df894bb1890bb2cc"
            },
            "src/third_party/text-fragments-polyfill/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-4rW2u1cQAF4iPWHAt1FvVXIpz2pmI901rEPks/w/iFA=",
                "url": "https://chromium.googlesource.com/external/github.com/GoogleChromeLabs/text-fragments-polyfill.git",
                "rev": "c036420683f672d685e27415de0a5f5e85bdc23f"
            },
            "src/third_party/tflite/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-3gawK1S5+nr5yOAHgYozLWSoT1TbJmB6Md1fID6du9w=",
                "url": "https://chromium.googlesource.com/external/github.com/tensorflow/tensorflow.git",
                "rev": "91946956f81a2d9fd12a6d6baba20c997d3f8890"
            },
            "src/third_party/vulkan-deps": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-xYX77wsgG+2TzS0AinFJndnID5P3/anY4TPh3cjRaIY=",
                "url": "https://chromium.googlesource.com/vulkan-deps",
                "rev": "4b7a5f2a3522cbc4e4334cdc64bfaf3f832b89c3"
            },
            "src/third_party/vulkan-deps/glslang/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-Y9AmEtFPj+sp/a5YnHChqlqgW/1kdaJ1CEbBB5r2cuI=",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/glslang",
                "rev": "e3a711b6fc942307be7cb634698015dfd13c37fe"
            },
            "src/third_party/vulkan-deps/spirv-cross/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-I8RXVat6//rlpmZuuC99Ar/Rct6MFce4FGKgQA2gBj0=",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/SPIRV-Cross",
                "rev": "54997fb4bc3adeb47b9b9f7bb67f1c25eaca2204"
            },
            "src/third_party/vulkan-deps/spirv-headers/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-OqLxyrTzg1Q2zmQd0YalWtl7vX5lRJFmE2VH7fHC8/8=",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/SPIRV-Headers",
                "rev": "d790ced752b5bfc06b6988baadef6eb2d16bdf96"
            },
            "src/third_party/vulkan-deps/spirv-tools/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-wFdAzbOQdOqeuVaWl5036qkli1gkSiL5JHH82Z5cFL4=",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/SPIRV-Tools",
                "rev": "4c16c35b16bbd462a0e89707ebeecc0bce956b2f"
            },
            "src/third_party/vulkan-deps/vulkan-headers/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-9+tHkkHsP5ft6+tbofOYV1yBFDpFlJz4Q6YS8c6T5As=",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-Headers",
                "rev": "2634c969d7dc0e983f005f7f2e665cce8449efe6"
            },
            "src/third_party/vulkan-deps/vulkan-loader/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-q7/dYKQ3O0aSs326YbEeLlS+SciFWugBGm/G+b8RNd0=",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-Loader",
                "rev": "d34bfafff23602e857064bea6d99a35eb63f37f2"
            },
            "src/third_party/vulkan-deps/vulkan-tools/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-tcaJmosHwTo38keV5qkumkLB1o1qq8v2ZmSsi2zDGoE=",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-Tools",
                "rev": "389110e4600669d82bca042859fddf898387c0d2"
            },
            "src/third_party/vulkan-deps/vulkan-utility-libraries/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-7M47ZCbNwIppaotMfJTFTRsYNvSZNc0FUufoyXyUu/g=",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-Utility-Libraries",
                "rev": "dd26ae7065a9ed60c8ab517ed79bf7935394aec7"
            },
            "src/third_party/vulkan-deps/vulkan-validation-layers/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-lj6MIQctcK6gsJlLdLwQ9PHbiAtTbNIPinii8vGZdGk=",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-ValidationLayers",
                "rev": "b89f48ae89ec064c91e8b77468cebc18c3faa682"
            },
            "src/third_party/vulkan_memory_allocator": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-FdRPPdLZHj3RX3YzcmF58JJuIqeWQV3TDiiXPEW2lsc=",
                "url": "https://chromium.googlesource.com/external/github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator.git",
                "rev": "e87036508bb156f9986ea959323de1869e328f58"
            },
            "src/third_party/wayland/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-aVcy7bW1cqEKbowlVgfa9FI8/oG7k5CzPZbRl+cPcX8=",
                "url": "https://chromium.googlesource.com/external/anongit.freedesktop.org/git/wayland/wayland.git",
                "rev": "a8c7553ec9af6462474524fd2bb4e9a7dc7217dd"
            },
            "src/third_party/wayland-protocols/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-3QK+ZN6IFUFkDxySSoQwP1J3JnTlD7JPaUk6Tr/d/k4=",
                "url": "https://chromium.googlesource.com/external/anongit.freedesktop.org/git/wayland/wayland-protocols.git",
                "rev": "4624cfaaf563cd7be5e2e2087c8de6d3a48ea867"
            },
            "src/third_party/wayland-protocols/kde": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-Dmcp/2ms/k7NxPPmPkp0YNfM9z2Es1ZO0uX10bc7N2Y=",
                "url": "https://chromium.googlesource.com/external/github.com/KDE/plasma-wayland-protocols.git",
                "rev": "0b07950714b3a36c9b9f71fc025fc7783e82926e"
            },
            "src/third_party/wayland-protocols/gtk": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-75XNnLkF5Lt1LMRGT+T61k0/mLa3kkynfN+QWvZ0LiQ=",
                "url": "https://chromium.googlesource.com/external/github.com/GNOME/gtk.git",
                "rev": "40ebed3a03aef096addc0af09fec4ec529d882a0"
            },
            "src/third_party/webdriver/pylib": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-WIqWXIKVgElgg8P8laLAlUrgwodGdeVcwohZxnPKedw=",
                "url": "https://chromium.googlesource.com/external/github.com/SeleniumHQ/selenium/py.git",
                "rev": "fc5e7e70c098bfb189a9a74746809ad3c5c34e04"
            },
            "src/third_party/webgl/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-h4by/1pp9oQGetZNnc1Rt5X5izgQf8ZUZDfsxQacqC0=",
                "url": "https://chromium.googlesource.com/external/khronosgroup/webgl.git",
                "rev": "eab0468fc0405b21e59bea30a441d8e38c9db2b7"
            },
            "src/third_party/webgpu-cts/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-Wch3opAvU/6rJVptOKxOJssev8NhNpbYZddScTlzuMw=",
                "url": "https://chromium.googlesource.com/external/github.com/gpuweb/cts.git",
                "rev": "4c8d2f67ecd03fbd3cb4c517ef8461427b6d635d"
            },
            "src/third_party/webrtc": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-KpiNGAue945kGCuQYGhxiWVUFTE1tcntSAXBZdkrE9A=",
                "url": "https://webrtc.googlesource.com/src.git",
                "rev": "d8f2b0380b3ec980af35ce4b92ba6a211ec8c76d"
            },
            "src/third_party/wuffs/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-HP8Vf1C9DuA9H+busf3lFoF9SsYqviLKv0l73CxmNEI=",
                "url": "https://skia.googlesource.com/external/github.com/google/wuffs-mirror-release-c.git",
                "rev": "fe9d08f2b6e80af691bfb1a718e144c49a1b9eba"
            },
            "src/third_party/weston/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-sfJm1CBGXX13pFcqeOVPqWlXrUfwjRl+rYf2BoT8Bt8=",
                "url": "https://chromium.googlesource.com/external/anongit.freedesktop.org/git/wayland/weston.git",
                "rev": "775f8a1edf357f59e6b2e284297f396f4fac95a4"
            },
            "src/third_party/xdg-utils": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-t3uV9JkkQQIwmezzSoEdTMLSizZdLQB7eLKTRQGH4kQ=",
                "url": "https://chromium.googlesource.com/chromium/deps/xdg-utils.git",
                "rev": "d80274d5869b17b8c9067a1022e4416ee7ed5e0d"
            },
            "src/third_party/xnnpack/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-vsn3lrog5affus0qxc4TK2Z/tdd/E6hBYeUQRWoDZPQ=",
                "url": "https://chromium.googlesource.com/external/github.com/google/XNNPACK.git",
                "rev": "b9d4073a6913891ce9cbd8965c8d506075d2a45a"
            },
            "src/tools/page_cycler/acid3": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-s/49EaYQRsyxuLejXc1zGDYTD7uO0ddaQIJBP50Bvw0=",
                "url": "https://chromium.googlesource.com/chromium/deps/acid3.git",
                "rev": "a926d0a32e02c4c03ae95bb798e6c780e0e184ba"
            },
            "src/third_party/zstd/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-yzv/R/GnqlXLeAjBEIev+8uM7MC0HeK0MfppnMTJ7Eg=",
                "url": "https://chromium.googlesource.com/external/github.com/facebook/zstd.git",
                "rev": "25822342be59d831bad65426ae51f5cc22157b09"
            },
            "src/v8": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-+y24A6/c4tl4zu1GcxsiEWvAMMCsat7X0jl2XCmBX6g=",
                "url": "https://chromium.googlesource.com/v8/v8.git",
                "rev": "6b05d242aae3392bef6b86fbe44428126607b3d0"
            },
            "src/third_party/nan": {
                "fetcher": "fetchFromGitHub",
                "hash": "sha256-tur5CExvwuSmwqBwH9o8OZWzDuifRybjEb+4/tm6exk=",
                "owner": "nodejs",
                "repo": "nan",
                "rev": "16fa32231e2ccd89d2804b3f765319128b20c4ac"
            },
            "src/third_party/electron_node": {
                "fetcher": "fetchFromGitHub",
                "hash": "sha256-SI4qIix+sXWIS3WJyJoTdPb1cmSIhpLAmfa9iX/5Jlg=",
                "owner": "nodejs",
                "repo": "node",
                "rev": "v18.17.1"
            },
            "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/ReactiveObjC": {
                "fetcher": "fetchFromGitHub",
                "hash": "sha256-/MCqC1oFe3N9TsmfVLgl+deR6qHU6ZFQQjudb9zB5Mo=",
                "owner": "ReactiveCocoa",
                "repo": "ReactiveObjC",
                "rev": "74ab5baccc6f7202c8ac69a8d1e152c29dc1ea76"
            },
            "src/third_party/squirrel.mac/vendor/Mantle": {
                "fetcher": "fetchFromGitHub",
                "hash": "sha256-ogFkMJybf2Ue606ojXJu6Gy5aXSi1bSKm60qcTAIaPk=",
                "owner": "Mantle",
                "repo": "Mantle",
                "rev": "78d3966b3c331292ea29ec38661b25df0a245948"
            }
        },
        "version": "27.0.0",
        "modules": "118",
        "chrome": "118.0.5993.54",
        "node": "18.17.1",
        "chromium": {
            "version": "118.0.5993.54",
            "deps": {
                "gn": {
                    "version": "2023-08-10",
                    "url": "https://gn.googlesource.com/gn",
                    "rev": "cc56a0f98bb34accd5323316e0292575ff17a5d4",
                    "sha256": "1ly7z48v147bfdb1kqkbc98myxpgqq3g6vgr8bjx1ikrk17l82ab"
                }
            }
        },
        "electron_yarn_hash": "039zdwb38982h6qinhipja8abza33ihihb4i5fadpsgh0cl7ldsy",
        "chromium_npm_hash": "sha256-5cjqpYB45nw2gop54VP+tL7/0w63nQGfQ4x6a6KS7XQ="
    },
    "26": {
        "deps": {
            "src/electron": {
                "fetcher": "fetchFromGitHub",
                "hash": "sha256-deYr/VWVnnkLmotT5aqMomz7GzJlhKdkuxZhzj8guT0=",
                "owner": "electron",
                "repo": "electron",
                "rev": "v26.3.0"
            },
            "src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-yctASyLtsBAxK7S34wVJB64QKnQkV3jGXshKWVpMjVo=",
                "url": "https://chromium.googlesource.com/chromium/src.git",
                "rev": "116.0.5845.228",
                "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; "
            },
            "src/third_party/clang-format/script": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-IL6ReGM6+urkXfGYe1BBOv+0XgCZv5i3Lib1q9COhig=",
                "url": "https://chromium.googlesource.com/external/github.com/llvm/llvm-project/clang/tools/clang-format.git",
                "rev": "f97059df7f8b205064625cdb5f97b56668a125ef"
            },
            "src/buildtools/third_party/libc++/trunk": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-Sdhhr/tSo7B1tvFY7jFUw82pDrF0n5cEMq567WzD1uE=",
                "url": "https://chromium.googlesource.com/external/github.com/llvm/llvm-project/libcxx.git",
                "rev": "055b2e17ae4f0e2c025ad0c7508b01787df17758"
            },
            "src/buildtools/third_party/libc++abi/trunk": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-pZy10+P+RWGQavLqCI4M4bGHcxPnKulwC3WSE5lIXfU=",
                "url": "https://chromium.googlesource.com/external/github.com/llvm/llvm-project/libcxxabi.git",
                "rev": "8d21803b9076b16d46c32e2f10da191ee758520c"
            },
            "src/buildtools/third_party/libunwind/trunk": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-DVacn5wSGeXLfjEQoCo2qLySgzkA79cdWktDkZ2dLY8=",
                "url": "https://chromium.googlesource.com/external/github.com/llvm/llvm-project/libunwind.git",
                "rev": "b5a43ecdac82a248f8a700a68c722b4d98708377"
            },
            "src/chrome/test/data/perf/canvas_bench": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-svOuyBGKloBLM11xLlWCDsB4PpRjdKTBdW2UEW4JQjM=",
                "url": "https://chromium.googlesource.com/chromium/canvas_bench.git",
                "rev": "a7b40ea5ae0239517d78845a5fc9b12976bfc732"
            },
            "src/chrome/test/data/perf/frame_rate/content": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-t4kcuvH0rkPBkcdiMsoNQaRwU09eU+oSvyHDiAHrKXo=",
                "url": "https://chromium.googlesource.com/chromium/frame_rate/content.git",
                "rev": "c10272c88463efeef6bb19c9ec07c42bc8fe22b9"
            },
            "src/chrome/test/data/xr/webvr_info": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-BsAPwc4oEWri0TlqhyxqFNqKdfgVSrB0vQyISmYY4eg=",
                "url": "https://chromium.googlesource.com/external/github.com/toji/webvr.info.git",
                "rev": "c58ae99b9ff9e2aa4c524633519570bf33536248"
            },
            "src/docs/website": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-+iC1NPdw6LzzPbtLgO9ipvkeJjDAfBIODOtyIURlUX8=",
                "url": "https://chromium.googlesource.com/website.git",
                "rev": "715769197cbe967605f24842ffcfb733d31b40fd"
            },
            "src/media/cdm/api": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-6J6aSYW0or99VAgMNJJOdJqMJspoG7w1HxDN50MV5bw=",
                "url": "https://chromium.googlesource.com/chromium/cdm.git",
                "rev": "fef0b5aa1bd31efb88dfab804bdbe614f3d54f28"
            },
            "src/net/third_party/quiche/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-GMlLTzjU592zIc8hhFyAupY95+qR49r8x0q2l80XHDI=",
                "url": "https://quiche.googlesource.com/quiche.git",
                "rev": "037705cdfae29714daa24852021c2e5998a54446"
            },
            "src/third_party/angle": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-v4eIJssxzb2hE4NrKZMyhbzxwNc3koqcADVcBrw8iT8=",
                "url": "https://chromium.googlesource.com/angle/angle.git",
                "rev": "b48983ab8c74d2fcd9ef17c80727affb9e690c53"
            },
            "src/third_party/angle/third_party/glmark2/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-L7+zWM0qn8WFhmON7DGvarTsN1YHt1sn5+hazTOZrrk=",
                "url": "https://chromium.googlesource.com/external/github.com/glmark2/glmark2",
                "rev": "ca8de51fedb70bace5351c6b002eb952c747e889"
            },
            "src/third_party/angle/third_party/rapidjson/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-btUl1a/B0sXwf/+hyvCvVJjWqIkXfVYCpHm3TeBuOxk=",
                "url": "https://chromium.googlesource.com/external/github.com/Tencent/rapidjson",
                "rev": "781a4e667d84aeedbeb8184b7b62425ea66ec59f"
            },
            "src/third_party/angle/third_party/VK-GL-CTS/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-aiSGPLKRUErLohhLlcY/fWIJuUMzazDPIxiohiuCs6o=",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/VK-GL-CTS",
                "rev": "f29bd2feeafff80013d4b52a8abbc960cbbb7dbd"
            },
            "src/third_party/anonymous_tokens/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-TcNIocV0p53NJCudvy8wf+fIPIP2tnkoBf1F7mEBFLs=",
                "url": "https://chromium.googlesource.com/external/github.com/google/anonymous-tokens.git",
                "rev": "8c8d20953d502db31fec2353b199e6c22ef0236e"
            },
            "src/third_party/content_analysis_sdk/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-p4N3zAUoM/ApBlYvLsCcH9QLArz7T4+miDGVuTbrZEc=",
                "url": "https://chromium.googlesource.com/external/github.com/chromium/content_analysis_sdk.git",
                "rev": "b8744f00646d175057f0be7443c7c72a311b5381"
            },
            "src/third_party/dav1d/libdav1d": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-KSo2s3M3S13gY84NlAdnPsjoKfJZy7ipTlWSvUHD9Ak=",
                "url": "https://chromium.googlesource.com/external/github.com/videolan/dav1d.git",
                "rev": "f8ae94eca0f53502a2cddd29a263c1edea4822a0"
            },
            "src/third_party/dawn": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-rX6wJVOoTnkpniDWjwMoneszAokXXkdcpXNE/JXayEY=",
                "url": "https://dawn.googlesource.com/dawn.git",
                "rev": "5318d39e47819212769b974ed3a0b42e373df59e"
            },
            "src/third_party/dawn/third_party/glfw": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-TwAPRjQxIz3J+zbNxzCp5Tek7MwisxdekMpY5QGsKyg=",
                "url": "https://chromium.googlesource.com/external/github.com/glfw/glfw",
                "rev": "62e175ef9fae75335575964c845a302447c012c7"
            },
            "src/third_party/dawn/third_party/webgpu-cts": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-DoS9lSP9nVxeKpAtvWQbdYRSaiF0m+MXysfRC8bxqrY=",
                "url": "https://chromium.googlesource.com/external/github.com/gpuweb/cts",
                "rev": "b033a4f1ae4a0e19ae4d5563fae023001bbf570f"
            },
            "src/third_party/highway/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-kNb9UVcFq2BIf9nftUgN8ciFFCzRCou/sLwVf08jf3E=",
                "url": "https://chromium.googlesource.com/external/github.com/google/highway.git",
                "rev": "8f20644eca693cfb74aa795b0006b6779c370e7a"
            },
            "src/third_party/google_benchmark/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-h2ryAQAuHI54Cni88L85e7Np4KATGVTRdDcmUvCNeWc=",
                "url": "https://chromium.googlesource.com/external/github.com/google/benchmark.git",
                "rev": "b177433f3ee2513b1075140c723d73ab8901790f"
            },
            "src/third_party/boringssl/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-ZPao/g4Tqc6s/ZLDe3FDuw8rmO0ON07/t7y1c/C2bAs=",
                "url": "https://boringssl.googlesource.com/boringssl.git",
                "rev": "ae88f198a49d77993e9c44b017d0e69c810dc668"
            },
            "src/third_party/breakpad/breakpad": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-8AkC/8oX4OWAcV21laJ0AeMRB9G04rFc6UJFy7Wus4A=",
                "url": "https://chromium.googlesource.com/breakpad/breakpad.git",
                "rev": "8988364bcddd9b194b0bf931c10bc125987330ed"
            },
            "src/third_party/cast_core/public/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-pyjxQQYnsASHV2SxwZeIqkZJSpTrqyGg7Uee/GRp9VU=",
                "url": "https://chromium.googlesource.com/cast_core/public",
                "rev": "e42ef68aa05ac0c163805f60b9b19284f3c2dee3"
            },
            "src/third_party/catapult": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-MkkIztmLGRmxkRAPGZgeb+cc4Dn9Z24p+umwFzAxhpQ=",
                "url": "https://chromium.googlesource.com/catapult.git",
                "rev": "cef5cf05b2410be6cae210e4ae7de0ab808736c3"
            },
            "src/third_party/ced/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-ySG74Rj2i2c/PltEgHVEDq+N8yd9gZmxNktc56zIUiY=",
                "url": "https://chromium.googlesource.com/external/github.com/google/compact_enc_det.git",
                "rev": "ba412eaaacd3186085babcd901679a48863c7dd5"
            },
            "src/third_party/cld_3/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-C3MOMBUy9jgkT9BAi/Fgm2UH4cxRuwSBEcRl3hzM2Ss=",
                "url": "https://chromium.googlesource.com/external/github.com/google/cld_3.git",
                "rev": "b48dc46512566f5a2d41118c8c1116c4f96dc661"
            },
            "src/third_party/colorama/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-6ZTdPYSHdQOLYMSnE+Tp7PgsVTs3U2awGu9Qb4Rg/tk=",
                "url": "https://chromium.googlesource.com/external/colorama.git",
                "rev": "3de9f013df4b470069d03d250224062e8cf15c49"
            },
            "src/third_party/cpu_features/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-E8LoVzhe+TAmARWZTSuINlsVhzpUJMxPPCGe/dHZcyA=",
                "url": "https://chromium.googlesource.com/external/github.com/google/cpu_features.git",
                "rev": "936b9ab5515dead115606559502e3864958f7f6e"
            },
            "src/third_party/cpuinfo/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-1XazrNQwwIFeiUgFxiZq8lU1jdlusdld9ddssVLccEM=",
                "url": "https://chromium.googlesource.com/external/github.com/pytorch/cpuinfo.git",
                "rev": "f44a9dabb2192ffb203ddd0c71f6373c7d82faed"
            },
            "src/third_party/crc32c/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-urg0bmnfMfHagLPELp4WrNCz1gBZ6DFOWpDue1KsMtc=",
                "url": "https://chromium.googlesource.com/external/github.com/google/crc32c.git",
                "rev": "fa5ade41ee480003d9c5af6f43567ba22e4e17e6"
            },
            "src/third_party/cros_system_api": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-SlIa4iN8FAGrR5/T2JlPA0RRDkwKmJ+z6FAe83Doo9c=",
                "url": "https://chromium.googlesource.com/chromiumos/platform2/system_api.git",
                "rev": "ea8d35b6f6762ff618dabf307be7a03971afa02e"
            },
            "src/third_party/crossbench": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-IM81ppJX/ib//P2ESbQXMSL+BiOSVKbdXZdcMsq4xn0=",
                "url": "https://chromium.googlesource.com/crossbench.git",
                "rev": "cdc33384bfa900dfec28e6cf7b5f22cd7ff2c92f"
            },
            "src/third_party/depot_tools": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-UuF8ft26lKDc4tOmYN8yyGQ6J8YFFcK0oJ5aVskooLQ=",
                "url": "https://chromium.googlesource.com/chromium/tools/depot_tools.git",
                "rev": "fc75af35d41df6c7742caef751428aa875199990"
            },
            "src/third_party/devtools-frontend/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-xq+qY3WZPRCGSmdk71wVCOAFbK4f4C87IVkSQkA5oeA=",
                "url": "https://chromium.googlesource.com/devtools/devtools-frontend",
                "rev": "f7c236f0555abbe40cebfdc2d4148ea8dfdf0f10"
            },
            "src/third_party/dom_distiller_js/dist": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-yuEBD2XQlV3FGI/i7lTmJbCqzeBiuG1Qow8wvsppGJw=",
                "url": "https://chromium.googlesource.com/chromium/dom-distiller/dist.git",
                "rev": "199de96b345ada7c6e7e6ba3d2fa7a6911b8767d"
            },
            "src/third_party/eigen3/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-ycpxfxQBCMZzPBJNwkJanLUoRenC6Ja4k2KnxPZ73aA=",
                "url": "https://chromium.googlesource.com/external/gitlab.com/libeigen/eigen.git",
                "rev": "7d7576f3262fa15c34d5575637bd8d7ff4a83f16"
            },
            "src/third_party/farmhash/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-5n58VEUxa/K//jAfZqG4cXyfxrp50ogWDNYcgiXVHdc=",
                "url": "https://chromium.googlesource.com/external/github.com/google/farmhash.git",
                "rev": "816a4ae622e964763ca0862d9dbd19324a1eaf45"
            },
            "src/third_party/ffmpeg": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-dvn/4ufK0lbfB9GKpNKKS/aImSVRBAyEss5cWm8iA84=",
                "url": "https://chromium.googlesource.com/chromium/third_party/ffmpeg.git",
                "rev": "881c5c3f6412020c37e97e178e0f5da9ddd2ae90"
            },
            "src/third_party/flac": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-gvTFPNOlBfozptaH7lTb9iD/09AmpdT3kCl9ClszjEs=",
                "url": "https://chromium.googlesource.com/chromium/deps/flac.git",
                "rev": "689da3a7ed50af7448c3f1961d1791c7c1d9c85c"
            },
            "src/third_party/flatbuffers/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-sKBf+en13jDX84/2adz10Z248MifhZg+YaMABIqaduE=",
                "url": "https://chromium.googlesource.com/external/github.com/google/flatbuffers.git",
                "rev": "13fc75cb6b7b44793f3f5b4ba025ff403d012c9f"
            },
            "src/third_party/fontconfig/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-0R+FEhtGXFiQWHEPRrJqaBW1JVfCojYI4NPDvYMBhoU=",
                "url": "https://chromium.googlesource.com/external/fontconfig.git",
                "rev": "06929a556fdc39c8fe12965b69070c8df520a33e"
            },
            "src/third_party/fp16/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-m2d9bqZoGWzuUPGkd29MsrdscnJRtuIkLIMp3fMmtRY=",
                "url": "https://chromium.googlesource.com/external/github.com/Maratyszcza/FP16.git",
                "rev": "0a92994d729ff76a58f692d3028ca1b64b145d91"
            },
            "src/third_party/gemmlowp/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-O5wD8wxgis0qYMaY+xZ21GBDVQFphMRvInCOswS6inA=",
                "url": "https://chromium.googlesource.com/external/github.com/google/gemmlowp.git",
                "rev": "13d57703abca3005d97b19df1f2db731607a7dc2"
            },
            "src/third_party/grpc/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-64JEVCx/PCM0dvv7kAQvSjLc0QbRAZVBDzwD/FAV6T8=",
                "url": "https://chromium.googlesource.com/external/github.com/grpc/grpc.git",
                "rev": "822dab21d9995c5cf942476b35ca12a1aa9d2737"
            },
            "src/third_party/freetype/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-JN7Mw+Osobx3LqAf7lR1EK3Tv2M0JCvd/8oNFEENH/k=",
                "url": "https://chromium.googlesource.com/chromium/src/third_party/freetype2.git",
                "rev": "3829fdaae5f12590f93807e9bcb866be131a201a"
            },
            "src/third_party/freetype-testing/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-2aHPchIK5Oce5+XxdXVCC+8EM6i0XT0rFbjSIVa2L1A=",
                "url": "https://chromium.googlesource.com/external/github.com/freetype/freetype2-testing.git",
                "rev": "7a69b1a2b028476f840ab7d4a2ffdfe4eb2c389f"
            },
            "src/third_party/fxdiv/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-LjX5kivfHbqCIA5pF9qUvswG1gjOFo3CMpX0VR+Cn38=",
                "url": "https://chromium.googlesource.com/external/github.com/Maratyszcza/FXdiv.git",
                "rev": "63058eff77e11aa15bf531df5dd34395ec3017c8"
            },
            "src/third_party/harfbuzz-ng/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-+fClyD9Rsge9qdGF8WCv8taLTWNL8iManpXZUzDL2LM=",
                "url": "https://chromium.googlesource.com/external/github.com/harfbuzz/harfbuzz.git",
                "rev": "db700b5670d9475cc8ed4880cc9447b232c5e432"
            },
            "src/third_party/emoji-segmenter/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-oT9mAKoKnrsFsBAeTRfPOXM76HRQQabFAlPpfKUGFhs=",
                "url": "https://chromium.googlesource.com/external/github.com/google/emoji-segmenter.git",
                "rev": "9ba6d25d0d9313569665d4a9d2b34f0f39f9a50e"
            },
            "src/third_party/ots/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-kiUXrXsaGOzPkKh0dVmU1I13WHt0Stzj7QLMqHN9FbU=",
                "url": "https://chromium.googlesource.com/external/github.com/khaledhosny/ots.git",
                "rev": "46bea9879127d0ff1c6601b078e2ce98e83fcd33"
            },
            "src/third_party/libgav1/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-DY2BBK+bH1lGZNEl3rMDsPb7Z52YMIQy/3N0achugE0=",
                "url": "https://chromium.googlesource.com/codecs/libgav1.git",
                "rev": "cd53f7c0d6a1c005e38874d143c8876d375bae70"
            },
            "src/third_party/googletest/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-VYRjcM3dDY2FarviXyFMgSkXCqKfWXwtGAj2Msgm7zg=",
                "url": "https://chromium.googlesource.com/external/github.com/google/googletest.git",
                "rev": "af29db7ec28d6df1c7f0f745186884091e602e07"
            },
            "src/third_party/hunspell_dictionaries": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-67mvpJRFFa9eMfyqFMURlbxOaTJBICnk+gl0b0mEHl8=",
                "url": "https://chromium.googlesource.com/chromium/deps/hunspell_dictionaries.git",
                "rev": "41cdffd71c9948f63c7ad36e1fb0ff519aa7a37e"
            },
            "src/third_party/icu": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-SPWi626Y5WL+cBiedyofb7FRxzM+maQ+1Mp5sx/i1EA=",
                "url": "https://chromium.googlesource.com/chromium/deps/icu.git",
                "rev": "e8c3bc9ea97d4423ad0515e5f1c064f486dae8b1"
            },
            "src/third_party/jsoncpp/source": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-bSLNcoYBz3QCt5VuTR056V9mU2PmBuYBa0W6hFg2m8Q=",
                "url": "https://chromium.googlesource.com/external/github.com/open-source-parsers/jsoncpp.git",
                "rev": "42e892d96e47b1f6e29844cc705e148ec4856448"
            },
            "src/third_party/leveldatabase/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-TTX2FrmcWsgqrh4uzqMyGnnnG51cVC2ILfdLxD65MLY=",
                "url": "https://chromium.googlesource.com/external/leveldb.git",
                "rev": "068d5ee1a3ac40dabd00d211d5013af44be55bea"
            },
            "src/third_party/libFuzzer/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-Zp8Ea/7GwmEl964MEIk3UM6IR5+FtUz8InlqZaOniDA=",
                "url": "https://chromium.googlesource.com/external/github.com/llvm/llvm-project/compiler-rt/lib/fuzzer.git",
                "rev": "26cc39e59b2bf5cbc20486296248a842c536878d"
            },
            "src/third_party/fuzztest/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-SiZAiHQt37PdWYiVOexqoQnRqk+EbsZk8ELJ9eJ1iSk=",
                "url": "https://chromium.googlesource.com/external/github.com/google/fuzztest.git",
                "rev": "0e6385f1b48865f35889749046083586e110e390"
            },
            "src/third_party/libaddressinput/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-xvUUQSPrvqUp5DI9AqlRTWurwDW087c6v4RvI+4sfOQ=",
                "url": "https://chromium.googlesource.com/external/libaddressinput.git",
                "rev": "e8712e415627f22d0b00ebee8db99547077f39bd"
            },
            "src/third_party/libaom/source/libaom": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-pghv17RmD8w7eWiSB2pdR3ZWSFyhFEky0p7jfGKIu34=",
                "url": "https://aomedia.googlesource.com/aom.git",
                "rev": "414a2fcbb1bb0f4ac471613e12004651f4d67c25"
            },
            "src/third_party/libavif/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-roT/0RLGNKlz8gx209UtyM3YpM29y27P4zjZJMqnUPY=",
                "url": "https://chromium.googlesource.com/external/github.com/AOMediaCodec/libavif.git",
                "rev": "781d6a6467d82d8ba36256f31b6593a33c03345d"
            },
            "src/third_party/libavifinfo/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-9HrWIuA3nuvqT6Hy8DHoBRCEKEG/p9UHY5gPYd/5oaI=",
                "url": "https://aomedia.googlesource.com/libavifinfo.git",
                "rev": "8ed46385f4b6fb0b4680d791002cbd674b2b9cb6"
            },
            "src/third_party/nearby/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-WLmEKIxTm7Aae/riw2HLcNmITvBHG4Z6fDA1Ue9J0tM=",
                "url": "https://chromium.googlesource.com/external/github.com/google/nearby-connections.git",
                "rev": "44fb9b4fa24e1140202c53a7c56bea90a0426adb"
            },
            "src/third_party/beto-core/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-qlExr/AFxJL7JLDz7bDCCk9Ios++5/n/iT9Mv8YnYxY=",
                "url": "https://beto-core.googlesource.com/beto-core.git",
                "rev": "45756ea770c41085d5c71156b2c46da0b10117d6"
            },
            "src/third_party/securemessage/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-GS4ccnuiqxMs/LVYAtvSlVAYFp4a5GoZsxcriTX3k78=",
                "url": "https://chromium.googlesource.com/external/github.com/google/securemessage.git",
                "rev": "fa07beb12babc3b25e0c5b1f38c16aa8cb6b8f84"
            },
            "src/third_party/ukey2/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-aaLs6ZS+CdBlCJ6ZhsmdAPFxiBIij6oufsDcNeRSV1E=",
                "url": "https://chromium.googlesource.com/external/github.com/google/ukey2.git",
                "rev": "0275885d8e6038c39b8a8ca55e75d1d4d1727f47"
            },
            "src/third_party/cros-components/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-a58NnOGa2bcQ2WNULnFyjyYnw3QXUAWjsB7UAxuRakg=",
                "url": "https://chromium.googlesource.com/external/google3/cros_components.git",
                "rev": "81d1ad8e0ba89d207657f124de3d0829829484d7"
            },
            "src/third_party/libdrm/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-NUxS2rBJ0nFblvHRQUfKT933+DAws5RUTDb+RLxRF4M=",
                "url": "https://chromium.googlesource.com/chromiumos/third_party/libdrm.git",
                "rev": "98e1db501173303e58ef6a1def94ab7a2d84afc1"
            },
            "src/third_party/expat/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-FXTDGAK03jc2wvazhRKqtsFRKZUYS/9HLpZNp4JfZJI=",
                "url": "https://chromium.googlesource.com/external/github.com/libexpat/libexpat.git",
                "rev": "441f98d02deafd9b090aea568282b28f66a50e36"
            },
            "src/third_party/libipp/libipp": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-gxU92lHLd6uxO8T3QWhZIK0hGy97cki705DV0VimCPY=",
                "url": "https://chromium.googlesource.com/chromiumos/platform2/libipp.git",
                "rev": "2209bb84a8e122dab7c02fe66cc61a7b42873d7f"
            },
            "src/third_party/libjpeg_turbo": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-QnXMR9qqRiYfV1sUJvKVvLQ9A022lYKbsrI9HOU9LCs=",
                "url": "https://chromium.googlesource.com/chromium/deps/libjpeg_turbo.git",
                "rev": "aa4075f116e4312537d0d3e9dbd5e31096539f94"
            },
            "src/third_party/liblouis/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-EI/uaHXe0NlqdEw764q0SjerThYEVLRogUlmrsZwXnY=",
                "url": "https://chromium.googlesource.com/external/liblouis-github.git",
                "rev": "9700847afb92cb35969bdfcbbfbbb74b9c7b3376"
            },
            "src/third_party/libphonenumber/dist": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-3hSnTFTD3KAdbyxfKg12qbIYTmw6YlTCH64gMP/HUJo=",
                "url": "https://chromium.googlesource.com/external/libphonenumber.git",
                "rev": "140dfeb81b753388e8a672900fb7a971e9a0d362"
            },
            "src/third_party/libprotobuf-mutator/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-ZyPweW+V5foxFQwjjMLkaRUo+FNV+kEDGIH/4oRV614=",
                "url": "https://chromium.googlesource.com/external/github.com/google/libprotobuf-mutator.git",
                "rev": "a304ec48dcf15d942607032151f7e9ee504b5dcf"
            },
            "src/third_party/libsrtp": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-pfLFh2JGk/g0ZZxBKTaYW9/PBpkCm0rtJeyNePUMTTc=",
                "url": "https://chromium.googlesource.com/chromium/deps/libsrtp.git",
                "rev": "5b7c744eb8310250ccc534f3f86a2015b3887a0a"
            },
            "src/third_party/libsync/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-Mkl6C1LxF3RYLwYbxiSfoQPt8QKFwQWj/Ati2sNJ32E=",
                "url": "https://chromium.googlesource.com/aosp/platform/system/core/libsync.git",
                "rev": "f4f4387b6bf2387efbcfd1453af4892e8982faf6"
            },
            "src/third_party/libvpx/source/libvpx": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-9zyYyamGsDO+a6ggdlxJ78xIGmaNyD7NcmQVIZW9oLA=",
                "url": "https://chromium.googlesource.com/webm/libvpx.git",
                "rev": "278d0acd32c3fd544e6f99cbfd714df3430a6442"
            },
            "src/third_party/libwebm/source": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-u/5nkJed0DzdhR5OLL2kIhZhOnrbyzL1Kx37vV/jcEo=",
                "url": "https://chromium.googlesource.com/webm/libwebm.git",
                "rev": "e4fbea0c9751ae8aa86629b197a28d8276a2b0da"
            },
            "src/third_party/libwebp/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-isuuqzfc7cBxVEFrpHQP79B3s/5Jwu3qC4x3VPw7MuE=",
                "url": "https://chromium.googlesource.com/webm/libwebp.git",
                "rev": "4619a48fc3292743d7ce9658bee4245406734109"
            },
            "src/third_party/libyuv": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-jxs9kHI40gRFhm9cU6uS1Rxj+LLUUqT9b3myihxgW7s=",
                "url": "https://chromium.googlesource.com/libyuv/libyuv.git",
                "rev": "04821d1e7d60845525e8db55c7bcd41ef5be9406"
            },
            "src/third_party/lss": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-hE8uZf9Fst66qJkoVYChiB8G41ie+k9M4X0W+5JUSdw=",
                "url": "https://chromium.googlesource.com/linux-syscall-support.git",
                "rev": "ce877209e11aa69dcfffbd53ef90ea1d07136521"
            },
            "src/third_party/material_color_utilities/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-Cv1TjvOcswhp60LXblrLwY5jrudqKuDUqs1c//x49YE=",
                "url": "https://chromium.googlesource.com/external/github.com/material-foundation/material-color-utilities.git",
                "rev": "bd6537fb1c4aa2164d97f96e78a9c826e360a0ed"
            },
            "src/third_party/minigbm/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-9HwvjTETerbQ7YKXH9kUB2eWa8PxGWMAJfx1jAluhrs=",
                "url": "https://chromium.googlesource.com/chromiumos/platform/minigbm.git",
                "rev": "3018207f4d89395cc271278fb9a6558b660885f5"
            },
            "src/third_party/nasm": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-L+b3X3vsfpY6FSlIK/AHhxhmq2cXd50vND6uT6yn8Qs=",
                "url": "https://chromium.googlesource.com/chromium/deps/nasm.git",
                "rev": "7fc833e889d1afda72c06220e5bed8fb43b2e5ce"
            },
            "src/third_party/neon_2_sse/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-299ZptvdTmCnIuVVBkrpf5ZTxKPwgcGUob81tEI91F0=",
                "url": "https://chromium.googlesource.com/external/github.com/intel/ARM_NEON_2_x86_SSE.git",
                "rev": "a15b489e1222b2087007546b4912e21293ea86ff"
            },
            "src/third_party/openh264/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-J7Eqe2QevZh1xfap19W8AVCcwfRu7ztknnbKFJUAH1c=",
                "url": "https://chromium.googlesource.com/external/github.com/cisco/openh264",
                "rev": "09a4f3ec842a8932341b195c5b01e141c8a16eb7"
            },
            "src/third_party/openscreen/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-+Ea+CVr59WUyVk7sLdelPPwt/n5CLBNnAOW6XD7k/qM=",
                "url": "https://chromium.googlesource.com/openscreen",
                "rev": "2a4dbe656f38bf7617df013b54c683e461ed064d"
            },
            "src/third_party/openscreen/src/third_party/tinycbor/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-fMKBFUSKmODQyg4hKIa1hwnEKIV6WBbY1Gb8DOSnaHA=",
                "url": "https://chromium.googlesource.com/external/github.com/intel/tinycbor.git",
                "rev": "d393c16f3eb30d0c47e6f9d92db62272f0ec4dc7"
            },
            "src/third_party/pdfium": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-xYvjBv4gkVhpx8a4C1kmp6/Ngd0w9BFKizsTFR0weHM=",
                "url": "https://pdfium.googlesource.com/pdfium.git",
                "rev": "6c2c8ce87dfbf69b533e97f78807dff28c95f014"
            },
            "src/third_party/perfetto": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-mkfzktiI1aEOcBF8S1LPH9lEXaWFURV/q9RrcXrP4Yk=",
                "url": "https://android.googlesource.com/platform/external/perfetto.git",
                "rev": "271c226bfba2965bb5c72fd6964f016ed1f85c05"
            },
            "src/third_party/pthreadpool/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-Pfvievhma1rOpbLdSrIX4KaZyRpdvrnjRzzPYl3fDQo=",
                "url": "https://chromium.googlesource.com/external/github.com/Maratyszcza/pthreadpool.git",
                "rev": "1787867f6183f056420e532eec640cba25efafea"
            },
            "src/third_party/pyelftools": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-I/7p3IEvfP/gkes4kx18PvWwhAKilQKb67GXoW4zFB4=",
                "url": "https://chromium.googlesource.com/chromiumos/third_party/pyelftools.git",
                "rev": "19b3e610c86fcadb837d252c794cb5e8008826ae"
            },
            "src/third_party/quic_trace/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-Nf9ZDLcE1JunhbpEMHhrY2ROnbgrvVZoRkPwWq1DU0g=",
                "url": "https://chromium.googlesource.com/external/github.com/google/quic-trace.git",
                "rev": "caa0a6eaba816ecb737f9a70782b7c80b8ac8dbc"
            },
            "src/third_party/pywebsocket3/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-WEqqu2/7fLqcf/2/IcD7/FewRSZ6jTgVlVBvnihthYQ=",
                "url": "https://chromium.googlesource.com/external/github.com/GoogleChromeLabs/pywebsocket3.git",
                "rev": "50602a14f1b6da17e0b619833a13addc6ea78bc2"
            },
            "src/third_party/re2/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-j2v1NVMGqMieHdj/5/mgC+flpWCzxoCwLLmtZa3N5+0=",
                "url": "https://chromium.googlesource.com/external/github.com/google/re2.git",
                "rev": "7c5e396af825562ec8321fdbf2f1cf276b26e3ae"
            },
            "src/third_party/ruy/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-voWwpijTX+AZJPGH5Rgy4ISKpFV3i86/KJBU9S1IT0g=",
                "url": "https://chromium.googlesource.com/external/github.com/google/ruy.git",
                "rev": "caa244343de289f913c505100e6a463d46c174de"
            },
            "src/third_party/skia": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-y0v/eFfrFlEcVGT1W173bgqlFfWzz32TACAdV68uqrY=",
                "url": "https://skia.googlesource.com/skia.git",
                "rev": "bb40886d43b5fcbcdfb5587a2d20db418622990a"
            },
            "src/third_party/smhasher/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-RyC//me08hwGXRrWcK8GZ1uhIkBq4FByA7fHCVDsniw=",
                "url": "https://chromium.googlesource.com/external/smhasher.git",
                "rev": "e87738e57558e0ec472b2fc3a643b838e5b6e88f"
            },
            "src/third_party/snappy/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-5fV6NfO8vmqK+iCwpLtE2YjYOzjsshctauyjNIOxrH0=",
                "url": "https://chromium.googlesource.com/external/github.com/google/snappy.git",
                "rev": "c9f9edf6d75bb065fa47468bf035e051a57bec7c"
            },
            "src/third_party/sqlite/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-35rSG+ptFMC62FsprLvAqfXZknKu40Ee6H2qpAcA3wI=",
                "url": "https://chromium.googlesource.com/chromium/deps/sqlite.git",
                "rev": "b7e480172bb2411f9afedefdcc69a57a12f18b7b"
            },
            "src/third_party/swiftshader": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-KDBfCZeWZWdx+nkMQO4UxjYl96eLo2qksqC9mL+U+ls=",
                "url": "https://swiftshader.googlesource.com/SwiftShader.git",
                "rev": "b8f1a3ad5f9e077cd4c67e2f612e42bc8ef2fd30"
            },
            "src/third_party/text-fragments-polyfill/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-4rW2u1cQAF4iPWHAt1FvVXIpz2pmI901rEPks/w/iFA=",
                "url": "https://chromium.googlesource.com/external/github.com/GoogleChromeLabs/text-fragments-polyfill.git",
                "rev": "c036420683f672d685e27415de0a5f5e85bdc23f"
            },
            "src/third_party/tflite/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-roL+P9fJskz+9h2vK0eYud7J+IFPD1+ByHIL95JPahs=",
                "url": "https://chromium.googlesource.com/external/github.com/tensorflow/tensorflow.git",
                "rev": "f3e12f6b28647da499edb69794745f14869f0df9"
            },
            "src/third_party/vulkan-deps": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-disqOHrly1sqqBrDdRbpPlRE9EHSSdMxJXr+Kn7sia0=",
                "url": "https://chromium.googlesource.com/vulkan-deps",
                "rev": "73a4816c4b451e0e47b35478ba204acb7848b6b9"
            },
            "src/third_party/vulkan-deps/glslang/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-EKV4kjmLfChKmx3ozAVNx8CJii6hQGAUTTPQmLevkX0=",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/glslang",
                "rev": "6a7ec4be7b8a22ab16cea0f294b5973dbcdd637a"
            },
            "src/third_party/vulkan-deps/spirv-cross/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-8Xw0pKn6puTpALAkKMHQKbzBLENm37Iep8JnslooJI8=",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/SPIRV-Cross",
                "rev": "2d3a152081ca6e6bea7093940d0f81088fe4d01c"
            },
            "src/third_party/vulkan-deps/spirv-headers/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-JwgV3kDFvljDoWagDRjTIRRZRX5f6r9UUUxnCj1GEyc=",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/SPIRV-Headers",
                "rev": "6e09e44cd88a5297433411b2ee52f4cf9f50fa90"
            },
            "src/third_party/vulkan-deps/spirv-tools/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-/JyTxpmh57gr1OrzCvLvbPL/iqQeplA5mKpvY6+x1Ag=",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/SPIRV-Tools",
                "rev": "a63ac9f73d29cd27cdb6e3388d98d1d934e512bb"
            },
            "src/third_party/vulkan-deps/vulkan-headers/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-4erHZKx4jksAtyG8ZHtlVoEY3EqE4p2pEtcGHqv7G7A=",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-Headers",
                "rev": "c1a8560c5cf5e7bd6dbc71fe69b1a317411c36b8"
            },
            "src/third_party/vulkan-deps/vulkan-loader/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-PfVpvtBc80ZdL1SUJuoo8BGk90XSXX3l4mRVv3jdARA=",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-Loader",
                "rev": "db51885950c860961279168997b5cde12a77abf9"
            },
            "src/third_party/vulkan-deps/vulkan-tools/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-L+WNkMyIJNKjCRuhgoU6OvjcfQpwAtPtquIngYYrf1M=",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-Tools",
                "rev": "0cab6e8055fb0f3a54d8314552fd523a3da57c2c"
            },
            "src/third_party/vulkan-deps/vulkan-validation-layers/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-Ycvj5oOTE1fKHWk5Ubzr4lrzHQUjQXjguR2onXv3T5g=",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-ValidationLayers",
                "rev": "e2be2287f4820ed578d1adeca981736146a74d9a"
            },
            "src/third_party/vulkan_memory_allocator": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-rARuPHa/gEAOTM8/Fnob0bU0Jv+UKLiwe3o0UGWYlME=",
                "url": "https://chromium.googlesource.com/external/github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator.git",
                "rev": "ebe84bec02c041d28f902da0214bf442743fc907"
            },
            "src/third_party/wayland/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-aVcy7bW1cqEKbowlVgfa9FI8/oG7k5CzPZbRl+cPcX8=",
                "url": "https://chromium.googlesource.com/external/anongit.freedesktop.org/git/wayland/wayland.git",
                "rev": "a8c7553ec9af6462474524fd2bb4e9a7dc7217dd"
            },
            "src/third_party/wayland-protocols/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-3QK+ZN6IFUFkDxySSoQwP1J3JnTlD7JPaUk6Tr/d/k4=",
                "url": "https://chromium.googlesource.com/external/anongit.freedesktop.org/git/wayland/wayland-protocols.git",
                "rev": "4624cfaaf563cd7be5e2e2087c8de6d3a48ea867"
            },
            "src/third_party/wayland-protocols/kde": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-Dmcp/2ms/k7NxPPmPkp0YNfM9z2Es1ZO0uX10bc7N2Y=",
                "url": "https://chromium.googlesource.com/external/github.com/KDE/plasma-wayland-protocols.git",
                "rev": "0b07950714b3a36c9b9f71fc025fc7783e82926e"
            },
            "src/third_party/wayland-protocols/gtk": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-75XNnLkF5Lt1LMRGT+T61k0/mLa3kkynfN+QWvZ0LiQ=",
                "url": "https://chromium.googlesource.com/external/github.com/GNOME/gtk.git",
                "rev": "40ebed3a03aef096addc0af09fec4ec529d882a0"
            },
            "src/third_party/webdriver/pylib": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-WIqWXIKVgElgg8P8laLAlUrgwodGdeVcwohZxnPKedw=",
                "url": "https://chromium.googlesource.com/external/github.com/SeleniumHQ/selenium/py.git",
                "rev": "fc5e7e70c098bfb189a9a74746809ad3c5c34e04"
            },
            "src/third_party/webgl/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-jn0HFVHFGjbScUchFBynMekZIktPp25k8O/HfjvJHRU=",
                "url": "https://chromium.googlesource.com/external/khronosgroup/webgl.git",
                "rev": "b934957d2423492a9a8682f48517f07607503f3f"
            },
            "src/third_party/webgpu-cts/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-AW0VnZF9W1otb9+UGLGwrjXI6yqz7X0lqAMYtHVX6L8=",
                "url": "https://chromium.googlesource.com/external/github.com/gpuweb/cts.git",
                "rev": "82ed433cbcb632d6700551067a6d3acc6c2ab46e"
            },
            "src/third_party/webrtc": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-MoEeE9iXW4bbwhugT40njlxPWO04LomykQk/hZb6TwQ=",
                "url": "https://webrtc.googlesource.com/src.git",
                "rev": "402f60c2eabefbc7a120ec01659690c7fdf89769"
            },
            "src/third_party/wuffs/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-HP8Vf1C9DuA9H+busf3lFoF9SsYqviLKv0l73CxmNEI=",
                "url": "https://skia.googlesource.com/external/github.com/google/wuffs-mirror-release-c.git",
                "rev": "fe9d08f2b6e80af691bfb1a718e144c49a1b9eba"
            },
            "src/third_party/weston/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-EKl6oIM8Vml9wtSIb9ExFIuuJohbU/rsG3JVS5thaUU=",
                "url": "https://chromium.googlesource.com/external/anongit.freedesktop.org/git/wayland/weston.git",
                "rev": "420cfd00f2de91de74bd9d4d8348e43c582d29f0"
            },
            "src/third_party/xdg-utils": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-t3uV9JkkQQIwmezzSoEdTMLSizZdLQB7eLKTRQGH4kQ=",
                "url": "https://chromium.googlesource.com/chromium/deps/xdg-utils.git",
                "rev": "d80274d5869b17b8c9067a1022e4416ee7ed5e0d"
            },
            "src/third_party/xnnpack/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-vsn3lrog5affus0qxc4TK2Z/tdd/E6hBYeUQRWoDZPQ=",
                "url": "https://chromium.googlesource.com/external/github.com/google/XNNPACK.git",
                "rev": "b9d4073a6913891ce9cbd8965c8d506075d2a45a"
            },
            "src/tools/page_cycler/acid3": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-+7Ynz7k/dWdd4Wo7Rjzvc8GY9gTsjzjG3GdNsuDKszY=",
                "url": "https://chromium.googlesource.com/chromium/deps/acid3.git",
                "rev": "6be0a66a1ebd7ebc5abc1b2f405a945f6d871521"
            },
            "src/v8": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-FniqsFWFZUclDsA+cOvX+FFxsnVd8lfMVCfrjiOn9fQ=",
                "url": "https://chromium.googlesource.com/v8/v8.git",
                "rev": "47bf74e7ed48d3a0d6ea92f46c32be46ebed08fe"
            },
            "src/third_party/nan": {
                "fetcher": "fetchFromGitHub",
                "hash": "sha256-tur5CExvwuSmwqBwH9o8OZWzDuifRybjEb+4/tm6exk=",
                "owner": "nodejs",
                "repo": "nan",
                "rev": "16fa32231e2ccd89d2804b3f765319128b20c4ac"
            },
            "src/third_party/electron_node": {
                "fetcher": "fetchFromGitHub",
                "hash": "sha256-VwG8Q+PZudblqG+m4uuWEowNWlq/MUuyEpFs8k8NbHE=",
                "owner": "nodejs",
                "repo": "node",
                "rev": "v18.16.1"
            },
            "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/ReactiveObjC": {
                "fetcher": "fetchFromGitHub",
                "hash": "sha256-/MCqC1oFe3N9TsmfVLgl+deR6qHU6ZFQQjudb9zB5Mo=",
                "owner": "ReactiveCocoa",
                "repo": "ReactiveObjC",
                "rev": "74ab5baccc6f7202c8ac69a8d1e152c29dc1ea76"
            },
            "src/third_party/squirrel.mac/vendor/Mantle": {
                "fetcher": "fetchFromGitHub",
                "hash": "sha256-ogFkMJybf2Ue606ojXJu6Gy5aXSi1bSKm60qcTAIaPk=",
                "owner": "Mantle",
                "repo": "Mantle",
                "rev": "78d3966b3c331292ea29ec38661b25df0a245948"
            }
        },
        "version": "26.3.0",
        "modules": "116",
        "chrome": "116.0.5845.228",
        "node": "18.16.1",
        "chromium": {
            "version": "116.0.5845.228",
            "deps": {
                "gn": {
                    "version": "2023-06-09",
                    "url": "https://gn.googlesource.com/gn",
                    "rev": "4bd1a77e67958fb7f6739bd4542641646f264e5d",
                    "sha256": "14h9jqspb86sl5lhh6q0kk2rwa9zcak63f8drp7kb3r4dx08vzsw"
                }
            }
        },
        "electron_yarn_hash": "05wkb1m0yjbai4153y49kwr1v2lj14fg75aqlvmmrhf3bxp9lg5g",
        "chromium_npm_hash": "sha256-5cjqpYB45nw2gop54VP+tL7/0w63nQGfQ4x6a6KS7XQ="
    },
    "25": {
        "deps": {
            "src/electron": {
                "fetcher": "fetchFromGitHub",
                "hash": "sha256-OVPwnoHyiHcxwixTWu0W2sxkJNRtB7uiXqdEzbzi+Fc=",
                "owner": "electron",
                "repo": "electron",
                "rev": "v25.9.0"
            },
            "src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-nh8LrBKsfW6K/scG1GPUyp/tYiXOxZkmjtuTyAXC4zI=",
                "url": "https://chromium.googlesource.com/chromium/src.git",
                "rev": "114.0.5735.289",
                "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; "
            },
            "src/buildtools/clang_format/script": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-IL6ReGM6+urkXfGYe1BBOv+0XgCZv5i3Lib1q9COhig=",
                "url": "https://chromium.googlesource.com/external/github.com/llvm/llvm-project/clang/tools/clang-format.git",
                "rev": "f97059df7f8b205064625cdb5f97b56668a125ef"
            },
            "src/buildtools/third_party/libc++/trunk": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-i/FGU9F7HlGJJuwoFMV4V05pf4pvsqNxrPBN223YjZQ=",
                "url": "https://chromium.googlesource.com/external/github.com/llvm/llvm-project/libcxx.git",
                "rev": "bff81b702ff4b7f74b1c0ed02a4bcf6c2744a90b"
            },
            "src/buildtools/third_party/libc++abi/trunk": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-Zka8AHFtHA4AC/Pbzc3pVqz/k2GYZYc8CeP1IXxGBUM=",
                "url": "https://chromium.googlesource.com/external/github.com/llvm/llvm-project/libcxxabi.git",
                "rev": "307bd163607c315d46103ebe1d68aab44bf93986"
            },
            "src/buildtools/third_party/libunwind/trunk": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-u6FMD83JBBusQuWU7Hx5HREvLIFWUA4iN4If8poaHbE=",
                "url": "https://chromium.googlesource.com/external/github.com/llvm/llvm-project/libunwind.git",
                "rev": "2795322d57001de8125cfdf18cef804acff69e35"
            },
            "src/chrome/test/data/perf/canvas_bench": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-svOuyBGKloBLM11xLlWCDsB4PpRjdKTBdW2UEW4JQjM=",
                "url": "https://chromium.googlesource.com/chromium/canvas_bench.git",
                "rev": "a7b40ea5ae0239517d78845a5fc9b12976bfc732"
            },
            "src/chrome/test/data/perf/frame_rate/content": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-t4kcuvH0rkPBkcdiMsoNQaRwU09eU+oSvyHDiAHrKXo=",
                "url": "https://chromium.googlesource.com/chromium/frame_rate/content.git",
                "rev": "c10272c88463efeef6bb19c9ec07c42bc8fe22b9"
            },
            "src/chrome/test/data/xr/webvr_info": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-BsAPwc4oEWri0TlqhyxqFNqKdfgVSrB0vQyISmYY4eg=",
                "url": "https://chromium.googlesource.com/external/github.com/toji/webvr.info.git",
                "rev": "c58ae99b9ff9e2aa4c524633519570bf33536248"
            },
            "src/docs/website": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-0rI5HUWxfNU0mrWJ4ndzL1gnn4E67UVPFpqkEpQjgW0=",
                "url": "https://chromium.googlesource.com/website.git",
                "rev": "40cfbbdee67c7010ae103011fe5797858e692a79"
            },
            "src/media/cdm/api": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-6J6aSYW0or99VAgMNJJOdJqMJspoG7w1HxDN50MV5bw=",
                "url": "https://chromium.googlesource.com/chromium/cdm.git",
                "rev": "fef0b5aa1bd31efb88dfab804bdbe614f3d54f28"
            },
            "src/net/third_party/quiche/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-dUSUlZR7svBw35TX/ywZaa1Ko/yTeV/gE+GudhX981E=",
                "url": "https://quiche.googlesource.com/quiche.git",
                "rev": "02c69dd28eef7ef2618782e8d54d53c14ae64382"
            },
            "src/third_party/angle": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-EpR25A5wDGnhK9EI2eSx8OsLtA4YvtDREi6x8ZfIVsM=",
                "url": "https://chromium.googlesource.com/angle/angle.git",
                "rev": "ce590bee825a18785f86d096f2c7be06428ccf88"
            },
            "src/third_party/angle/third_party/glmark2/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-L7+zWM0qn8WFhmON7DGvarTsN1YHt1sn5+hazTOZrrk=",
                "url": "https://chromium.googlesource.com/external/github.com/glmark2/glmark2",
                "rev": "ca8de51fedb70bace5351c6b002eb952c747e889"
            },
            "src/third_party/angle/third_party/rapidjson/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-btUl1a/B0sXwf/+hyvCvVJjWqIkXfVYCpHm3TeBuOxk=",
                "url": "https://chromium.googlesource.com/external/github.com/Tencent/rapidjson",
                "rev": "781a4e667d84aeedbeb8184b7b62425ea66ec59f"
            },
            "src/third_party/angle/third_party/VK-GL-CTS/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-XcaAnz36QOg+A5XcyGg0Z9dLFjsDSUa0GzZpEuQYMTg=",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/VK-GL-CTS",
                "rev": "e3b9db9ad121f46b7943d0152a25d5ee9afaa13c"
            },
            "src/third_party/content_analysis_sdk/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-p4N3zAUoM/ApBlYvLsCcH9QLArz7T4+miDGVuTbrZEc=",
                "url": "https://chromium.googlesource.com/external/github.com/chromium/content_analysis_sdk.git",
                "rev": "b8744f00646d175057f0be7443c7c72a311b5381"
            },
            "src/third_party/dav1d/libdav1d": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-FivzwqCvlY89q2znGvfNks+hje/iUFHcKPb19FyAZhM=",
                "url": "https://chromium.googlesource.com/external/github.com/videolan/dav1d.git",
                "rev": "d426d1c91075b9c552b12dd052af1cd0368f05a2"
            },
            "src/third_party/dawn": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-HoLI1IlG+ThNERz6xr1doIzNhPWNcZabiyPEn15kvoM=",
                "url": "https://dawn.googlesource.com/dawn.git",
                "rev": "bf86a1c8d463d7b9a556b10a80d17990d413831c"
            },
            "src/third_party/dawn/third_party/glfw": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-TwAPRjQxIz3J+zbNxzCp5Tek7MwisxdekMpY5QGsKyg=",
                "url": "https://chromium.googlesource.com/external/github.com/glfw/glfw",
                "rev": "62e175ef9fae75335575964c845a302447c012c7"
            },
            "src/third_party/dawn/third_party/webgpu-cts": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-+FRGgJSs7sVEZ6B6PZPxmXvmsKtt/sC/ZAjw+NdOwPQ=",
                "url": "https://chromium.googlesource.com/external/github.com/gpuweb/cts",
                "rev": "c7d833badcd37dc46a999ebeebbbde1368ff15b5"
            },
            "src/third_party/highway/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-kNb9UVcFq2BIf9nftUgN8ciFFCzRCou/sLwVf08jf3E=",
                "url": "https://chromium.googlesource.com/external/github.com/google/highway.git",
                "rev": "8f20644eca693cfb74aa795b0006b6779c370e7a"
            },
            "src/third_party/google_benchmark/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-h2ryAQAuHI54Cni88L85e7Np4KATGVTRdDcmUvCNeWc=",
                "url": "https://chromium.googlesource.com/external/github.com/google/benchmark.git",
                "rev": "b177433f3ee2513b1075140c723d73ab8901790f"
            },
            "src/third_party/boringssl/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-oeV7oMNpPbQyi5RiRJm/KAVmO7JZ1QRdYoNgFXh7Snc=",
                "url": "https://boringssl.googlesource.com/boringssl.git",
                "rev": "4b6d950d8921d6dd5365de0797fcc97302b9561b"
            },
            "src/third_party/breakpad/breakpad": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-+3Y4jCpcZ/++1Etpu/ZNuJvtTEX/Xn4HNfmx4nzcTtA=",
                "url": "https://chromium.googlesource.com/breakpad/breakpad.git",
                "rev": "bfde407de559c10d6cef861b3873ff287c24e761"
            },
            "src/third_party/cast_core/public/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-pyjxQQYnsASHV2SxwZeIqkZJSpTrqyGg7Uee/GRp9VU=",
                "url": "https://chromium.googlesource.com/cast_core/public",
                "rev": "e42ef68aa05ac0c163805f60b9b19284f3c2dee3"
            },
            "src/third_party/catapult": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-vK7rlGshfzPzaEdAxlP5vQ4USR/fC3BzPCh/rn0aAf4=",
                "url": "https://chromium.googlesource.com/catapult.git",
                "rev": "cae7ec667dee9f5c012b54ee9ffee94eb7beda14"
            },
            "src/third_party/ced/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-ySG74Rj2i2c/PltEgHVEDq+N8yd9gZmxNktc56zIUiY=",
                "url": "https://chromium.googlesource.com/external/github.com/google/compact_enc_det.git",
                "rev": "ba412eaaacd3186085babcd901679a48863c7dd5"
            },
            "src/third_party/cld_3/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-C3MOMBUy9jgkT9BAi/Fgm2UH4cxRuwSBEcRl3hzM2Ss=",
                "url": "https://chromium.googlesource.com/external/github.com/google/cld_3.git",
                "rev": "b48dc46512566f5a2d41118c8c1116c4f96dc661"
            },
            "src/third_party/colorama/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-6ZTdPYSHdQOLYMSnE+Tp7PgsVTs3U2awGu9Qb4Rg/tk=",
                "url": "https://chromium.googlesource.com/external/colorama.git",
                "rev": "3de9f013df4b470069d03d250224062e8cf15c49"
            },
            "src/third_party/cpuinfo/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-ZXsJVhqyeH/9dN0/1Cq0TCjmzwmsePX9YyuuaI9+puI=",
                "url": "https://chromium.googlesource.com/external/github.com/pytorch/cpuinfo.git",
                "rev": "beb46ca0319882f262e682dd596880c92830687f"
            },
            "src/third_party/crc32c/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-urg0bmnfMfHagLPELp4WrNCz1gBZ6DFOWpDue1KsMtc=",
                "url": "https://chromium.googlesource.com/external/github.com/google/crc32c.git",
                "rev": "fa5ade41ee480003d9c5af6f43567ba22e4e17e6"
            },
            "src/third_party/cros_system_api": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-0tnidX0O+jn1xbJMuSPsGPqwZBCKmfjWZY3aQdjM1gE=",
                "url": "https://chromium.googlesource.com/chromiumos/platform2/system_api.git",
                "rev": "73d6b816cacd86b886b4cc1e60f12ac1960f1d90"
            },
            "src/third_party/crossbench": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-IM81ppJX/ib//P2ESbQXMSL+BiOSVKbdXZdcMsq4xn0=",
                "url": "https://chromium.googlesource.com/crossbench.git",
                "rev": "cdc33384bfa900dfec28e6cf7b5f22cd7ff2c92f"
            },
            "src/third_party/depot_tools": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-7jPow77ejToE55KvQ7/eO0alMdMHcypfSyPceFAbZkw=",
                "url": "https://chromium.googlesource.com/chromium/tools/depot_tools.git",
                "rev": "6e714e6dfe62110c95fafed4bdeb365a69c6a77e"
            },
            "src/third_party/devtools-frontend/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-jDE3eGkpcJYE5lt/dpIpKa6me3ZZnfY/9boL/YBnHoc=",
                "url": "https://chromium.googlesource.com/devtools/devtools-frontend",
                "rev": "3f60fe50e4790d1154659b9628e811bbcdf1aa4f"
            },
            "src/third_party/dom_distiller_js/dist": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-yuEBD2XQlV3FGI/i7lTmJbCqzeBiuG1Qow8wvsppGJw=",
                "url": "https://chromium.googlesource.com/chromium/dom-distiller/dist.git",
                "rev": "199de96b345ada7c6e7e6ba3d2fa7a6911b8767d"
            },
            "src/third_party/eigen3/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-Jf8sFjSMuXeiXm53srR2HahbBXszLOawdYk5H1UrK4c=",
                "url": "https://chromium.googlesource.com/external/gitlab.com/libeigen/eigen.git",
                "rev": "554fe02ae3f3fbc2fd320c26a522f1e59b2d6342"
            },
            "src/third_party/farmhash/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-5n58VEUxa/K//jAfZqG4cXyfxrp50ogWDNYcgiXVHdc=",
                "url": "https://chromium.googlesource.com/external/github.com/google/farmhash.git",
                "rev": "816a4ae622e964763ca0862d9dbd19324a1eaf45"
            },
            "src/third_party/ffmpeg": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-UjrZJBtOQiiqxtLb8x24axord3OFvyCcRcgDwiYE/jw=",
                "url": "https://chromium.googlesource.com/chromium/third_party/ffmpeg.git",
                "rev": "8d21d41d8bec5c0b266ee305d1a708dc5c23b594"
            },
            "src/third_party/flac": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-gvTFPNOlBfozptaH7lTb9iD/09AmpdT3kCl9ClszjEs=",
                "url": "https://chromium.googlesource.com/chromium/deps/flac.git",
                "rev": "689da3a7ed50af7448c3f1961d1791c7c1d9c85c"
            },
            "src/third_party/flatbuffers/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-OQ8E+i30WRz/lPJmVDiF7+TPo4gZVu2Of9loxz3tswI=",
                "url": "https://chromium.googlesource.com/external/github.com/google/flatbuffers.git",
                "rev": "a56f9ec50e908362e20254fcef28e62a2f148d91"
            },
            "src/third_party/fontconfig/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-0R+FEhtGXFiQWHEPRrJqaBW1JVfCojYI4NPDvYMBhoU=",
                "url": "https://chromium.googlesource.com/external/fontconfig.git",
                "rev": "06929a556fdc39c8fe12965b69070c8df520a33e"
            },
            "src/third_party/fp16/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-m2d9bqZoGWzuUPGkd29MsrdscnJRtuIkLIMp3fMmtRY=",
                "url": "https://chromium.googlesource.com/external/github.com/Maratyszcza/FP16.git",
                "rev": "0a92994d729ff76a58f692d3028ca1b64b145d91"
            },
            "src/third_party/gemmlowp/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-O5wD8wxgis0qYMaY+xZ21GBDVQFphMRvInCOswS6inA=",
                "url": "https://chromium.googlesource.com/external/github.com/google/gemmlowp.git",
                "rev": "13d57703abca3005d97b19df1f2db731607a7dc2"
            },
            "src/third_party/grpc/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-64JEVCx/PCM0dvv7kAQvSjLc0QbRAZVBDzwD/FAV6T8=",
                "url": "https://chromium.googlesource.com/external/github.com/grpc/grpc.git",
                "rev": "822dab21d9995c5cf942476b35ca12a1aa9d2737"
            },
            "src/third_party/freetype/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-qJBw5ocv4+2Xx8bU47QK8sw9Sl636iI+16cbaSNatHU=",
                "url": "https://chromium.googlesource.com/chromium/src/third_party/freetype2.git",
                "rev": "0a3836c97d5e84d6721ac0fd2839e8ae1b7be8d9"
            },
            "src/third_party/freetype-testing/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-2aHPchIK5Oce5+XxdXVCC+8EM6i0XT0rFbjSIVa2L1A=",
                "url": "https://chromium.googlesource.com/external/github.com/freetype/freetype2-testing.git",
                "rev": "7a69b1a2b028476f840ab7d4a2ffdfe4eb2c389f"
            },
            "src/third_party/fxdiv/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-LjX5kivfHbqCIA5pF9qUvswG1gjOFo3CMpX0VR+Cn38=",
                "url": "https://chromium.googlesource.com/external/github.com/Maratyszcza/FXdiv.git",
                "rev": "63058eff77e11aa15bf531df5dd34395ec3017c8"
            },
            "src/third_party/harfbuzz-ng/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-WaR7U7PeHIffa+ZG85QG7pii/dLOI4+23xK0/hUf1ok=",
                "url": "https://chromium.googlesource.com/external/github.com/harfbuzz/harfbuzz.git",
                "rev": "2175f5d050743317c563ec9414e0f83a47f7fbc4"
            },
            "src/third_party/emoji-segmenter/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-oT9mAKoKnrsFsBAeTRfPOXM76HRQQabFAlPpfKUGFhs=",
                "url": "https://chromium.googlesource.com/external/github.com/google/emoji-segmenter.git",
                "rev": "9ba6d25d0d9313569665d4a9d2b34f0f39f9a50e"
            },
            "src/third_party/ots/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-kiUXrXsaGOzPkKh0dVmU1I13WHt0Stzj7QLMqHN9FbU=",
                "url": "https://chromium.googlesource.com/external/github.com/khaledhosny/ots.git",
                "rev": "46bea9879127d0ff1c6601b078e2ce98e83fcd33"
            },
            "src/third_party/libgav1/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-DY2BBK+bH1lGZNEl3rMDsPb7Z52YMIQy/3N0achugE0=",
                "url": "https://chromium.googlesource.com/codecs/libgav1.git",
                "rev": "cd53f7c0d6a1c005e38874d143c8876d375bae70"
            },
            "src/third_party/googletest/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-VYRjcM3dDY2FarviXyFMgSkXCqKfWXwtGAj2Msgm7zg=",
                "url": "https://chromium.googlesource.com/external/github.com/google/googletest.git",
                "rev": "af29db7ec28d6df1c7f0f745186884091e602e07"
            },
            "src/third_party/hunspell_dictionaries": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-67mvpJRFFa9eMfyqFMURlbxOaTJBICnk+gl0b0mEHl8=",
                "url": "https://chromium.googlesource.com/chromium/deps/hunspell_dictionaries.git",
                "rev": "41cdffd71c9948f63c7ad36e1fb0ff519aa7a37e"
            },
            "src/third_party/icu": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-47Xxb5IFbRmdO3oADjn13fm7aIYFXh2R4YVZIJAy22U=",
                "url": "https://chromium.googlesource.com/chromium/deps/icu.git",
                "rev": "d8daa943f64cd5dd2a55e9baf2e655ab4bfa5ae9"
            },
            "src/third_party/jsoncpp/source": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-bSLNcoYBz3QCt5VuTR056V9mU2PmBuYBa0W6hFg2m8Q=",
                "url": "https://chromium.googlesource.com/external/github.com/open-source-parsers/jsoncpp.git",
                "rev": "42e892d96e47b1f6e29844cc705e148ec4856448"
            },
            "src/third_party/leveldatabase/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-TTX2FrmcWsgqrh4uzqMyGnnnG51cVC2ILfdLxD65MLY=",
                "url": "https://chromium.googlesource.com/external/leveldb.git",
                "rev": "068d5ee1a3ac40dabd00d211d5013af44be55bea"
            },
            "src/third_party/libFuzzer/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-HG3KHhKQnr4hdnUK/2QhcxRdNxh38fhU54JKKzqZaio=",
                "url": "https://chromium.googlesource.com/chromium/llvm-project/compiler-rt/lib/fuzzer.git",
                "rev": "debe7d2d1982e540fbd6bd78604bf001753f9e74"
            },
            "src/third_party/centipede/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-yFZOn/Ga+D/b/1TwuOZdO/H4/GuX/HRB18rgYg7+rmE=",
                "url": "https://chromium.googlesource.com/external/github.com/google/centipede.git",
                "rev": "a5a9071410e6e8134855b88461d0eb2c77d48cdd"
            },
            "src/third_party/libaddressinput/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-xvUUQSPrvqUp5DI9AqlRTWurwDW087c6v4RvI+4sfOQ=",
                "url": "https://chromium.googlesource.com/external/libaddressinput.git",
                "rev": "e8712e415627f22d0b00ebee8db99547077f39bd"
            },
            "src/third_party/libaom/source/libaom": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-j8b0xM7hHNqYIeUQjf+c7LyzcfZVJx64Xqo9gIRtsYU=",
                "url": "https://aomedia.googlesource.com/aom.git",
                "rev": "5a0903824082f41123e8365b5b99ddb6ced8971c"
            },
            "src/third_party/libavif/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-3Oe8ouucu2eHpXov3WchwKQIqjhzuSFfNZ7ChEkQiTE=",
                "url": "https://chromium.googlesource.com/external/github.com/AOMediaCodec/libavif.git",
                "rev": "1af8cea3d1b3a05ecbcb0e39d99a7f0183e6ce13"
            },
            "src/third_party/nearby/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-GfxGDSh2qkjIGgXgwH0xWAnjswOmGEVaXlci+tZS53g=",
                "url": "https://chromium.googlesource.com/external/github.com/google/nearby-connections.git",
                "rev": "37000006c224476104276bf74038d60967593814"
            },
            "src/third_party/securemessage/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-GS4ccnuiqxMs/LVYAtvSlVAYFp4a5GoZsxcriTX3k78=",
                "url": "https://chromium.googlesource.com/external/github.com/google/securemessage.git",
                "rev": "fa07beb12babc3b25e0c5b1f38c16aa8cb6b8f84"
            },
            "src/third_party/ukey2/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-aaLs6ZS+CdBlCJ6ZhsmdAPFxiBIij6oufsDcNeRSV1E=",
                "url": "https://chromium.googlesource.com/external/github.com/google/ukey2.git",
                "rev": "0275885d8e6038c39b8a8ca55e75d1d4d1727f47"
            },
            "src/third_party/cros-components/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-HgBDDfYvxYtHPfWlAs4aFCzDyhdcWnSP9nvCl8/UDfU=",
                "url": "https://chromium.googlesource.com/external/google3/cros_components.git",
                "rev": "0971e0c09f748dd476089b0e5136fe0b84e0bb4c"
            },
            "src/third_party/libdrm/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-ML89TBKDPHOd0YOVBmvLac+tyqgA5khDFK5vq4CCru8=",
                "url": "https://chromium.googlesource.com/chromiumos/third_party/libdrm.git",
                "rev": "b9ca37b3134861048986b75896c0915cbf2e97f9"
            },
            "src/third_party/expat/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-FXTDGAK03jc2wvazhRKqtsFRKZUYS/9HLpZNp4JfZJI=",
                "url": "https://chromium.googlesource.com/external/github.com/libexpat/libexpat.git",
                "rev": "441f98d02deafd9b090aea568282b28f66a50e36"
            },
            "src/third_party/libipp/libipp": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-gxU92lHLd6uxO8T3QWhZIK0hGy97cki705DV0VimCPY=",
                "url": "https://chromium.googlesource.com/chromiumos/platform2/libipp.git",
                "rev": "2209bb84a8e122dab7c02fe66cc61a7b42873d7f"
            },
            "src/third_party/libjpeg_turbo": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-QnXMR9qqRiYfV1sUJvKVvLQ9A022lYKbsrI9HOU9LCs=",
                "url": "https://chromium.googlesource.com/chromium/deps/libjpeg_turbo.git",
                "rev": "aa4075f116e4312537d0d3e9dbd5e31096539f94"
            },
            "src/third_party/liblouis/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-EI/uaHXe0NlqdEw764q0SjerThYEVLRogUlmrsZwXnY=",
                "url": "https://chromium.googlesource.com/external/liblouis-github.git",
                "rev": "9700847afb92cb35969bdfcbbfbbb74b9c7b3376"
            },
            "src/third_party/libphonenumber/dist": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-3hSnTFTD3KAdbyxfKg12qbIYTmw6YlTCH64gMP/HUJo=",
                "url": "https://chromium.googlesource.com/external/libphonenumber.git",
                "rev": "140dfeb81b753388e8a672900fb7a971e9a0d362"
            },
            "src/third_party/libprotobuf-mutator/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-ZyPweW+V5foxFQwjjMLkaRUo+FNV+kEDGIH/4oRV614=",
                "url": "https://chromium.googlesource.com/external/github.com/google/libprotobuf-mutator.git",
                "rev": "a304ec48dcf15d942607032151f7e9ee504b5dcf"
            },
            "src/third_party/libsrtp": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-pfLFh2JGk/g0ZZxBKTaYW9/PBpkCm0rtJeyNePUMTTc=",
                "url": "https://chromium.googlesource.com/chromium/deps/libsrtp.git",
                "rev": "5b7c744eb8310250ccc534f3f86a2015b3887a0a"
            },
            "src/third_party/libsync/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-Mkl6C1LxF3RYLwYbxiSfoQPt8QKFwQWj/Ati2sNJ32E=",
                "url": "https://chromium.googlesource.com/aosp/platform/system/core/libsync.git",
                "rev": "f4f4387b6bf2387efbcfd1453af4892e8982faf6"
            },
            "src/third_party/libvpx/source/libvpx": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-hIXEvCqbeMShGL1hCpJAMPbpuVfFM6Z4z5DPR3kfwb4=",
                "url": "https://chromium.googlesource.com/webm/libvpx.git",
                "rev": "27171320f5e36f7b18071bfa1d9616863ca1b4e8"
            },
            "src/third_party/libwebm/source": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-u/5nkJed0DzdhR5OLL2kIhZhOnrbyzL1Kx37vV/jcEo=",
                "url": "https://chromium.googlesource.com/webm/libwebm.git",
                "rev": "e4fbea0c9751ae8aa86629b197a28d8276a2b0da"
            },
            "src/third_party/libwebp/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-zBMivj2tF5AWC+E/rHHEtxBel0i1YwGGBus+4h3PCYY=",
                "url": "https://chromium.googlesource.com/webm/libwebp.git",
                "rev": "fd7b5d48464475408d32d2611bdb6947d4246b97"
            },
            "src/third_party/libyuv": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-LLmTW05GxoXgNkLRHp3e6gb7glMgJo1moc6lPLVHk6w=",
                "url": "https://chromium.googlesource.com/libyuv/libyuv.git",
                "rev": "77c2121f7e6b8e694d6e908bbbe9be24214097da"
            },
            "src/third_party/lss": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-hE8uZf9Fst66qJkoVYChiB8G41ie+k9M4X0W+5JUSdw=",
                "url": "https://chromium.googlesource.com/linux-syscall-support.git",
                "rev": "ce877209e11aa69dcfffbd53ef90ea1d07136521"
            },
            "src/third_party/material_color_utilities/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-Cv1TjvOcswhp60LXblrLwY5jrudqKuDUqs1c//x49YE=",
                "url": "https://chromium.googlesource.com/external/github.com/material-foundation/material-color-utilities.git",
                "rev": "bd6537fb1c4aa2164d97f96e78a9c826e360a0ed"
            },
            "src/third_party/minigbm/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-9HwvjTETerbQ7YKXH9kUB2eWa8PxGWMAJfx1jAluhrs=",
                "url": "https://chromium.googlesource.com/chromiumos/platform/minigbm.git",
                "rev": "3018207f4d89395cc271278fb9a6558b660885f5"
            },
            "src/third_party/nasm": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-L+b3X3vsfpY6FSlIK/AHhxhmq2cXd50vND6uT6yn8Qs=",
                "url": "https://chromium.googlesource.com/chromium/deps/nasm.git",
                "rev": "7fc833e889d1afda72c06220e5bed8fb43b2e5ce"
            },
            "src/third_party/neon_2_sse/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-299ZptvdTmCnIuVVBkrpf5ZTxKPwgcGUob81tEI91F0=",
                "url": "https://chromium.googlesource.com/external/github.com/intel/ARM_NEON_2_x86_SSE.git",
                "rev": "a15b489e1222b2087007546b4912e21293ea86ff"
            },
            "src/third_party/openh264/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-J7Eqe2QevZh1xfap19W8AVCcwfRu7ztknnbKFJUAH1c=",
                "url": "https://chromium.googlesource.com/external/github.com/cisco/openh264",
                "rev": "09a4f3ec842a8932341b195c5b01e141c8a16eb7"
            },
            "src/third_party/openscreen/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-MSJbCxYEJmhUrBUobKBgUhPV5yMhxxtKgU4NE2h9mFs=",
                "url": "https://chromium.googlesource.com/openscreen",
                "rev": "0964c1e903264ae2c388fc0eda3309c22b46e1a2"
            },
            "src/third_party/openscreen/src/third_party/tinycbor/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-fMKBFUSKmODQyg4hKIa1hwnEKIV6WBbY1Gb8DOSnaHA=",
                "url": "https://chromium.googlesource.com/external/github.com/intel/tinycbor.git",
                "rev": "d393c16f3eb30d0c47e6f9d92db62272f0ec4dc7"
            },
            "src/third_party/pdfium": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-3FXPYcZZtfwzlkkakKczjoYbDURBA/QDCVdOn+98864=",
                "url": "https://pdfium.googlesource.com/pdfium.git",
                "rev": "9505810f66cc3dde86c30d072de53ca6fc8a45de"
            },
            "src/third_party/perfetto": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-AJWzQUYiml374LUZyku0ZTEM+lXAKsjc1YbsLfCfMGo=",
                "url": "https://android.googlesource.com/platform/external/perfetto.git",
                "rev": "f2da6df2f144e41e1c1428f11e8b388eaf8a2209"
            },
            "src/third_party/pthreadpool/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-Pfvievhma1rOpbLdSrIX4KaZyRpdvrnjRzzPYl3fDQo=",
                "url": "https://chromium.googlesource.com/external/github.com/Maratyszcza/pthreadpool.git",
                "rev": "1787867f6183f056420e532eec640cba25efafea"
            },
            "src/third_party/pyelftools": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-I/7p3IEvfP/gkes4kx18PvWwhAKilQKb67GXoW4zFB4=",
                "url": "https://chromium.googlesource.com/chromiumos/third_party/pyelftools.git",
                "rev": "19b3e610c86fcadb837d252c794cb5e8008826ae"
            },
            "src/third_party/quic_trace/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-Nf9ZDLcE1JunhbpEMHhrY2ROnbgrvVZoRkPwWq1DU0g=",
                "url": "https://chromium.googlesource.com/external/github.com/google/quic-trace.git",
                "rev": "caa0a6eaba816ecb737f9a70782b7c80b8ac8dbc"
            },
            "src/third_party/pywebsocket3/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-WEqqu2/7fLqcf/2/IcD7/FewRSZ6jTgVlVBvnihthYQ=",
                "url": "https://chromium.googlesource.com/external/github.com/GoogleChromeLabs/pywebsocket3.git",
                "rev": "50602a14f1b6da17e0b619833a13addc6ea78bc2"
            },
            "src/third_party/re2/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-9dMTr5VuQfteKK/xIqZUqLnGu26ZYlFUfZTZNgzKUN4=",
                "url": "https://chromium.googlesource.com/external/github.com/google/re2.git",
                "rev": "11073deb73b3d01018308863c0bcdfd0d51d3e70"
            },
            "src/third_party/ruy/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-Sv2rfq3ghddpcJHn7Z2FTXpwKdzgJOiSGu6HhV6nXIQ=",
                "url": "https://chromium.googlesource.com/external/github.com/google/ruy.git",
                "rev": "363f252289fb7a1fba1703d99196524698cb884d"
            },
            "src/third_party/skia": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-7kD6XLaeriWGXM69rCcqPoAkX0NAFOFhFX/SBm710cA=",
                "url": "https://skia.googlesource.com/skia.git",
                "rev": "ea1a1635fcf5b1f68b59cd3f8649a0abfab65cfd"
            },
            "src/third_party/smhasher/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-RyC//me08hwGXRrWcK8GZ1uhIkBq4FByA7fHCVDsniw=",
                "url": "https://chromium.googlesource.com/external/smhasher.git",
                "rev": "e87738e57558e0ec472b2fc3a643b838e5b6e88f"
            },
            "src/third_party/snappy/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-5fV6NfO8vmqK+iCwpLtE2YjYOzjsshctauyjNIOxrH0=",
                "url": "https://chromium.googlesource.com/external/github.com/google/snappy.git",
                "rev": "c9f9edf6d75bb065fa47468bf035e051a57bec7c"
            },
            "src/third_party/sqlite/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-MO4fd5ROy8vtUeGYeWaMT6uO/zYUruPCPjHnZT9elcI=",
                "url": "https://chromium.googlesource.com/chromium/deps/sqlite.git",
                "rev": "f6752b7ed1fe3cc1491c0c47ec5804ee2bd0e59b"
            },
            "src/third_party/swiftshader": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-H2A42dNT1DgRknyL3lzHlWbxURskjTqzvqd097w4Tho=",
                "url": "https://swiftshader.googlesource.com/SwiftShader.git",
                "rev": "23e97b79fb9193bf88e79c16c6a577c680edb2d6"
            },
            "src/third_party/text-fragments-polyfill/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-4rW2u1cQAF4iPWHAt1FvVXIpz2pmI901rEPks/w/iFA=",
                "url": "https://chromium.googlesource.com/external/github.com/GoogleChromeLabs/text-fragments-polyfill.git",
                "rev": "c036420683f672d685e27415de0a5f5e85bdc23f"
            },
            "src/third_party/tflite/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-TdBBSPfUCIst1G6BixqcOx9dQiN6f1wmSRS9Gjh4K1U=",
                "url": "https://chromium.googlesource.com/external/github.com/tensorflow/tensorflow.git",
                "rev": "ab14323eaf8522fa608fe047d99249bc844c47cd"
            },
            "src/third_party/vulkan-deps": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-4Mwtu/Qmz0wAm8YCWYq9ogzKLg7nEwgka3+OFI/s+fs=",
                "url": "https://chromium.googlesource.com/vulkan-deps",
                "rev": "a52479099cf2862650df9dbc12e2e202e345901e"
            },
            "src/third_party/vulkan-deps/glslang/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-UOJ4O1zRbW0qxj2oxSKSdvOwZOD907Q0flXxQjYavuQ=",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/glslang",
                "rev": "9c7fd1a33e5cecbe465e1cd70170167d5e40d398"
            },
            "src/third_party/vulkan-deps/spirv-cross/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-UmzXWpjwGgLijP+BumSK1OW+8OrtWjBXgIt4vzI8ZvQ=",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/SPIRV-Cross",
                "rev": "fc9bee27f445644635e83ef111ef54944bb6e3af"
            },
            "src/third_party/vulkan-deps/spirv-headers/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-a7OjEH3WczZa8VFvPGGh/J+8nmtYDf0eSUuxU20XSJI=",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/SPIRV-Headers",
                "rev": "cfbe4feef20c3c0628712c2792624f0221e378ac"
            },
            "src/third_party/vulkan-deps/spirv-tools/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-UfcBkLIDSEgKyEz11Tsf3FIM+R6ZboWmDVKR1xu6q6o=",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/SPIRV-Tools",
                "rev": "25ad5e19f193429b737433d5f6151062ddbc1680"
            },
            "src/third_party/vulkan-deps/vulkan-headers/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-bilEf59jBDgl5WUgOZpRSMkp33C/rssj37rdvHaxRGU=",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-Headers",
                "rev": "8a397558c4d2a4bf9e64e900c45a7e65664c32b2"
            },
            "src/third_party/vulkan-deps/vulkan-loader/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-gLNrvpBDnKOr03e5TKxMUVCQ70fI27x3MSLVjMkw2d8=",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-Loader",
                "rev": "f035e57c171ce9009f2c47b5488a66c653843501"
            },
            "src/third_party/vulkan-deps/vulkan-tools/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-VEBPgOGdrzQoIYU7BTioa6m/OH1TUGXGaF7FH5B/h2M=",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-Tools",
                "rev": "df10a2759b4b60d59b735882217a749d8e5be660"
            },
            "src/third_party/vulkan-deps/vulkan-validation-layers/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-JqLhqdqKX2n0ifLfS7ymOL2kcelUjdmsLKqmkqPwTQU=",
                "url": "https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-ValidationLayers",
                "rev": "3d530f6921f7a9defa297eec25fcef77c9b96282"
            },
            "src/third_party/vulkan_memory_allocator": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-rARuPHa/gEAOTM8/Fnob0bU0Jv+UKLiwe3o0UGWYlME=",
                "url": "https://chromium.googlesource.com/external/github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator.git",
                "rev": "ebe84bec02c041d28f902da0214bf442743fc907"
            },
            "src/third_party/wayland/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-fcZtJP/8Ck+9WyPvt3AhogwPae5+gAxdIaEMp7eSr44=",
                "url": "https://chromium.googlesource.com/external/anongit.freedesktop.org/git/wayland/wayland.git",
                "rev": "c7473676b8abc682e820546287044cee3bca9147"
            },
            "src/third_party/wayland-protocols/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-3QK+ZN6IFUFkDxySSoQwP1J3JnTlD7JPaUk6Tr/d/k4=",
                "url": "https://chromium.googlesource.com/external/anongit.freedesktop.org/git/wayland/wayland-protocols.git",
                "rev": "4624cfaaf563cd7be5e2e2087c8de6d3a48ea867"
            },
            "src/third_party/wayland-protocols/kde": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-Dmcp/2ms/k7NxPPmPkp0YNfM9z2Es1ZO0uX10bc7N2Y=",
                "url": "https://chromium.googlesource.com/external/github.com/KDE/plasma-wayland-protocols.git",
                "rev": "0b07950714b3a36c9b9f71fc025fc7783e82926e"
            },
            "src/third_party/wayland-protocols/gtk": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-75XNnLkF5Lt1LMRGT+T61k0/mLa3kkynfN+QWvZ0LiQ=",
                "url": "https://chromium.googlesource.com/external/github.com/GNOME/gtk.git",
                "rev": "40ebed3a03aef096addc0af09fec4ec529d882a0"
            },
            "src/third_party/webdriver/pylib": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-WIqWXIKVgElgg8P8laLAlUrgwodGdeVcwohZxnPKedw=",
                "url": "https://chromium.googlesource.com/external/github.com/SeleniumHQ/selenium/py.git",
                "rev": "fc5e7e70c098bfb189a9a74746809ad3c5c34e04"
            },
            "src/third_party/webgl/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-BRF0/WxbwxTby1o+zFHU42s7xYJUmcsgfu4DFX97jRU=",
                "url": "https://chromium.googlesource.com/external/khronosgroup/webgl.git",
                "rev": "d1b65aa5a88f6efd900604dfcda840154e9f16e2"
            },
            "src/third_party/webgpu-cts/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-pSwkkIcfrWP6NKNFtHlyq2Z7zYqbKU6V/GXMqH6rYBs=",
                "url": "https://chromium.googlesource.com/external/github.com/gpuweb/cts.git",
                "rev": "7d2d22292ce5af280c8c5849ed7f0679d7ab70e9"
            },
            "src/third_party/webrtc": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-J/XEHY4y9j4bg0+ORkDydVOvtncPLMN/9cy073lpMOM=",
                "url": "https://webrtc.googlesource.com/src.git",
                "rev": "151be743d4c83671565f9c1eada3f4a0b2e44dea"
            },
            "src/third_party/wuffs/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-HP8Vf1C9DuA9H+busf3lFoF9SsYqviLKv0l73CxmNEI=",
                "url": "https://skia.googlesource.com/external/github.com/google/wuffs-mirror-release-c.git",
                "rev": "fe9d08f2b6e80af691bfb1a718e144c49a1b9eba"
            },
            "src/third_party/weston/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-EKl6oIM8Vml9wtSIb9ExFIuuJohbU/rsG3JVS5thaUU=",
                "url": "https://chromium.googlesource.com/external/anongit.freedesktop.org/git/wayland/weston.git",
                "rev": "420cfd00f2de91de74bd9d4d8348e43c582d29f0"
            },
            "src/third_party/xdg-utils": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-t3uV9JkkQQIwmezzSoEdTMLSizZdLQB7eLKTRQGH4kQ=",
                "url": "https://chromium.googlesource.com/chromium/deps/xdg-utils.git",
                "rev": "d80274d5869b17b8c9067a1022e4416ee7ed5e0d"
            },
            "src/third_party/xnnpack/src": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-vsn3lrog5affus0qxc4TK2Z/tdd/E6hBYeUQRWoDZPQ=",
                "url": "https://chromium.googlesource.com/external/github.com/google/XNNPACK.git",
                "rev": "b9d4073a6913891ce9cbd8965c8d506075d2a45a"
            },
            "src/tools/page_cycler/acid3": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-+7Ynz7k/dWdd4Wo7Rjzvc8GY9gTsjzjG3GdNsuDKszY=",
                "url": "https://chromium.googlesource.com/chromium/deps/acid3.git",
                "rev": "6be0a66a1ebd7ebc5abc1b2f405a945f6d871521"
            },
            "src/v8": {
                "fetcher": "fetchFromGitiles",
                "hash": "sha256-pmam8TVqtxmfc0V1gy2R1jhW+dF2ybzeKbGZKAbJveY=",
                "url": "https://chromium.googlesource.com/v8/v8.git",
                "rev": "978934af4a291282d994fc184d5dc03a82deb5df"
            },
            "src/third_party/nan": {
                "fetcher": "fetchFromGitHub",
                "hash": "sha256-tur5CExvwuSmwqBwH9o8OZWzDuifRybjEb+4/tm6exk=",
                "owner": "nodejs",
                "repo": "nan",
                "rev": "16fa32231e2ccd89d2804b3f765319128b20c4ac"
            },
            "src/third_party/electron_node": {
                "fetcher": "fetchFromGitHub",
                "hash": "sha256-XBm+WYXQ8DM1HU6NFciGSfkbHDXPbTyg0gScQCbbpQU=",
                "owner": "nodejs",
                "repo": "node",
                "rev": "v18.15.0"
            },
            "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/ReactiveObjC": {
                "fetcher": "fetchFromGitHub",
                "hash": "sha256-/MCqC1oFe3N9TsmfVLgl+deR6qHU6ZFQQjudb9zB5Mo=",
                "owner": "ReactiveCocoa",
                "repo": "ReactiveObjC",
                "rev": "74ab5baccc6f7202c8ac69a8d1e152c29dc1ea76"
            },
            "src/third_party/squirrel.mac/vendor/Mantle": {
                "fetcher": "fetchFromGitHub",
                "hash": "sha256-ogFkMJybf2Ue606ojXJu6Gy5aXSi1bSKm60qcTAIaPk=",
                "owner": "Mantle",
                "repo": "Mantle",
                "rev": "78d3966b3c331292ea29ec38661b25df0a245948"
            }
        },
        "version": "25.9.0",
        "modules": "116",
        "chrome": "114.0.5735.289",
        "node": "18.15.0",
        "chromium": {
            "version": "114.0.5735.289",
            "deps": {
                "gn": {
                    "version": "2023-04-19",
                    "url": "https://gn.googlesource.com/gn",
                    "rev": "5a004f9427a050c6c393c07ddb85cba8ff3849fa",
                    "sha256": "01xrh9m9m6x8lz0vxwdw2mrhrvnw93zpg09hwdhqakj06agf4jjk"
                }
            }
        },
        "chromium_npm_hash": "sha256-WFkyT1V4jNkWUyyHF68yEe50GhdlNZJBXuQvVVGPk6A=",
        "electron_yarn_hash": "0fq44b91ha1lbgakwfz16z0g10y66c7m8gvlkg1ci81rzjrj0qpz"
    }
}