forked from chromium/chromium
-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy path.gitmodules
1118 lines (1118 loc) · 47.3 KB
/
.gitmodules
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
[submodule "third_party/clang-format/script"]
path = third_party/clang-format/script
url = https://chromium.googlesource.com/external/github.com/llvm/llvm-project/clang/tools/clang-format
ignore = all
[submodule "chrome/browser/resources/preinstalled_web_apps/internal"]
path = chrome/browser/resources/preinstalled_web_apps/internal
url = https://chrome-internal.googlesource.com/chrome/components/default_apps
gclient-condition = checkout_src_internal
ignore = all
[submodule "chrome/installer/mac/third_party/xz/xz"]
path = chrome/installer/mac/third_party/xz/xz
url = https://chromium.googlesource.com/chromium/deps/xz
gclient-condition = checkout_mac
ignore = all
[submodule "third_party/libc++/src"]
path = third_party/libc++/src
url = https://chromium.googlesource.com/external/github.com/llvm/llvm-project/libcxx
ignore = all
[submodule "third_party/libc++abi/src"]
path = third_party/libc++abi/src
url = https://chromium.googlesource.com/external/github.com/llvm/llvm-project/libcxxabi
ignore = all
[submodule "third_party/libunwind/src"]
path = third_party/libunwind/src
url = https://chromium.googlesource.com/external/github.com/llvm/llvm-project/libunwind
ignore = all
[submodule "chrome/test/data/autofill/captured_sites/artifacts"]
path = chrome/test/data/autofill/captured_sites/artifacts
url = https://chrome-internal.googlesource.com/chrome/test/captured_sites/autofill
gclient-condition = checkout_chromium_autofill_test_dependencies
ignore = all
[submodule "chrome/test/data/password/captured_sites/artifacts"]
path = chrome/test/data/password/captured_sites/artifacts
url = https://chrome-internal.googlesource.com/chrome/test/captured_sites/password
gclient-condition = checkout_chromium_password_manager_test_dependencies
ignore = all
[submodule "chrome/test/data/perf/canvas_bench"]
path = chrome/test/data/perf/canvas_bench
url = https://chromium.googlesource.com/chromium/canvas_bench
ignore = all
[submodule "chrome/test/data/perf/frame_rate/content"]
path = chrome/test/data/perf/frame_rate/content
url = https://chromium.googlesource.com/chromium/frame_rate/content
ignore = all
[submodule "chrome/test/data/xr/webvr_info"]
path = chrome/test/data/xr/webvr_info
url = https://chromium.googlesource.com/external/github.com/toji/webvr.info
ignore = all
[submodule "clank"]
path = clank
url = https://chrome-internal.googlesource.com/clank/internal/apps
gclient-condition = checkout_android and checkout_src_internal
ignore = all
[submodule "docs/website"]
path = docs/website
url = https://chromium.googlesource.com/website
ignore = all
[submodule "ios/third_party/earl_grey2/src"]
path = ios/third_party/earl_grey2/src
url = https://chromium.googlesource.com/external/github.com/google/EarlGrey
gclient-condition = checkout_ios
ignore = all
[submodule "ios/third_party/edo/src"]
path = ios/third_party/edo/src
url = https://chromium.googlesource.com/external/github.com/google/eDistantObject
gclient-condition = checkout_ios
ignore = all
[submodule "ios/third_party/gtx/src"]
path = ios/third_party/gtx/src
url = https://chromium.googlesource.com/external/github.com/google/GTXiLib
gclient-condition = checkout_ios
ignore = all
[submodule "ios/third_party/lottie/src"]
path = ios/third_party/lottie/src
url = https://chromium.googlesource.com/external/github.com/airbnb/lottie-ios
gclient-condition = checkout_ios
ignore = all
[submodule "ios/third_party/material_components_ios/src"]
path = ios/third_party/material_components_ios/src
url = https://chromium.googlesource.com/external/github.com/material-components/material-components-ios
gclient-condition = checkout_ios
ignore = all
[submodule "ios/third_party/material_font_disk_loader_ios/src"]
path = ios/third_party/material_font_disk_loader_ios/src
url = https://chromium.googlesource.com/external/github.com/material-foundation/material-font-disk-loader-ios
gclient-condition = checkout_ios
ignore = all
[submodule "ios/third_party/material_internationalization_ios/src"]
path = ios/third_party/material_internationalization_ios/src
url = https://chromium.googlesource.com/external/github.com/material-foundation/material-internationalization-ios
gclient-condition = checkout_ios
ignore = all
[submodule "ios/third_party/material_roboto_font_loader_ios/src"]
path = ios/third_party/material_roboto_font_loader_ios/src
url = https://chromium.googlesource.com/external/github.com/material-foundation/material-roboto-font-loader-ios
gclient-condition = checkout_ios
ignore = all
[submodule "ios/third_party/material_sprited_animation_view_ios/src"]
path = ios/third_party/material_sprited_animation_view_ios/src
url = https://chromium.googlesource.com/external/github.com/material-foundation/material-sprited-animation-view-ios
gclient-condition = checkout_ios
ignore = all
[submodule "ios/third_party/material_text_accessibility_ios/src"]
path = ios/third_party/material_text_accessibility_ios/src
url = https://chromium.googlesource.com/external/github.com/material-foundation/material-text-accessibility-ios
gclient-condition = checkout_ios
ignore = all
[submodule "ios/third_party/motion_interchange_objc/src"]
path = ios/third_party/motion_interchange_objc/src
url = https://chromium.googlesource.com/external/github.com/material-motion/motion-interchange-objc
gclient-condition = checkout_ios
ignore = all
[submodule "ios/third_party/motion_animator_objc/src"]
path = ios/third_party/motion_animator_objc/src
url = https://chromium.googlesource.com/external/github.com/material-motion/motion-animator-objc
gclient-condition = checkout_ios
ignore = all
[submodule "ios/third_party/motion_transitioning_objc/src"]
path = ios/third_party/motion_transitioning_objc/src
url = https://chromium.googlesource.com/external/github.com/material-motion/motion-transitioning-objc
gclient-condition = checkout_ios
ignore = all
[submodule "ios/third_party/ochamcrest/src"]
path = ios/third_party/ochamcrest/src
url = https://chromium.googlesource.com/external/github.com/hamcrest/OCHamcrest
gclient-condition = checkout_ios
ignore = all
[submodule "ios/third_party/webkit/src"]
path = ios/third_party/webkit/src
url = https://chromium.googlesource.com/external/github.com/WebKit/webkit
gclient-condition = checkout_ios and checkout_ios_webkit
ignore = all
[submodule "media/cdm/api"]
path = media/cdm/api
url = https://chromium.googlesource.com/chromium/cdm
ignore = all
[submodule "native_client"]
path = native_client
url = https://chromium.googlesource.com/native_client/src/native_client
gclient-condition = checkout_nacl
ignore = all
[submodule "net/third_party/quiche/src"]
path = net/third_party/quiche/src
url = https://quiche.googlesource.com/quiche
ignore = all
[submodule "testing/libfuzzer/fuzzers/wasm_corpus"]
path = testing/libfuzzer/fuzzers/wasm_corpus
url = https://chromium.googlesource.com/v8/fuzzer_wasm_corpus
ignore = all
[submodule "third_party/accessibility_test_framework/src"]
path = third_party/accessibility_test_framework/src
url = https://chromium.googlesource.com/external/github.com/google/Accessibility-Test-Framework-for-Android
ignore = all
[submodule "third_party/android_protobuf/src"]
path = third_party/android_protobuf/src
url = https://android.googlesource.com/platform/external/protobuf
gclient-condition = checkout_android
ignore = all
[submodule "third_party/androidx_javascriptengine/src"]
path = third_party/androidx_javascriptengine/src
url = https://chromium.googlesource.com/aosp/platform/frameworks/support/javascriptengine/javascriptengine/src
gclient-condition = checkout_android
ignore = all
[submodule "third_party/angle"]
path = third_party/angle
url = https://chromium.googlesource.com/angle/angle
ignore = all
[submodule "third_party/anonymous_tokens/src"]
path = third_party/anonymous_tokens/src
url = https://chromium.googlesource.com/external/github.com/google/anonymous-tokens
ignore = all
[submodule "third_party/content_analysis_sdk/src"]
path = third_party/content_analysis_sdk/src
url = https://chromium.googlesource.com/external/github.com/chromium/content_analysis_sdk
ignore = all
[submodule "third_party/dav1d/libdav1d"]
path = third_party/dav1d/libdav1d
url = https://chromium.googlesource.com/external/github.com/videolan/dav1d
ignore = all
[submodule "third_party/dawn"]
path = third_party/dawn
url = https://dawn.googlesource.com/dawn
ignore = all
[submodule "third_party/highway/src"]
path = third_party/highway/src
url = https://chromium.googlesource.com/external/github.com/google/highway
ignore = all
[submodule "third_party/apache-portable-runtime/src"]
path = third_party/apache-portable-runtime/src
url = https://chromium.googlesource.com/external/apache-portable-runtime
gclient-condition = checkout_android
ignore = all
[submodule "third_party/barhopper"]
path = third_party/barhopper
url = https://chrome-internal.googlesource.com/chrome/deps/barhopper
gclient-condition = checkout_src_internal and checkout_chromeos
ignore = all
[submodule "third_party/google_benchmark/src"]
path = third_party/google_benchmark/src
url = https://chromium.googlesource.com/external/github.com/google/benchmark
ignore = all
[submodule "third_party/boringssl/src"]
path = third_party/boringssl/src
url = https://boringssl.googlesource.com/boringssl
ignore = all
[submodule "third_party/breakpad/breakpad"]
path = third_party/breakpad/breakpad
url = https://chromium.googlesource.com/breakpad/breakpad
ignore = all
[submodule "third_party/cast_core/public/src"]
path = third_party/cast_core/public/src
url = https://chromium.googlesource.com/cast_core/public
ignore = all
[submodule "third_party/catapult"]
path = third_party/catapult
url = https://chromium.googlesource.com/catapult
ignore = all
[submodule "third_party/ced/src"]
path = third_party/ced/src
url = https://chromium.googlesource.com/external/github.com/google/compact_enc_det
ignore = all
[submodule "third_party/chromium-variations"]
path = third_party/chromium-variations
url = https://chromium.googlesource.com/chromium-variations
ignore = all
[submodule "third_party/chromevox/third_party/sre/src"]
path = third_party/chromevox/third_party/sre/src
url = https://chromium.googlesource.com/external/github.com/zorkow/speech-rule-engine
gclient-condition = checkout_chromeos
ignore = all
[submodule "third_party/chromite"]
path = third_party/chromite
url = https://chromium.googlesource.com/chromiumos/chromite
gclient-condition = checkout_chromeos
ignore = all
[submodule "third_party/cld_3/src"]
path = third_party/cld_3/src
url = https://chromium.googlesource.com/external/github.com/google/cld_3
ignore = all
[submodule "third_party/colorama/src"]
path = third_party/colorama/src
url = https://chromium.googlesource.com/external/colorama
ignore = all
[submodule "third_party/cpu_features/src"]
path = third_party/cpu_features/src
url = https://chromium.googlesource.com/external/github.com/google/cpu_features
ignore = all
[submodule "third_party/cpuinfo/src"]
path = third_party/cpuinfo/src
url = https://chromium.googlesource.com/external/github.com/pytorch/cpuinfo
ignore = all
[submodule "third_party/crc32c/src"]
path = third_party/crc32c/src
url = https://chromium.googlesource.com/external/github.com/google/crc32c
ignore = all
[submodule "third_party/cros_system_api"]
path = third_party/cros_system_api
url = https://chromium.googlesource.com/chromiumos/platform2/system_api
gclient-condition = checkout_linux or checkout_chromeos
ignore = all
[submodule "third_party/crossbench"]
path = third_party/crossbench
url = https://chromium.googlesource.com/crossbench
ignore = all
[submodule "third_party/crubit/src"]
path = third_party/crubit/src
url = https://chromium.googlesource.com/external/github.com/google/crubit
gclient-condition = checkout_crubit
ignore = all
[submodule "third_party/depot_tools"]
path = third_party/depot_tools
url = https://chromium.googlesource.com/chromium/tools/depot_tools
ignore = all
[submodule "third_party/devtools-frontend/src"]
path = third_party/devtools-frontend/src
url = https://chromium.googlesource.com/devtools/devtools-frontend
ignore = all
[submodule "third_party/devtools-frontend-internal"]
path = third_party/devtools-frontend-internal
url = https://chrome-internal.googlesource.com/devtools/devtools-internal
gclient-condition = checkout_src_internal
ignore = all
[submodule "third_party/dom_distiller_js/dist"]
path = third_party/dom_distiller_js/dist
url = https://chromium.googlesource.com/chromium/dom-distiller/dist
ignore = all
[submodule "third_party/eigen3/src"]
path = third_party/eigen3/src
url = https://chromium.googlesource.com/external/gitlab.com/libeigen/eigen
ignore = all
[submodule "third_party/emoji-metadata/src"]
path = third_party/emoji-metadata/src
url = https://chromium.googlesource.com/external/github.com/googlefonts/emoji-metadata
gclient-condition = checkout_chromeos
ignore = all
[submodule "third_party/farmhash/src"]
path = third_party/farmhash/src
url = https://chromium.googlesource.com/external/github.com/google/farmhash
ignore = all
[submodule "third_party/ffmpeg"]
path = third_party/ffmpeg
url = https://chromium.googlesource.com/chromium/third_party/ffmpeg
ignore = all
[submodule "third_party/flac"]
path = third_party/flac
url = https://chromium.googlesource.com/chromium/deps/flac
ignore = all
[submodule "third_party/flatbuffers/src"]
path = third_party/flatbuffers/src
url = https://chromium.googlesource.com/external/github.com/google/flatbuffers
ignore = all
[submodule "third_party/fontconfig/src"]
path = third_party/fontconfig/src
url = https://chromium.googlesource.com/external/fontconfig
gclient-condition = checkout_linux
ignore = all
[submodule "third_party/fp16/src"]
path = third_party/fp16/src
url = https://chromium.googlesource.com/external/github.com/Maratyszcza/FP16
ignore = all
[submodule "third_party/gemmlowp/src"]
path = third_party/gemmlowp/src
url = https://chromium.googlesource.com/external/github.com/google/gemmlowp
ignore = all
[submodule "third_party/grpc/src"]
path = third_party/grpc/src
url = https://chromium.googlesource.com/external/github.com/grpc/grpc
ignore = all
[submodule "third_party/freetype/src"]
path = third_party/freetype/src
url = https://chromium.googlesource.com/chromium/src/third_party/freetype2
ignore = all
[submodule "third_party/freetype-testing/src"]
path = third_party/freetype-testing/src
url = https://chromium.googlesource.com/external/github.com/freetype/freetype2-testing
ignore = all
[submodule "third_party/fxdiv/src"]
path = third_party/fxdiv/src
url = https://chromium.googlesource.com/external/github.com/Maratyszcza/FXdiv
ignore = all
[submodule "third_party/harfbuzz-ng/src"]
path = third_party/harfbuzz-ng/src
url = https://chromium.googlesource.com/external/github.com/harfbuzz/harfbuzz
ignore = all
[submodule "third_party/instrumented_libs"]
path = third_party/instrumented_libs
url = https://chromium.googlesource.com/chromium/third_party/instrumented_libraries
gclient-condition = checkout_instrumented_libraries
ignore = all
[submodule "third_party/jszip/src"]
path = third_party/jszip/src
url = https://chromium.googlesource.com/external/github.com/Stuk/jszip
gclient-condition = checkout_ios
ignore = all
[submodule "third_party/emoji-segmenter/src"]
path = third_party/emoji-segmenter/src
url = https://chromium.googlesource.com/external/github.com/google/emoji-segmenter
ignore = all
[submodule "third_party/ots/src"]
path = third_party/ots/src
url = https://chromium.googlesource.com/external/github.com/khaledhosny/ots
ignore = all
[submodule "third_party/libgav1/src"]
path = third_party/libgav1/src
url = https://chromium.googlesource.com/codecs/libgav1
ignore = all
[submodule "third_party/google_toolbox_for_mac/src"]
path = third_party/google_toolbox_for_mac/src
url = https://chromium.googlesource.com/external/github.com/google/google-toolbox-for-mac
gclient-condition = checkout_ios or checkout_mac
ignore = all
[submodule "third_party/google-truth/src"]
path = third_party/google-truth/src
url = https://chromium.googlesource.com/external/github.com/google/truth
gclient-condition = checkout_android
ignore = all
[submodule "third_party/googletest/src"]
path = third_party/googletest/src
url = https://chromium.googlesource.com/external/github.com/google/googletest
ignore = all
[submodule "third_party/gperf"]
path = third_party/gperf
url = https://chromium.googlesource.com/chromium/deps/gperf
gclient-condition = checkout_win
ignore = all
[submodule "third_party/cardboard/src"]
path = third_party/cardboard/src
url = https://chromium.googlesource.com/external/github.com/googlevr/cardboard
gclient-condition = checkout_android
ignore = all
[submodule "third_party/arcore-android-sdk/src"]
path = third_party/arcore-android-sdk/src
url = https://chromium.googlesource.com/external/github.com/google-ar/arcore-android-sdk
gclient-condition = checkout_android
ignore = all
[submodule "third_party/hunspell_dictionaries"]
path = third_party/hunspell_dictionaries
url = https://chromium.googlesource.com/chromium/deps/hunspell_dictionaries
ignore = all
[submodule "third_party/icu"]
path = third_party/icu
url = https://chromium.googlesource.com/chromium/deps/icu
ignore = all
[submodule "third_party/javalang/src"]
path = third_party/javalang/src
url = https://chromium.googlesource.com/external/github.com/c2nes/javalang
gclient-condition = checkout_android
ignore = all
[submodule "third_party/jsoncpp/source"]
path = third_party/jsoncpp/source
url = https://chromium.googlesource.com/external/github.com/open-source-parsers/jsoncpp
ignore = all
[submodule "third_party/junit/src"]
path = third_party/junit/src
url = https://chromium.googlesource.com/external/junit
gclient-condition = checkout_android
ignore = all
[submodule "third_party/leveldatabase/src"]
path = third_party/leveldatabase/src
url = https://chromium.googlesource.com/external/leveldb
ignore = all
[submodule "third_party/libFuzzer/src"]
path = third_party/libFuzzer/src
url = https://chromium.googlesource.com/external/github.com/llvm/llvm-project/compiler-rt/lib/fuzzer
ignore = all
[submodule "third_party/fuzztest/src"]
path = third_party/fuzztest/src
url = https://chromium.googlesource.com/external/github.com/google/fuzztest
ignore = all
[submodule "third_party/libaddressinput/src"]
path = third_party/libaddressinput/src
url = https://chromium.googlesource.com/external/libaddressinput
ignore = all
[submodule "third_party/libaom/source/libaom"]
path = third_party/libaom/source/libaom
url = https://aomedia.googlesource.com/aom
ignore = all
[submodule "third_party/libavif/src"]
path = third_party/libavif/src
url = https://chromium.googlesource.com/external/github.com/AOMediaCodec/libavif
ignore = all
[submodule "third_party/crabbyavif/src"]
path = third_party/crabbyavif/src
url = https://chromium.googlesource.com/external/github.com/webmproject/CrabbyAvif
ignore = all
[submodule "third_party/libavifinfo/src"]
path = third_party/libavifinfo/src
url = https://aomedia.googlesource.com/libavifinfo
ignore = all
[submodule "third_party/nearby/src"]
path = third_party/nearby/src
url = https://chromium.googlesource.com/external/github.com/google/nearby-connections
ignore = all
[submodule "third_party/beto-core/src"]
path = third_party/beto-core/src
url = https://beto-core.googlesource.com/beto-core
ignore = all
[submodule "third_party/securemessage/src"]
path = third_party/securemessage/src
url = https://chromium.googlesource.com/external/github.com/google/securemessage
ignore = all
[submodule "third_party/speedometer/v3.0"]
path = third_party/speedometer/v3.0
url = https://chromium.googlesource.com/external/github.com/WebKit/Speedometer
ignore = all
[submodule "third_party/ukey2/src"]
path = third_party/ukey2/src
url = https://chromium.googlesource.com/external/github.com/google/ukey2
ignore = all
[submodule "third_party/cros-components/src"]
path = third_party/cros-components/src
url = https://chromium.googlesource.com/external/google3/cros_components
ignore = all
[submodule "third_party/libdrm/src"]
path = third_party/libdrm/src
url = https://chromium.googlesource.com/chromiumos/third_party/libdrm
gclient-condition = checkout_linux
ignore = all
[submodule "third_party/expat/src"]
path = third_party/expat/src
url = https://chromium.googlesource.com/external/github.com/libexpat/libexpat
ignore = all
[submodule "third_party/libipp/libipp"]
path = third_party/libipp/libipp
url = https://chromium.googlesource.com/chromiumos/platform2/libipp
gclient-condition = checkout_linux
ignore = all
[submodule "third_party/libjpeg_turbo"]
path = third_party/libjpeg_turbo
url = https://chromium.googlesource.com/chromium/deps/libjpeg_turbo
ignore = all
[submodule "third_party/liblouis/src"]
path = third_party/liblouis/src
url = https://chromium.googlesource.com/external/liblouis-github
gclient-condition = checkout_linux
ignore = all
[submodule "third_party/libphonenumber/dist"]
path = third_party/libphonenumber/dist
url = https://chromium.googlesource.com/external/libphonenumber
ignore = all
[submodule "third_party/libprotobuf-mutator/src"]
path = third_party/libprotobuf-mutator/src
url = https://chromium.googlesource.com/external/github.com/google/libprotobuf-mutator
ignore = all
[submodule "third_party/libsrtp"]
path = third_party/libsrtp
url = https://chromium.googlesource.com/chromium/deps/libsrtp
ignore = all
[submodule "third_party/libsync/src"]
path = third_party/libsync/src
url = https://chromium.googlesource.com/aosp/platform/system/core/libsync
gclient-condition = checkout_linux
ignore = all
[submodule "third_party/libunwindstack"]
path = third_party/libunwindstack
url = https://chromium.googlesource.com/chromium/src/third_party/libunwindstack
gclient-condition = checkout_android
ignore = all
[submodule "third_party/libvpx/source/libvpx"]
path = third_party/libvpx/source/libvpx
url = https://chromium.googlesource.com/webm/libvpx
ignore = all
[submodule "third_party/libwebm/source"]
path = third_party/libwebm/source
url = https://chromium.googlesource.com/webm/libwebm
ignore = all
[submodule "third_party/libwebp/src"]
path = third_party/libwebp/src
url = https://chromium.googlesource.com/webm/libwebp
ignore = all
[submodule "third_party/libyuv"]
path = third_party/libyuv
url = https://chromium.googlesource.com/libyuv/libyuv
ignore = all
[submodule "third_party/lighttpd"]
path = third_party/lighttpd
url = https://chromium.googlesource.com/chromium/deps/lighttpd
gclient-condition = checkout_mac or checkout_win
ignore = all
[submodule "third_party/lss"]
path = third_party/lss
url = https://chromium.googlesource.com/linux-syscall-support
gclient-condition = checkout_android or checkout_linux
ignore = all
[submodule "third_party/material_color_utilities/src"]
path = third_party/material_color_utilities/src
url = https://chromium.googlesource.com/external/github.com/material-foundation/material-color-utilities
ignore = all
[submodule "third_party/material_design_icons/src"]
path = third_party/material_design_icons/src
url = https://chromium.googlesource.com/external/github.com/google/material-design-icons
gclient-condition = checkout_ios
ignore = all
[submodule "third_party/microsoft_dxheaders/src"]
path = third_party/microsoft_dxheaders/src
url = https://chromium.googlesource.com/external/github.com/microsoft/DirectX-Headers
gclient-condition = checkout_win
ignore = all
[submodule "third_party/minigbm/src"]
path = third_party/minigbm/src
url = https://chromium.googlesource.com/chromiumos/platform/minigbm
gclient-condition = checkout_linux
ignore = all
[submodule "third_party/nasm"]
path = third_party/nasm
url = https://chromium.googlesource.com/chromium/deps/nasm
ignore = all
[submodule "third_party/neon_2_sse/src"]
path = third_party/neon_2_sse/src
url = https://chromium.googlesource.com/external/github.com/intel/ARM_NEON_2_x86_SSE
ignore = all
[submodule "third_party/netty-tcnative/src"]
path = third_party/netty-tcnative/src
url = https://chromium.googlesource.com/external/netty-tcnative
gclient-condition = checkout_android
ignore = all
[submodule "third_party/netty4/src"]
path = third_party/netty4/src
url = https://chromium.googlesource.com/external/netty4
gclient-condition = checkout_android
ignore = all
[submodule "third_party/openh264/src"]
path = third_party/openh264/src
url = https://chromium.googlesource.com/external/github.com/cisco/openh264
ignore = all
[submodule "third_party/openscreen/src"]
path = third_party/openscreen/src
url = https://chromium.googlesource.com/openscreen
ignore = all
[submodule "third_party/openxr/src"]
path = third_party/openxr/src
url = https://chromium.googlesource.com/external/github.com/KhronosGroup/OpenXR-SDK
gclient-condition = checkout_openxr
ignore = all
[submodule "third_party/pdfium"]
path = third_party/pdfium
url = https://pdfium.googlesource.com/pdfium
ignore = all
[submodule "third_party/perfetto"]
path = third_party/perfetto
url = https://android.googlesource.com/platform/external/perfetto
ignore = all
[submodule "third_party/perl"]
path = third_party/perl
url = https://chromium.googlesource.com/chromium/deps/perl
gclient-condition = checkout_win
ignore = all
[submodule "third_party/protobuf-javascript/src"]
path = third_party/protobuf-javascript/src
url = https://chromium.googlesource.com/external/github.com/protocolbuffers/protobuf-javascript
ignore = all
[submodule "third_party/pthreadpool/src"]
path = third_party/pthreadpool/src
url = https://chromium.googlesource.com/external/github.com/Maratyszcza/pthreadpool
ignore = all
[submodule "third_party/pyelftools"]
path = third_party/pyelftools
url = https://chromium.googlesource.com/chromiumos/third_party/pyelftools
gclient-condition = checkout_linux
ignore = all
[submodule "third_party/quic_trace/src"]
path = third_party/quic_trace/src
url = https://chromium.googlesource.com/external/github.com/google/quic-trace
ignore = all
[submodule "third_party/pywebsocket3/src"]
path = third_party/pywebsocket3/src
url = https://chromium.googlesource.com/external/github.com/GoogleChromeLabs/pywebsocket3
ignore = all
[submodule "third_party/re2/src"]
path = third_party/re2/src
url = https://chromium.googlesource.com/external/github.com/google/re2
ignore = all
[submodule "third_party/requests/src"]
path = third_party/requests/src
url = https://chromium.googlesource.com/external/github.com/kennethreitz/requests
gclient-condition = checkout_android
ignore = all
[submodule "third_party/ruy/src"]
path = third_party/ruy/src
url = https://chromium.googlesource.com/external/github.com/google/ruy
ignore = all
[submodule "third_party/skia"]
path = third_party/skia
url = https://skia.googlesource.com/skia
ignore = all
[submodule "third_party/smhasher/src"]
path = third_party/smhasher/src
url = https://chromium.googlesource.com/external/smhasher
ignore = all
[submodule "third_party/snappy/src"]
path = third_party/snappy/src
url = https://chromium.googlesource.com/external/github.com/google/snappy
ignore = all
[submodule "third_party/sqlite/src"]
path = third_party/sqlite/src
url = https://chromium.googlesource.com/chromium/deps/sqlite
ignore = all
[submodule "third_party/swiftshader"]
path = third_party/swiftshader
url = https://swiftshader.googlesource.com/SwiftShader
ignore = all
[submodule "third_party/text-fragments-polyfill/src"]
path = third_party/text-fragments-polyfill/src
url = https://chromium.googlesource.com/external/github.com/GoogleChromeLabs/text-fragments-polyfill
ignore = all
[submodule "third_party/tflite/src"]
path = third_party/tflite/src
url = https://chromium.googlesource.com/external/github.com/tensorflow/tensorflow
ignore = all
[submodule "third_party/vulkan-deps"]
path = third_party/vulkan-deps
url = https://chromium.googlesource.com/vulkan-deps
ignore = all
[submodule "third_party/glslang/src"]
path = third_party/glslang/src
url = https://chromium.googlesource.com/external/github.com/KhronosGroup/glslang
ignore = all
[submodule "third_party/spirv-cross/src"]
path = third_party/spirv-cross/src
url = https://chromium.googlesource.com/external/github.com/KhronosGroup/SPIRV-Cross
ignore = all
[submodule "third_party/spirv-headers/src"]
path = third_party/spirv-headers/src
url = https://chromium.googlesource.com/external/github.com/KhronosGroup/SPIRV-Headers
ignore = all
[submodule "third_party/spirv-tools/src"]
path = third_party/spirv-tools/src
url = https://chromium.googlesource.com/external/github.com/KhronosGroup/SPIRV-Tools
ignore = all
[submodule "third_party/vulkan-headers/src"]
path = third_party/vulkan-headers/src
url = https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-Headers
ignore = all
[submodule "third_party/vulkan-loader/src"]
path = third_party/vulkan-loader/src
url = https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-Loader
ignore = all
[submodule "third_party/vulkan-tools/src"]
path = third_party/vulkan-tools/src
url = https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-Tools
ignore = all
[submodule "third_party/vulkan-utility-libraries/src"]
path = third_party/vulkan-utility-libraries/src
url = https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-Utility-Libraries
ignore = all
[submodule "third_party/vulkan-validation-layers/src"]
path = third_party/vulkan-validation-layers/src
url = https://chromium.googlesource.com/external/github.com/KhronosGroup/Vulkan-ValidationLayers
ignore = all
[submodule "third_party/vulkan_memory_allocator"]
path = third_party/vulkan_memory_allocator
url = https://chromium.googlesource.com/external/github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator
ignore = all
[submodule "third_party/wayland/src"]
path = third_party/wayland/src
url = https://chromium.googlesource.com/external/anongit.freedesktop.org/git/wayland/wayland
gclient-condition = checkout_linux
ignore = all
[submodule "third_party/wayland-protocols/src"]
path = third_party/wayland-protocols/src
url = https://chromium.googlesource.com/external/anongit.freedesktop.org/git/wayland/wayland-protocols
gclient-condition = checkout_linux
ignore = all
[submodule "third_party/wayland-protocols/kde"]
path = third_party/wayland-protocols/kde
url = https://chromium.googlesource.com/external/github.com/KDE/plasma-wayland-protocols
gclient-condition = checkout_linux
ignore = all
[submodule "third_party/wayland-protocols/gtk"]
path = third_party/wayland-protocols/gtk
url = https://chromium.googlesource.com/external/github.com/GNOME/gtk
gclient-condition = checkout_linux
ignore = all
[submodule "third_party/webdriver/pylib"]
path = third_party/webdriver/pylib
url = https://chromium.googlesource.com/external/github.com/SeleniumHQ/selenium/py
ignore = all
[submodule "third_party/webgl/src"]
path = third_party/webgl/src
url = https://chromium.googlesource.com/external/khronosgroup/webgl
ignore = all
[submodule "third_party/webgpu-cts/src"]
path = third_party/webgpu-cts/src
url = https://chromium.googlesource.com/external/github.com/gpuweb/cts
ignore = all
[submodule "third_party/webrtc"]
path = third_party/webrtc
url = https://webrtc.googlesource.com/src
ignore = all
[submodule "third_party/wuffs/src"]
path = third_party/wuffs/src
url = https://skia.googlesource.com/external/github.com/google/wuffs-mirror-release-c
ignore = all
[submodule "third_party/weston/src"]
path = third_party/weston/src
url = https://chromium.googlesource.com/external/anongit.freedesktop.org/git/wayland/weston
gclient-condition = checkout_linux
ignore = all
[submodule "third_party/wlcs/src"]
path = third_party/wlcs/src
url = https://chromium.googlesource.com/external/github.com/MirServer/wlcs
gclient-condition = checkout_chromeos
ignore = all
[submodule "third_party/xdg-utils"]
path = third_party/xdg-utils
url = https://chromium.googlesource.com/chromium/deps/xdg-utils
gclient-condition = checkout_linux
ignore = all
[submodule "third_party/xnnpack/src"]
path = third_party/xnnpack/src
url = https://chromium.googlesource.com/external/github.com/google/XNNPACK
ignore = all
[submodule "tools/page_cycler/acid3"]
path = tools/page_cycler/acid3
url = https://chromium.googlesource.com/chromium/deps/acid3
ignore = all
[submodule "third_party/zstd/src"]
path = third_party/zstd/src
url = https://chromium.googlesource.com/external/github.com/facebook/zstd
ignore = all
[submodule "v8"]
path = v8
url = https://chromium.googlesource.com/v8/v8
ignore = all
[submodule "internal"]
path = internal
url = https://chrome-internal.googlesource.com/chrome/src-internal
gclient-condition = checkout_src_internal
ignore = all
[submodule "third_party/android_prebuilts/build_tools"]
path = third_party/android_prebuilts/build_tools
url = https://android.googlesource.com/platform/prebuilts/build-tools
gclient-condition = checkout_android_prebuilts_build_tools
ignore = all
[submodule "chromeos/ash/resources/internal"]
path = chromeos/ash/resources/internal
url = https://chrome-internal.googlesource.com/chrome/chromeos/ash/resources/internal
gclient-condition = checkout_src_internal and checkout_chromeos
ignore = all
[submodule "chromeos/assistant/internal"]
path = chromeos/assistant/internal
url = https://chrome-internal.googlesource.com/chrome/assistant
gclient-condition = checkout_src_internal and checkout_chromeos
ignore = all
[submodule "ash/webui/conch"]
path = ash/webui/conch
url = https://chrome-internal.googlesource.com/ash/webui/conch
gclient-condition = checkout_src_internal and checkout_chromeos
ignore = all
[submodule "build/fuchsia/internal"]
path = build/fuchsia/internal
url = https://chrome-internal.googlesource.com/fuchsia/build
gclient-condition = checkout_fuchsia_internal and checkout_src_internal
ignore = all
[submodule "chrome/app/theme/default_100_percent/google_chrome"]
path = chrome/app/theme/default_100_percent/google_chrome
url = https://chrome-internal.googlesource.com/chrome/theme/default_100_percent/google_chrome
gclient-condition = checkout_src_internal
ignore = all
[submodule "chrome/app/theme/default_200_percent/google_chrome"]
path = chrome/app/theme/default_200_percent/google_chrome
url = https://chrome-internal.googlesource.com/chrome/theme/default_200_percent/google_chrome
gclient-condition = checkout_src_internal
ignore = all
[submodule "chrome/app/theme/google_chrome"]
path = chrome/app/theme/google_chrome
url = https://chrome-internal.googlesource.com/chrome/theme/google_chrome
gclient-condition = checkout_src_internal
ignore = all
[submodule "chrome/browser/enterprise/connectors/internal"]
path = chrome/browser/enterprise/connectors/internal
url = https://chrome-internal.googlesource.com/chrome/browser/enterprise/connectors/internal
gclient-condition = checkout_src_internal
ignore = all
[submodule "chrome/browser/google/linkdoctor_internal"]
path = chrome/browser/google/linkdoctor_internal
url = https://chrome-internal.googlesource.com/chrome/linkdoctor
gclient-condition = checkout_src_internal
ignore = all
[submodule "chrome/browser/internal"]
path = chrome/browser/internal
url = https://chrome-internal.googlesource.com/chrome/browser_internal
gclient-condition = checkout_src_internal
ignore = all
[submodule "chrome/browser/media/engagement_internal"]
path = chrome/browser/media/engagement_internal
url = https://chrome-internal.googlesource.com/chrome/browser/media/engagement_internal
gclient-condition = checkout_src_internal
ignore = all
[submodule "chrome/browser/nearby_sharing/internal"]
path = chrome/browser/nearby_sharing/internal
url = https://chrome-internal.googlesource.com/chrome/browser/nearby_sharing/internal
gclient-condition = checkout_src_internal
ignore = all
[submodule "chrome/browser/platform_experience/win"]
path = chrome/browser/platform_experience/win
url = https://chrome-internal.googlesource.com/chrome/browser/platform_experience/win
gclient-condition = checkout_src_internal
ignore = all
[submodule "chrome/browser/resources/downloads/internal"]
path = chrome/browser/resources/downloads/internal
url = https://chrome-internal.googlesource.com/chrome/browser/resources/downloads_internal
gclient-condition = checkout_src_internal
ignore = all
[submodule "chrome/browser/resources/settings/internal"]
path = chrome/browser/resources/settings/internal
url = https://chrome-internal.googlesource.com/chrome/browser/resources/settings_internal
gclient-condition = checkout_src_internal
ignore = all
[submodule "chrome/browser/spellchecker/internal"]
path = chrome/browser/spellchecker/internal
url = https://chrome-internal.googlesource.com/chrome/spellchecker/internal
gclient-condition = checkout_src_internal
ignore = all
[submodule "chrome/elevation_service/internal"]
path = chrome/elevation_service/internal
url = https://chrome-internal.googlesource.com/chrome/elevation_service/internal
gclient-condition = checkout_src_internal and checkout_win
ignore = all
[submodule "chrome/installer/mac/internal"]
path = chrome/installer/mac/internal
url = https://chrome-internal.googlesource.com/chrome/installer/mac/internal
gclient-condition = checkout_src_internal
ignore = all
[submodule "chrome/test/data/firefox3_profile/searchplugins"]
path = chrome/test/data/firefox3_profile/searchplugins
url = https://chrome-internal.googlesource.com/chrome/data/osdd/firefox3_profile_searchplugins
gclient-condition = checkout_src_internal
ignore = all
[submodule "chrome/test/data/firefox3_searchplugins"]
path = chrome/test/data/firefox3_searchplugins
url = https://chrome-internal.googlesource.com/chrome/data/osdd/firefox3_searchplugins
gclient-condition = checkout_src_internal
ignore = all
[submodule "chrome/test/data/gpu/vt"]
path = chrome/test/data/gpu/vt
url = https://chrome-internal.googlesource.com/chrome/data/vectortown_endurance/vectortownstatic-20121022
gclient-condition = checkout_src_internal
ignore = all
[submodule "chrome/test/data/perf/frame_rate/private"]
path = chrome/test/data/perf/frame_rate/private
url = https://chrome-internal.googlesource.com/chrome/data/frame_rate_tests
gclient-condition = checkout_src_internal
ignore = all
[submodule "chrome/test/data/perf/private"]
path = chrome/test/data/perf/private
url = https://chrome-internal.googlesource.com/chrome/data/perf_tests
gclient-condition = checkout_src_internal
ignore = all
[submodule "chrome/test/data/pdf_private"]
path = chrome/test/data/pdf_private
url = https://chrome-internal.googlesource.com/chrome/data/pdf_private
gclient-condition = checkout_src_internal
ignore = all
[submodule "chrome/test/media_router/internal"]
path = chrome/test/media_router/internal
url = https://chrome-internal.googlesource.com/chrome/test/media_router/internal
gclient-condition = checkout_src_internal
ignore = all
[submodule "chrome/tools/memory"]
path = chrome/tools/memory
url = https://chrome-internal.googlesource.com/chrome/tools/memory
gclient-condition = checkout_win and checkout_src_internal
ignore = all
[submodule "chrome/services/speech/internal"]
path = chrome/services/speech/internal
url = https://chrome-internal.googlesource.com/chromeos/speech
gclient-condition = checkout_chromeos and checkout_src_internal
ignore = all
[submodule "components/autofill/core/browser/form_parsing/internal_resources"]
path = components/autofill/core/browser/form_parsing/internal_resources
url = https://chrome-internal.googlesource.com/chrome/components/autofill_regex_patterns
gclient-condition = checkout_src_internal
ignore = all
[submodule "components/crash/core/app/internal"]
path = components/crash/core/app/internal
url = https://chrome-internal.googlesource.com/chrome/components/crash
gclient-condition = checkout_src_internal
ignore = all
[submodule "components/metrics/internal"]
path = components/metrics/internal
url = https://chrome-internal.googlesource.com/chrome/components/metrics/internal
gclient-condition = checkout_src_internal
ignore = all
[submodule "components/ntp_tiles/resources/internal"]
path = components/ntp_tiles/resources/internal
url = https://chrome-internal.googlesource.com/chrome/components/ntp_tiles/resources
gclient-condition = checkout_src_internal
ignore = all
[submodule "components/optimization_guide/internal"]
path = components/optimization_guide/internal
url = https://chrome-internal.googlesource.com/chrome/components/optimization_guide
gclient-condition = checkout_src_internal
[submodule "components/plus_addresses/resources/internal"]
path = components/plus_addresses/resources/internal
url = https://chrome-internal.googlesource.com/chrome/components/plus_addresses/resources
gclient-condition = checkout_src_internal
ignore = all
[submodule "components/resources/default_100_percent/google_chrome"]
path = components/resources/default_100_percent/google_chrome
url = https://chrome-internal.googlesource.com/chrome/components/default_100_percent/google_chrome
gclient-condition = checkout_src_internal
ignore = all
[submodule "components/resources/default_200_percent/google_chrome"]
path = components/resources/default_200_percent/google_chrome
url = https://chrome-internal.googlesource.com/chrome/components/default_200_percent/google_chrome
gclient-condition = checkout_src_internal
ignore = all
[submodule "components/resources/default_300_percent/google_chrome"]
path = components/resources/default_300_percent/google_chrome
url = https://chrome-internal.googlesource.com/chrome/components/default_300_percent/google_chrome
gclient-condition = checkout_src_internal
ignore = all
[submodule "components/site_isolation/internal"]
path = components/site_isolation/internal
url = https://chrome-internal.googlesource.com/chrome/components/site_isolation
gclient-condition = checkout_src_internal
ignore = all
[submodule "components/test/data/autofill/heuristics-json/internal"]
path = components/test/data/autofill/heuristics-json/internal
url = https://chrome-internal.googlesource.com/chrome/test/autofill/structured_forms
gclient-condition = checkout_chromium_autofill_test_dependencies
ignore = all
[submodule "components/vector_icons/google_chrome"]
path = components/vector_icons/google_chrome
url = https://chrome-internal.googlesource.com/chrome/vector_icons/google_chrome
gclient-condition = checkout_src_internal
ignore = all
[submodule "content/test/data/plugin"]
path = content/test/data/plugin
url = https://chrome-internal.googlesource.com/chrome/data/chrome_plugin_tests
gclient-condition = checkout_src_internal
ignore = all
[submodule "google_apis/internal"]
path = google_apis/internal
url = https://chrome-internal.googlesource.com/chrome/google_apis/internal
gclient-condition = checkout_src_internal
ignore = all
[submodule "ios_internal"]
path = ios_internal