-
Notifications
You must be signed in to change notification settings - Fork 3
/
git-file-stats.log
2922 lines (2922 loc) · 134 KB
/
git-file-stats.log
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
1 1/openaes/LICENSE
1 20
1 21
1 21--NS/0@AQB=1&pccr=true&AQE=1
1 22
1 23
1 24
1 25
1 26
1 27
1 28
1 3g2
1 3gp
1 4
1 4/Dockerfile
1 9/Dockerfile
1 acf
1 ANY
1 ap_
1 apk
1 arcconfig
1 artifact
1 assem
1 atom
1 AUTHORS
1 auto
1 auto^headers^
1 bin^headers^
1 blah
1 bp
1 br
1 browser/app/permissions
1 browser/branding/aurora/dsstore
1 browser/branding/nightly/dsstore
1 browser/branding/official/dsstore
1 browser/branding/official/LICENSE
1 browser/branding/unofficial/dsstore
1 browser/components/extensions/schemas/LICENSE
1 browser/components/migration/tests/unit/AppData/Local/Google/Chrome/User Data/Default/Login Data
1 browser/components/migration/tests/unit/Library/Application Support/Google/Chrome/Default/Cookies
1 browser/components/migration/tests/unit/Library/Application Support/Google/Chrome/Local State
1 browser/components/translation/cld2/internal/LICENSE
1 browser/components/translation/cld2/Makefile
1 browser/config/mozconfig
1 browser/config/mozconfigs/common
1 browser/config/mozconfigs/linux32/artifact
1 browser/config/mozconfigs/linux32/beta
1 browser/config/mozconfigs/linux32/common-opt
1 browser/config/mozconfigs/linux32/debug
1 browser/config/mozconfigs/linux32/debug-artifact
1 browser/config/mozconfigs/linux32/debug-asan
1 browser/config/mozconfigs/linux32/devedition
1 browser/config/mozconfigs/linux32/l10n-mozconfig
1 browser/config/mozconfigs/linux32/l10n-mozconfig-devedition
1 browser/config/mozconfigs/linux32/nightly
1 browser/config/mozconfigs/linux32/nightly-asan
1 browser/config/mozconfigs/linux32/opt-dmd
1 browser/config/mozconfigs/linux32/release
1 browser/config/mozconfigs/linux32/rusttests
1 browser/config/mozconfigs/linux32/rusttests-debug
1 browser/config/mozconfigs/linux32/valgrind
1 browser/config/mozconfigs/linux64/add-on-devel
1 browser/config/mozconfigs/linux64/artifact
1 browser/config/mozconfigs/linux64/beta
1 browser/config/mozconfigs/linux64/code-coverage
1 browser/config/mozconfigs/linux64/code-coverage-debug
1 browser/config/mozconfigs/linux64/code-coverage-opt
1 browser/config/mozconfigs/linux64/common-opt
1 browser/config/mozconfigs/linux64/debug
1 browser/config/mozconfigs/linux64/debug-artifact
1 browser/config/mozconfigs/linux64/debug-asan
1 browser/config/mozconfigs/linux64/debug-fuzzing
1 browser/config/mozconfigs/linux64/debug-lto
1 browser/config/mozconfigs/linux64/debug-searchfox-clang
1 browser/config/mozconfigs/linux64/debug-static-analysis-clang
1 browser/config/mozconfigs/linux64/devedition
1 browser/config/mozconfigs/linux64/hazards
1 browser/config/mozconfigs/linux64/l10n-mozconfig
1 browser/config/mozconfigs/linux64/l10n-mozconfig-devedition
1 browser/config/mozconfigs/linux64/nightly
1 browser/config/mozconfigs/linux64/nightly-asan
1 browser/config/mozconfigs/linux64/nightly-asan-reporter
1 browser/config/mozconfigs/linux64/nightly-fuzzing-asan
1 browser/config/mozconfigs/linux64/nightly-lto
1 browser/config/mozconfigs/linux64/noopt-debug
1 browser/config/mozconfigs/linux64/opt-dmd
1 browser/config/mozconfigs/linux64/opt-static-analysis-clang
1 browser/config/mozconfigs/linux64/opt-tsan
1 browser/config/mozconfigs/linux64/plain-debug
1 browser/config/mozconfigs/linux64/plain-opt
1 browser/config/mozconfigs/linux64/release
1 browser/config/mozconfigs/linux64/rusttests
1 browser/config/mozconfigs/linux64/rusttests-debug
1 browser/config/mozconfigs/linux64/source
1 browser/config/mozconfigs/linux64/tup
1 browser/config/mozconfigs/linux64/valgrind
1 browser/config/mozconfigs/macosx64/add-on-devel
1 browser/config/mozconfigs/macosx64/artifact
1 browser/config/mozconfigs/macosx64/beta
1 browser/config/mozconfigs/macosx64/code-coverage
1 browser/config/mozconfigs/macosx64/code-coverage-debug
1 browser/config/mozconfigs/macosx64/common-opt
1 browser/config/mozconfigs/macosx64/cross-noopt-debug
1 browser/config/mozconfigs/macosx64/debug
1 browser/config/mozconfigs/macosx64/debug-artifact
1 browser/config/mozconfigs/macosx64/debug-asan
1 browser/config/mozconfigs/macosx64/debug-searchfox
1 browser/config/mozconfigs/macosx64/debug-static-analysis
1 browser/config/mozconfigs/macosx64/devedition
1 browser/config/mozconfigs/macosx64/l10n-mozconfig
1 browser/config/mozconfigs/macosx64/l10n-mozconfig-devedition
1 browser/config/mozconfigs/macosx64/nightly
1 browser/config/mozconfigs/macosx64/nightly-asan
1 browser/config/mozconfigs/macosx64/nightly-fuzzing-asan
1 browser/config/mozconfigs/macosx64/opt-dmd
1 browser/config/mozconfigs/macosx64/opt-static-analysis
1 browser/config/mozconfigs/macosx64/release
1 browser/config/mozconfigs/macosx64/repack
1 browser/config/mozconfigs/whitelist
1 browser/config/mozconfigs/win32/add-on-devel
1 browser/config/mozconfigs/win32/artifact
1 browser/config/mozconfigs/win32/beta
1 browser/config/mozconfigs/win32/clang
1 browser/config/mozconfigs/win32/clang-debug
1 browser/config/mozconfigs/win32/common-opt
1 browser/config/mozconfigs/win32/debug
1 browser/config/mozconfigs/win32/debug-artifact
1 browser/config/mozconfigs/win32/debug-static-analysis
1 browser/config/mozconfigs/win32/devedition
1 browser/config/mozconfigs/win32/l10n-mozconfig
1 browser/config/mozconfigs/win32/l10n-mozconfig-devedition
1 browser/config/mozconfigs/win32/mingw32
1 browser/config/mozconfigs/win32/mingw32-debug
1 browser/config/mozconfigs/win32/nightly
1 browser/config/mozconfigs/win32/noopt-debug
1 browser/config/mozconfigs/win32/opt-dmd
1 browser/config/mozconfigs/win32/release
1 browser/config/mozconfigs/win32/rusttests
1 browser/config/mozconfigs/win64/add-on-devel
1 browser/config/mozconfigs/win64/artifact
1 browser/config/mozconfigs/win64/beta
1 browser/config/mozconfigs/win64/clang
1 browser/config/mozconfigs/win64/clang-debug
1 browser/config/mozconfigs/win64/code-coverage
1 browser/config/mozconfigs/win64/common-opt
1 browser/config/mozconfigs/win64/common-win64
1 browser/config/mozconfigs/win64/debug
1 browser/config/mozconfigs/win64/debug-artifact
1 browser/config/mozconfigs/win64/debug-asan
1 browser/config/mozconfigs/win64/debug-searchfox
1 browser/config/mozconfigs/win64/devedition
1 browser/config/mozconfigs/win64/l10n-mozconfig
1 browser/config/mozconfigs/win64/l10n-mozconfig-devedition
1 browser/config/mozconfigs/win64/nightly
1 browser/config/mozconfigs/win64/nightly-asan
1 browser/config/mozconfigs/win64/noopt-debug
1 browser/config/mozconfigs/win64/opt-dmd
1 browser/config/mozconfigs/win64/plain-debug
1 browser/config/mozconfigs/win64/plain-opt
1 browser/config/mozconfigs/win64/release
1 browser/config/mozconfigs/win64/rusttests
1 browser/extensions/activity-stream/bin/download-firefox-artifact
1 browser/extensions/activity-stream/bin/prepare-mochitests-dev
1 browser/extensions/activity-stream/CODEOWNERS
1 browser/extensions/activity-stream/LICENSE
1 browser/extensions/activity-stream/vendor/PROP_TYPES_LICENSE
1 browser/extensions/activity-stream/vendor/REACT_AND_REACT_DOM_LICENSE
1 browser/extensions/activity-stream/vendor/REACT_INTL_LICENSE
1 browser/extensions/activity-stream/vendor/REACT_REDUX_LICENSE
1 browser/extensions/activity-stream/vendor/REDUX_LICENSE
1 browser/extensions/asan-reporter/LICENSE
1 browser/extensions/formautofill/test/fixtures/third_party/README
1 browser/extensions/mortar/Makefile
1 browser/extensions/mortar/ppapi/generators/OWNERS
1 browser/extensions/mortar/ppapi/LICENSE
1 browser/extensions/pdfjs/content/web/cmaps/LICENSE
1 browser/extensions/pdfjs/LICENSE
1 browser/LICENSE
1 browser/locales/all-locales
1 browser/locales/onchange-locales
1 browser/locales/shipped-locales
1 browser/themes/LICENSE
1 build/autoconf/install-sh
1 build/build-clang/README
1 build/cargo-linker
1 build/clang-plugin/mozsearch-plugin/README
1 build/dumbmake-dependencies
1 buildinfo
1 build/macosx/llvm-dsymutil
1 build/package/mac_osx/make-diskimage
1 build/package/mac_osx/unpack-diskimage
1 build/pgo/blueprint/LICENSE
1 build/pgo/certs/README
1 build/pymake/LICENSE
1 build/pymake/README
1 build/pymake/tests/pathdir/pathtest
1 build/pymake/tests/pathdir/src/Makefile
1 build/qemu-wrap
1 build/sparse-profiles/docker-image
1 build/sparse-profiles/mach
1 build/sparse-profiles/mozharness
1 build/sparse-profiles/sphinx-docs
1 build/sparse-profiles/taskgraph
1 build/sparse-profiles/toolchain-build
1 build/sparse-profiles/tps
1 build/sparse-profiles/upload-generated-sources
1 build/sparse-profiles/upload-symbols
1 build/unix/elfhack/README
1 cache
1 cargo/config
1 cgi
1 cin
1 clang-cl
1 clang-format-ignore
1 client
1 CLOBBER
1 com/ad_cookies
1 com/jr@site=netease&affiliate=homepage&cat=homepage&type=adend&location=1
1 com/jr@site=netease&affiliate=homepage&cat=homepage&type=popup&location=1
1 com/jsapi
1 comm-support
1 compound
1 config/tests/ref-simple/one/preproc
1 CROSS
1 crx
1 csh
1 d
1 db/sqlite3/README
1 dep
1 devtools/client/debugger/test/mochitest/code_test-editor-mode
1 devtools/client/debugger/test/mochitest/code_ugly-8
1 devtools/client/debugger/test/mochitest/code_ugly-8^headers^
1 devtools/client/shared/components/reps/README
1 devtools/client/shared/source-map/README
1 devtools/client/shared/vendor/D3_LICENSE
1 devtools/client/shared/vendor/DAGRE_D3_LICENSE
1 devtools/client/shared/vendor/FLUENT_REACT_LICENSE
1 devtools/client/shared/vendor/FLUENT_REACT_UPGRADING
1 devtools/client/shared/vendor/REACT_REDUX_LICENSE
1 devtools/client/shared/vendor/REDUX_LICENSE
1 devtools/client/shared/vendor/RESELECT_LICENSE
1 devtools/client/shared/vendor/RESELECT_UPGRADING
1 devtools/client/shared/vendor/WASMPARSER_UPGRADING
1 devtools/client/sourceeditor/codemirror/LICENSE
1 devtools/client/sourceeditor/README
1 devtools/client/sourceeditor/tern/README
1 devtools/client/webide/test/build_app2/stage/empty-directory
1 devtools/client/webide/test/build_app_windows2/stage/empty-directory
1 devtools/shared/acorn/LICENSE
1 devtools/shared/gcli/source/LICENSE
1 devtools/shared/qrcode/decoder/LICENSE
1 devtools/shared/qrcode/encoder/LICENSE
1 dex
1 dirs
1 dmg
1 doap
1 docshell/test/file_bug660404
1 docshell/test/file_bug660404^headers^
1 dom/bindings/parser/README
1 dom/bindings/parser/UPSTREAM
1 dom/canvas/test/image_green-redirect
1 dom/canvas/test/image_green-redirect^headers^
1 dom/canvas/test/webgl-conf/checkout/closure-library/AUTHORS
1 dom/canvas/test/webgl-conf/checkout/closure-library/CONTRIBUTING
1 dom/canvas/test/webgl-conf/checkout/closure-library/LICENSE
1 dom/canvas/test/webgl-conf/checkout/deqp/LICENSE
1 dom/canvas/test/webgl-conf/checkout/py/lint/LICENSE
1 dom/imptests/README
1 dom/media/benchmark/sample
1 dom/media/gmp/rlz/OWNERS
1 dom/media/platforms/ffmpeg/README_mozilla
1 dom/media/webaudio/blink/README
1 dom/media/webaudio/test/blink/README
1 dom/plugins/test/testplugin/README
1 dom/security/test/csp/file_policyuri_regression_from_multipolicy_policy
1 dom/u2f/tests/pkijs/LICENSE
1 dom/u2f/tests/pkijs/README
1 dom/webauthn/cbor-cpp/src/LICENSE
1 dom/webauthn/cbor-cpp/src/README-MOZILLA
1 dom/webauthn/tests/pkijs/LICENSE
1 dom/webauthn/tests/pkijs/README
1 dom/webauthn/u2f-hid-rs/fuzz/corpus/u2f_read/1172fb09a3c99ed54c7d677faae5386d938d5834
1 dom/webauthn/u2f-hid-rs/fuzz/corpus/u2f_read/3031b026f0eb80bc03d05be97b3cef550913a3d4
1 dom/webauthn/u2f-hid-rs/fuzz/corpus/u2f_read/5232969ad85258a14c3fbdb7b3e112539755f3a4
1 dom/webauthn/u2f-hid-rs/fuzz/corpus/u2f_read/5814556fab57a61da7d4150c2b45c15686df25ec
1 dom/webauthn/u2f-hid-rs/fuzz/corpus/u2f_read/7dc504e4505d6b4d3465aeb7bdf59702676a54cd
1 dom/webauthn/u2f-hid-rs/fuzz/corpus/u2f_read/a05810d808f44249ae8ecfeadc59e5d8f7e55fb8
1 dom/webauthn/u2f-hid-rs/fuzz/corpus/u2f_read/a5142fc55a5d72c9978bd54c73c8e32743bd8cfe
1 dom/webauthn/u2f-hid-rs/fuzz/corpus/u2f_read/ab4368e52f60dbe956d28100adf2a4d110b615ec
1 dom/webauthn/u2f-hid-rs/fuzz/corpus/u2f_read_write/1172fb09a3c99ed54c7d677faae5386d938d5834
1 dom/webauthn/u2f-hid-rs/fuzz/corpus/u2f_read_write/680d38f668ab4372aaf0d57910c30a5ce6a6a03d
1 dom/webauthn/u2f-hid-rs/fuzz/corpus/u2f_read_write/afcb12f9dddb1ed0bb06d6372e91b2707cd764d1
1 dom/webauthn/u2f-hid-rs/fuzz/corpus/u2f_read_write/f94c8e14f32ca38e773745c5622e2da2a18c3a47
1 dom/webauthn/u2f-hid-rs/LICENSE
1 dot
1 doxy_template
1 dsstore
1 duh
1 editor/libeditor/tests/browserscope/lib/richtext2/current_revision
1 editor/libeditor/tests/browserscope/lib/richtext2/LICENSE
1 editor/libeditor/tests/browserscope/lib/richtext2/README
1 editor/libeditor/tests/browserscope/lib/richtext2/update_from_upstream
1 editor/libeditor/tests/browserscope/lib/richtext/current_revision
1 editor/libeditor/tests/browserscope/lib/richtext/LICENSE
1 editor/libeditor/tests/browserscope/lib/richtext/README
1 editor/libeditor/tests/browserscope/lib/richtext/update_from_upstream
1 ember-cli
1 env
1 eslintrc
1 et
1 expected
1 ext
1 ext1
1 ext2
1 ext3
1 extensions/spellcheck/hunspell/src/README
1 extensions/spellcheck/hunspell/tests/unit/data/suggestiontest/prepare
1 extensions/spellcheck/hunspell/tests/unit/data/suggestiontest/README
1 extensions/spellcheck/hunspell/tests/unit/data/suggestiontest/test
1 extensions/spellcheck/locales/en-US/hunspell/dictionary-sources/5-mozilla-added
1 extensions/spellcheck/locales/en-US/hunspell/dictionary-sources/5-mozilla-removed
1 extensions/spellcheck/locales/en-US/hunspell/dictionary-sources/5-mozilla-specific
1 extensions/spellcheck/locales/en-US/hunspell/dictionary-sources/edit-dictionary
1 extensions/spellcheck/locales/en-US/hunspell/dictionary-sources/install-new-dict
1 extensions/spellcheck/locales/en-US/hunspell/dictionary-sources/make-new-dict
1 extensions/spellcheck/locales/en-US/hunspell/dictionary-sources/README
1 fish
1 flags
1 fm%2F2WEnFW
1 fm%2F2x2iAO
1 fm%2F3cAjJD
1 fm%2F3SWBUh
1 fm%2F40hcYl
1 fm%2F46NVMe
1 fm%2FPjU3g
1 fm%2FTyjFq
1 fontified
1 foo
1 gclient
1 gclient_entries
1 gdbinit
1 gdbinit_python
1 gfx/cairo/add-cairo_scaled_font_get_hint_metrics
1 gfx/cairo/cairo/AUTHORS
1 gfx/cairo/cairo/COPYING
1 gfx/cairo/cairo/INSTALL
1 gfx/cairo/cairo/NEWS
1 gfx/cairo/cairo/README
1 gfx/cairo/libpixman/AUTHORS
1 gfx/cairo/libpixman/COPYING
1 gfx/cairo/libpixman/INSTALL
1 gfx/cairo/libpixman/NEWS
1 gfx/cairo/libpixman/README
1 gfx/cairo/libpixman/src/refactor
1 gfx/cairo/libpixman/TODO
1 gfx/cairo/pixman-xp-dll-workaround
1 gfx/cairo/quartz-surface-mask-patch
1 gfx/cairo/README
1 gfx/graphite2/ChangeLog
1 gfx/graphite2/COPYING
1 gfx/graphite2/LICENSE
1 gfx/harfbuzz/AUTHORS
1 gfx/harfbuzz/COPYING
1 gfx/harfbuzz/NEWS
1 gfx/harfbuzz/README
1 gfx/harfbuzz/README-mozilla
1 gfx/harfbuzz/THANKS
1 gfx/harfbuzz/TODO
1 gfx/ots/LICENSE
1 gfx/skia/LICENSE
1 gfx/skia/patches/README
1 gfx/skia/README
1 gfx/skia/README_COMMITTING
1 gfx/skia/README_MOZILLA
1 gfx/skia/skia/src/sksl/README
1 gfx/vr/openvr/LICENSE
1 gfx/vr/openvr/src/README
1 gfx/ycbcr/LICENSE
1 gfx/ycbcr/README
1 gif@a=&c=860010-0503010000
1 git
1 gitattributes
1 gitmodules
1 gnu
1 GNU
1 GNUmakefile
1 GPLv2
1 GPLv3
1 gradlew
1 groupproj
1 gz^headers^
1 H
1 hdr
1 hgrc
1 hgtags
1 hhp
1 hin
1 html^
1 html^^
1 html^^headers^
1 hunspell
1 hyphen
1 i
1 ijg
1 illegal_suffix
1 inferconfig
1 intl/hyphenation/hyphen/AUTHORS
1 intl/hyphenation/hyphen/COPYING
1 intl/hyphenation/hyphen/NEWS
1 intl/hyphenation/hyphen/README
1 intl/icu-patches/bug-915735
1 intl/icu/source/config/icu-config-bottom
1 intl/icu/source/config/icu-config-top
1 intl/icu/source/config/mh-aix-gcc
1 intl/icu/source/config/mh-aix-va
1 intl/icu/source/config/mh-alpha-linux-cc
1 intl/icu/source/config/mh-alpha-linux-gcc
1 intl/icu/source/config/mh-alpha-osf
1 intl/icu/source/config/mh-beos
1 intl/icu/source/config/mh-bsd-gcc
1 intl/icu/source/config/mh-cygwin
1 intl/icu/source/config/mh-cygwin64
1 intl/icu/source/config/mh-cygwin-msvc
1 intl/icu/source/config/mh-darwin
1 intl/icu/source/config/mh-haiku
1 intl/icu/source/config/mh-hpux-acc
1 intl/icu/source/config/mh-hpux-gcc
1 intl/icu/source/config/mh-irix
1 intl/icu/source/config/mh-linux
1 intl/icu/source/config/mh-linux-va
1 intl/icu/source/config/mh-mingw
1 intl/icu/source/config/mh-mingw64
1 intl/icu/source/config/mh-mpras
1 intl/icu/source/config/mh-msys-msvc
1 intl/icu/source/config/mh-os390
1 intl/icu/source/config/mh-os400
1 intl/icu/source/config/mh-qnx
1 intl/icu/source/config/mh-solaris
1 intl/icu/source/config/mh-solaris-gcc
1 intl/icu/source/config/mh-unknown
1 intl/icu/source/configure
1 intl/icu/source/extra/uconv/README
1 intl/icu/source/install-sh
1 intl/icu/source/mkinstalldirs
1 intl/icu/source/runConfigureICU
1 intl/icu/source/tools/gencolusb/Makefile
1 intl/icu/source/tools/genren/Makefile
1 intl/icu/source/tools/genren/README
1 intl/icu/source/tools/tzcode/icuregions
1 intl/icu/source/tools/tzcode/icuzones
1 intl/icu/SVN-INFO
1 intl/l10n/README
1 intl/locales/af/hyphenation/LICENSE
1 intl/locales/bg/hyphenation/LICENSE
1 intl/locales/ca/hyphenation/LICENSE
1 intl/locales/cy/hyphenation/LICENSE
1 intl/locales/da/hyphenation/LICENSE
1 intl/locales/de-1901/hyphenation/LICENSE
1 intl/locales/de-1996/hyphenation/LICENSE
1 intl/locales/de-CH/hyphenation/LICENSE
1 intl/locales/eo/hyphenation/LICENSE
1 intl/locales/es/hyphenation/LICENSE
1 intl/locales/et/hyphenation/LICENSE
1 intl/locales/fi/hyphenation/LICENSE
1 intl/locales/fr/hyphenation/LICENSE
1 intl/locales/gl/hyphenation/LICENSE
1 intl/locales/hr/hyphenation/LICENSE
1 intl/locales/hsb/hyphenation/LICENSE
1 intl/locales/hu/hyphenation/LICENSE
1 intl/locales/ia/hyphenation/LICENSE
1 intl/locales/is/hyphenation/LICENSE
1 intl/locales/it/hyphenation/LICENSE
1 intl/locales/kmr/hyphenation/LICENSE
1 intl/locales/la/hyphenation/LICENSE
1 intl/locales/lt/hyphenation/LICENSE
1 intl/locales/mn/hyphenation/LICENSE
1 intl/locales/nb/hyphenation/LICENSE
1 intl/locales/nl/hyphenation/LICENSE
1 intl/locales/nn/hyphenation/LICENSE
1 intl/locales/pl/hyphenation/LICENSE
1 intl/locales/pt/hyphenation/LICENSE
1 intl/locales/ru/hyphenation/LICENSE
1 intl/locales/sh/hyphenation/LICENSE
1 intl/locales/sl/hyphenation/LICENSE
1 intl/locales/sv/hyphenation/LICENSE
1 intl/locales/tr/hyphenation/LICENSE
1 intl/locales/uk/hyphenation/LICENSE
1 intl/tzdata/SVN-INFO
1 inv
1 ipc/app/macbuild/Contents/PkgInfo
1 ipc/chromium/src/LICENSE
1 ipc/chromium/src/third_party/libevent/ChangeLog
1 ipc/chromium/src/third_party/libevent/cmake/COPYING-CMAKE-SCRIPTS
1 ipc/chromium/src/third_party/libevent/Doxyfile
1 ipc/chromium/src/third_party/libevent/LICENSE
1 ipc/chromium/src/third_party/libevent/Vagrantfile
1 ipc/ipdl/msgtype-components
1 js@1302215522
1 js@csid=J08781
1 jsi
1 js/src/ctypes/libffi/compile
1 js/src/ctypes/libffi/configure
1 js/src/ctypes/libffi/depcomp
1 js/src/ctypes/libffi/doc/stamp-vti
1 js/src/ctypes/libffi/install-sh
1 js/src/ctypes/libffi/libtool-ldflags
1 js/src/ctypes/libffi/libtool-version
1 js/src/ctypes/libffi/LICENSE
1 js/src/ctypes/libffi/mdate-sh
1 js/src/ctypes/libffi/missing
1 js/src/ctypes/libffi/README
1 js/src/devtools/automation/README
1 js/src/devtools/automation/variants/arm64-sim
1 js/src/devtools/automation/variants/arm-sim
1 js/src/devtools/automation/variants/arm-sim-osx
1 js/src/devtools/automation/variants/asan
1 js/src/devtools/automation/variants/bigint
1 js/src/devtools/automation/variants/bigintdebug
1 js/src/devtools/automation/variants/compacting
1 js/src/devtools/automation/variants/dtrace
1 js/src/devtools/automation/variants/fuzzing
1 js/src/devtools/automation/variants/msan
1 js/src/devtools/automation/variants/nojit
1 js/src/devtools/automation/variants/nonunified
1 js/src/devtools/automation/variants/plain
1 js/src/devtools/automation/variants/plaindebug
1 js/src/devtools/automation/variants/rootanalysis
1 js/src/devtools/automation/variants/tsan
1 js/src/devtools/automation/variants/warnaserr
1 js/src/devtools/automation/variants/warnaserrdebug
1 js/src/devtools/gctrace/Makefile
1 js/src/devtools/release/release-notes
1 js/src/devtools/rootAnalysis/run_complete
1 js/src/editline/README
1 js/src/fuzz-tests/README
1 js/src/gdb/README
1 js/src/gdb/TODO
1 js/src/jit-test/README
1 js/src/jit-test/tests/debug/Debugger-findScripts-08-script2
1 js/src/jit-test/tests/debug/Debugger-findScripts-11-script2
1 js/src/jit-test/tests/debug/Debugger-findScripts-12-script1
1 js/src/jit-test/tests/debug/Debugger-findScripts-12-script2
1 js/src/jit-test/tests/debug/Source-introductionType-data
1 js/src/jsapi-tests/README
1 js/src/tests/non262/ev
1 js/src/tests/shell/README
1 js/src/tests/test262/GIT-INFO
1 js/src/tests/test262/LICENSE
1 js/src/vtune/README
1 js/src/wasm/Makefile
1 js/xpconnect/src/README
1 keep
1 la
1 layout/mathml/imptests/LICENSE
1 layout/reftests/fonts/DeLarge/README
1 layout/reftests/fonts/math/README
1 layout/reftests/fonts/README
1 layout/reftests/object/extra/pass_image
1 layout/reftests/text-svgglyphs/resources/README
1 layout/reftests/w3c-css/LICENSE
1 layout/reftests/w3c-css/README
1 layout/reftests/w3c-css/received/css-conditional/OWNERS
1 layout/reftests/w3c-css/received/css-multicol/OWNERS
1 layout/reftests/w3c-css/received/css-namespaces/OWNERS
1 layout/reftests/w3c-css/received/css-values/OWNERS
1 layout/reftests/w3c-css/received/css-values/support/README
1 layout/reftests/w3c-css/received/css-values/support/support/README
1 layout/reftests/w3c-css/received/css-writing-modes/OWNERS
1 layout/reftests/w3c-css/received/css-writing-modes/support/adobe-fonts/LICENSE
1 layout/reftests/w3c-css/received/README
1 layout/reftests/w3c-css/received/selectors/CHANGES
1 layout/reftests/w3c-css/received/selectors/htaccess
1 layout/reftests/w3c-css/received/selectors/i18n/OWNERS
1 layout/reftests/w3c-css/received/selectors/Makefile
1 layout/reftests/w3c-css/received/selectors/OWNERS
1 layout/reftests/w3c-css/received/selectors/TODO
1 layout/reftests/w3c-css/submitted/README
1 ld
1 LEGAL
1 LGPL
1 libffi
1 libgcj
1 LICENSE
1 linux
1 linux32
1 listbackup
1 lldbinit
1 lld-link
1 lnk
1 locale
1 lst
1 lto
1 m4a
1 MAC
1 mach
1 mako
1 map^headers^
1 mcignore
1 media/audioipc/README_MOZILLA
1 media/ffvpx/FILES
1 media/ffvpx/README_MOZILLA
1 media/kiss_fft/CHANGELOG
1 media/kiss_fft/COPYING
1 media/kiss_fft/README
1 media/kiss_fft/README_MOZILLA
1 media/libaom/README_MOZILLA
1 media/libav/CREDITS
1 media/libav/LICENSE
1 media/libav/README
1 media/libav/README_MOZILLA
1 media/libav/RELEASE
1 media/libav/VERSION
1 media/libcubeb/AUTHORS
1 media/libcubeb/cubeb-pulse-rs/AUTHORS
1 media/libcubeb/cubeb-pulse-rs/LICENSE
1 media/libcubeb/cubeb-pulse-rs/README_MOZILLA
1 media/libcubeb/LICENSE
1 media/libcubeb/README_MOZILLA
1 media/libjpeg/MOZCHANGES
1 media/libmkv/AUTHORS
1 media/libmkv/LICENSE
1 media/libmkv/README
1 media/libmkv/README_MOZILLA
1 media/libnestegg/AUTHORS
1 media/libnestegg/LICENSE
1 media/libnestegg/README_MOZILLA
1 media/libogg/AUTHORS
1 media/libogg/CHANGES
1 media/libogg/COPYING
1 media/libogg/README
1 media/libogg/README_MOZILLA
1 media/libopus/COPYING
1 media/libopus/README_MOZILLA
1 media/libpng/CHANGES
1 media/libpng/LICENSE
1 media/libpng/MOZCHANGES
1 media/libpng/README
1 media/libsoundtouch/AUTHORS
1 media/libsoundtouch/LICENSE
1 media/libsoundtouch/README_MOZILLA
1 media/libspeex_resampler/AUTHORS
1 media/libspeex_resampler/COPYING
1 media/libspeex_resampler/README_MOZILLA
1 media/libtheora/AUTHORS
1 media/libtheora/CHANGES
1 media/libtheora/COPYING
1 media/libtheora/LICENSE
1 media/libtheora/README
1 media/libtheora/README_MOZILLA
1 media/libtremor/COPYING
1 media/libtremor/README
1 media/libtremor/README_MOZILLA
1 media/libvorbis/AUTHORS
1 media/libvorbis/COPYING
1 media/libvorbis/README_MOZILLA
1 media/libvpx/libvpx/AUTHORS
1 media/libvpx/libvpx/build/make/Makefile
1 media/libvpx/libvpx/CHANGELOG
1 media/libvpx/libvpx/configure
1 media/libvpx/libvpx/LICENSE
1 media/libvpx/libvpx/PATENTS
1 media/libvpx/libvpx/README
1 media/libvpx/libvpx/test/android/README
1 media/libvpx/libvpx/third_party/googletest/src/CHANGES
1 media/libvpx/libvpx/third_party/googletest/src/CONTRIBUTORS
1 media/libvpx/libvpx/third_party/googletest/src/LICENSE
1 media/libvpx/libvpx/third_party/googletest/src/README
1 media/libvpx/libvpx/third_party/x86inc/LICENSE
1 media/libvpx/libvpx/vp8/exports_dec
1 media/libvpx/libvpx/vp8/exports_enc
1 media/libvpx/libvpx/vp9/exports_dec
1 media/libvpx/libvpx/vp9/exports_enc
1 media/libvpx/libvpx/vpx/exports_com
1 media/libvpx/libvpx/vpx/exports_dec
1 media/libvpx/libvpx/vpx/exports_enc
1 media/libvpx/libvpx/vpx/exports_spatial_svc
1 media/libvpx/README_MOZILLA
1 media/libyuv/libyuv/AUTHORS
1 media/libyuv/libyuv/DEPS
1 media/libyuv/libyuv/gyp_libyuv
1 media/libyuv/libyuv/infra/config/OWNERS
1 media/libyuv/libyuv/LICENSE
1 media/libyuv/libyuv/LICENSE_THIRD_PARTY
1 media/libyuv/libyuv/OWNERS
1 media/libyuv/libyuv/PATENTS
1 media/libyuv/libyuv/pylintrc
1 media/libyuv/libyuv/tools_libyuv/autoroller/unittests/testdata/DEPS
1 media/libyuv/libyuv/tools_libyuv/msan/OWNERS
1 media/libyuv/libyuv/tools_libyuv/OWNERS
1 media/libyuv/libyuv/tools_libyuv/ubsan/OWNERS
1 media/libyuv/libyuv/tools_libyuv/valgrind/memcheck/OWNERS
1 media/libyuv/libyuv/util/Makefile
1 media/libyuv/README_MOZILLA
1 media/mp4parse-rust/mp4parse_fallible/README
1 media/mtransport/README
1 media/mtransport/third_party/nICEr/IMPORT_FILES
1 media/mtransport/third_party/nICEr/README
1 media/mtransport/third_party/nICEr/README_MOZILLA
1 media/mtransport/third_party/nrappkit/COPYRIGHT
1 media/mtransport/third_party/nrappkit/IMPORT_FILES
1 media/mtransport/third_party/nrappkit/README
1 media/mtransport/third_party/nrappkit/README_MOZILLA
1 media/mtransport/third_party/nrappkit/VERSION
1 media/openmax_dl/LICENSE
1 media/openmax_dl/OWNERS
1 media/webrtc/signaling/src/sdp/rsdparsa/LICENSE
1 media/webrtc/trunk/AUTHORS
1 media/webrtc/trunk/build/android/adb_kill_content_shell
1 media/webrtc/trunk/build/android/adb_run_content_shell
1 media/webrtc/trunk/build/android/gdb_apk
1 media/webrtc/trunk/build/android/gdb_content_shell
1 media/webrtc/trunk/build/android/gtest_filter/base_unittests_disabled
1 media/webrtc/trunk/build/android/gtest_filter/base_unittests_emulator_additional_disabled
1 media/webrtc/trunk/build/android/gtest_filter/content_unittests_disabled
1 media/webrtc/trunk/build/android/gtest_filter/ipc_tests_disabled
1 media/webrtc/trunk/build/android/gtest_filter/media_unittests_disabled
1 media/webrtc/trunk/build/android/gtest_filter/net_unittests_disabled
1 media/webrtc/trunk/build/android/gtest_filter/sync_unit_tests_disabled
1 media/webrtc/trunk/build/android/gtest_filter/ui_unittests_disabled
1 media/webrtc/trunk/build/android/gtest_filter/unit_tests_disabled
1 media/webrtc/trunk/build/args/OWNERS
1 media/webrtc/trunk/build/config/android/OWNERS
1 media/webrtc/trunk/build/config/freetype/OWNERS
1 media/webrtc/trunk/build/config/fuchsia/OWNERS
1 media/webrtc/trunk/build/config/ios/OWNERS
1 media/webrtc/trunk/build/config/mac/OWNERS
1 media/webrtc/trunk/build/config/OWNERS
1 media/webrtc/trunk/build/config/sanitizers/OWNERS
1 media/webrtc/trunk/build/gdb-add-index
1 media/webrtc/trunk/build/git-hooks/OWNERS
1 media/webrtc/trunk/build/git-hooks/pre-commit
1 media/webrtc/trunk/build/gyp_chromium
1 media/webrtc/trunk/build/ios/OWNERS
1 media/webrtc/trunk/build/mac/OWNERS
1 media/webrtc/trunk/build/mac/strip_from_xcode
1 media/webrtc/trunk/build/mac/strip_save_dsym
1 media/webrtc/trunk/build_overrides/OWNERS
1 media/webrtc/trunk/build/OWNERS
1 media/webrtc/trunk/build/sanitizers/OWNERS
1 media/webrtc/trunk/build/secondary/third_party/crashpad/OWNERS
1 media/webrtc/trunk/build/slave/OWNERS
1 media/webrtc/trunk/build/slave/README
1 media/webrtc/trunk/build/toolchain/fuchsia/OWNERS
1 media/webrtc/trunk/build/toolchain/OWNERS
1 media/webrtc/trunk/build/util/LASTCHANGE
1 media/webrtc/trunk/build/win/syzygy/OWNERS
1 media/webrtc/trunk/chromium_deps/DEPS
1 media/webrtc/trunk/DEPS
1 media/webrtc/trunk/OWNERS
1 media/webrtc/trunk/third_party/gflags/LICENSE
1 media/webrtc/trunk/third_party/gflags/OWNERS
1 media/webrtc/trunk/third_party/gflags/src/gflags_unittest_flagfile
1 media/webrtc/trunk/tools/clang/OWNERS
1 media/webrtc/trunk/tools/clang/plugins/Makefile
1 media/webrtc/trunk/tools/clang/plugins/OWNERS
1 media/webrtc/trunk/tools/gyp/AUTHORS
1 media/webrtc/trunk/tools/gyp/buildbot/commit_queue/OWNERS
1 media/webrtc/trunk/tools/gyp/buildbot/commit_queue/README
1 media/webrtc/trunk/tools/gyp/DEPS
1 media/webrtc/trunk/tools/gyp/gyp
1 media/webrtc/trunk/tools/gyp/LICENSE
1 media/webrtc/trunk/tools/gyp/OWNERS
1 media/webrtc/trunk/tools/gyp/samples/samples
1 media/webrtc/trunk/tools/gyp/test/copies/src/directory/file3
1 media/webrtc/trunk/tools/gyp/test/copies/src/directory/file4
1 media/webrtc/trunk/tools/gyp/test/copies/src/directory/subdir/file5
1 media/webrtc/trunk/tools/gyp/test/copies/src/file1
1 media/webrtc/trunk/tools/gyp/test/copies/src/file2
1 media/webrtc/trunk/tools/gyp/test/copies/src/parentdir/subdir/file6
1 media/webrtc/trunk/tools/gyp/test/generator-output/copies/file1
1 media/webrtc/trunk/tools/gyp/test/generator-output/copies/file2
1 media/webrtc/trunk/tools/gyp/test/generator-output/copies/subdir/file3
1 media/webrtc/trunk/tools/gyp/test/generator-output/copies/subdir/file4
1 media/webrtc/trunk/tools/gyp/test/ios/copies-with-xcode-envvars/file0
1 media/webrtc/trunk/tools/gyp/test/ios/copies-with-xcode-envvars/file1
1 media/webrtc/trunk/tools/gyp/test/ios/copies-with-xcode-envvars/file10
1 media/webrtc/trunk/tools/gyp/test/ios/copies-with-xcode-envvars/file11
1 media/webrtc/trunk/tools/gyp/test/ios/copies-with-xcode-envvars/file2
1 media/webrtc/trunk/tools/gyp/test/ios/copies-with-xcode-envvars/file3
1 media/webrtc/trunk/tools/gyp/test/ios/copies-with-xcode-envvars/file4
1 media/webrtc/trunk/tools/gyp/test/ios/copies-with-xcode-envvars/file5
1 media/webrtc/trunk/tools/gyp/test/ios/copies-with-xcode-envvars/file6
1 media/webrtc/trunk/tools/gyp/test/ios/copies-with-xcode-envvars/file7
1 media/webrtc/trunk/tools/gyp/test/ios/copies-with-xcode-envvars/file8
1 media/webrtc/trunk/tools/gyp/test/ios/copies-with-xcode-envvars/file9
1 media/webrtc/trunk/tools/gyp/test/mac/copies-with-xcode-envvars/file0
1 media/webrtc/trunk/tools/gyp/test/mac/copies-with-xcode-envvars/file1
1 media/webrtc/trunk/tools/gyp/test/mac/copies-with-xcode-envvars/file10
1 media/webrtc/trunk/tools/gyp/test/mac/copies-with-xcode-envvars/file11
1 media/webrtc/trunk/tools/gyp/test/mac/copies-with-xcode-envvars/file2
1 media/webrtc/trunk/tools/gyp/test/mac/copies-with-xcode-envvars/file3
1 media/webrtc/trunk/tools/gyp/test/mac/copies-with-xcode-envvars/file4
1 media/webrtc/trunk/tools/gyp/test/mac/copies-with-xcode-envvars/file5
1 media/webrtc/trunk/tools/gyp/test/mac/copies-with-xcode-envvars/file6
1 media/webrtc/trunk/tools/gyp/test/mac/copies-with-xcode-envvars/file7
1 media/webrtc/trunk/tools/gyp/test/mac/copies-with-xcode-envvars/file8
1 media/webrtc/trunk/tools/gyp/test/mac/copies-with-xcode-envvars/file9
1 media/webrtc/trunk/tools/gyp/test/many-actions/file0
1 media/webrtc/trunk/tools/gyp/test/many-actions/file1
1 media/webrtc/trunk/tools/gyp/test/many-actions/file2
1 media/webrtc/trunk/tools/gyp/test/many-actions/file3
1 media/webrtc/trunk/tools/gyp/test/many-actions/file4
1 media/webrtc/trunk/tools/gyp/test/variables/commands/update_golden
1 media/webrtc/trunk/tools/gyp/test/variables/filelist/update_golden
1 media/webrtc/trunk/tools/gyp/test/win/batch-file-action/infile
1 media/webrtc/trunk/tools/gyp/tools/emacs/README
1 media/webrtc/trunk/tools/gyp/tools/README
1 media/webrtc/trunk/tools/gyp/tools/Xcode/README
1 media/webrtc/trunk/webrtc/androidjunit/OWNERS
1 media/webrtc/trunk/webrtc/api/test/DEPS
1 media/webrtc/trunk/webrtc/audio/DEPS
1 media/webrtc/trunk/webrtc/audio/OWNERS
1 media/webrtc/trunk/webrtc/base/DEPS
1 media/webrtc/trunk/webrtc/base/java/src/org/webrtc/OWNERS
1 media/webrtc/trunk/webrtc/base/OWNERS
1 media/webrtc/trunk/webrtc/build/OWNERS
1 media/webrtc/trunk/webrtc/build/sanitizers/OWNERS
1 media/webrtc/trunk/webrtc/build/sanitizers/README
1 media/webrtc/trunk/webrtc/call/DEPS
1 media/webrtc/trunk/webrtc/call/OWNERS
1 media/webrtc/trunk/webrtc/common_audio/DEPS
1 media/webrtc/trunk/webrtc/common_audio/OWNERS
1 media/webrtc/trunk/webrtc/common_video/DEPS
1 media/webrtc/trunk/webrtc/common_video/OWNERS
1 media/webrtc/trunk/webrtc/DEPS
1 media/webrtc/trunk/webrtc/LICENSE
1 media/webrtc/trunk/webrtc/LICENSE_THIRD_PARTY
1 media/webrtc/trunk/webrtc/logging/OWNERS
1 media/webrtc/trunk/webrtc/logging/rtc_event_log/DEPS
1 media/webrtc/trunk/webrtc/media/DEPS
1 media/webrtc/trunk/webrtc/media/OWNERS
1 media/webrtc/trunk/webrtc/modules/audio_coding/codecs/g711/OWNERS
1 media/webrtc/trunk/webrtc/modules/audio_coding/codecs/OWNERS
1 media/webrtc/trunk/webrtc/modules/audio_coding/DEPS
1 media/webrtc/trunk/webrtc/modules/audio_coding/neteq/tools/DEPS
1 media/webrtc/trunk/webrtc/modules/audio_coding/OWNERS
1 media/webrtc/trunk/webrtc/modules/audio_conference_mixer/DEPS
1 media/webrtc/trunk/webrtc/modules/audio_conference_mixer/OWNERS
1 media/webrtc/trunk/webrtc/modules/audio_device/DEPS
1 media/webrtc/trunk/webrtc/modules/audio_device/OWNERS
1 media/webrtc/trunk/webrtc/modules/audio_mixer/DEPS
1 media/webrtc/trunk/webrtc/modules/audio_processing/DEPS
1 media/webrtc/trunk/webrtc/modules/audio_processing/OWNERS
1 media/webrtc/trunk/webrtc/modules/bitrate_controller/DEPS
1 media/webrtc/trunk/webrtc/modules/bitrate_controller/OWNERS
1 media/webrtc/trunk/webrtc/modules/congestion_controller/DEPS
1 media/webrtc/trunk/webrtc/modules/congestion_controller/OWNERS
1 media/webrtc/trunk/webrtc/modules/desktop_capture/DEPS
1 media/webrtc/trunk/webrtc/modules/desktop_capture/OWNERS
1 media/webrtc/trunk/webrtc/modules/include/DEPS
1 media/webrtc/trunk/webrtc/modules/media_file/DEPS
1 media/webrtc/trunk/webrtc/modules/media_file/OWNERS
1 media/webrtc/trunk/webrtc/modules/OWNERS
1 media/webrtc/trunk/webrtc/modules/pacing/DEPS
1 media/webrtc/trunk/webrtc/modules/pacing/OWNERS
1 media/webrtc/trunk/webrtc/modules/remote_bitrate_estimator/DEPS
1 media/webrtc/trunk/webrtc/modules/remote_bitrate_estimator/OWNERS
1 media/webrtc/trunk/webrtc/modules/rtp_rtcp/DEPS
1 media/webrtc/trunk/webrtc/modules/rtp_rtcp/OWNERS
1 media/webrtc/trunk/webrtc/modules/utility/DEPS
1 media/webrtc/trunk/webrtc/modules/utility/OWNERS
1 media/webrtc/trunk/webrtc/modules/video_capture/DEPS
1 media/webrtc/trunk/webrtc/modules/video_capture/OWNERS
1 media/webrtc/trunk/webrtc/modules/video_coding/codecs/OWNERS
1 media/webrtc/trunk/webrtc/modules/video_coding/DEPS
1 media/webrtc/trunk/webrtc/modules/video_coding/OWNERS
1 media/webrtc/trunk/webrtc/modules/video_processing/DEPS
1 media/webrtc/trunk/webrtc/modules/video_processing/OWNERS
1 media/webrtc/trunk/webrtc/OWNERS
1 media/webrtc/trunk/webrtc/p2p/DEPS
1 media/webrtc/trunk/webrtc/p2p/OWNERS
1 media/webrtc/trunk/webrtc/PATENTS
1 media/webrtc/trunk/webrtc/pc/DEPS
1 media/webrtc/trunk/webrtc/sdk/android/api/org/webrtc/OWNERS
1 media/webrtc/trunk/webrtc/sdk/android/OWNERS
1 media/webrtc/trunk/webrtc/sdk/android/README
1 media/webrtc/trunk/webrtc/sdk/android/src/jni/DEPS
1 media/webrtc/trunk/webrtc/sdk/android/src/jni/OWNERS
1 media/webrtc/trunk/webrtc/sdk/DEPS
1 media/webrtc/trunk/webrtc/stats/DEPS
1 media/webrtc/trunk/webrtc/system_wrappers/DEPS
1 media/webrtc/trunk/webrtc/system_wrappers/OWNERS
1 media/webrtc/trunk/webrtc/test/DEPS
1 media/webrtc/trunk/webrtc/test/fuzzers/corpora/pseudotcp-corpus/785b96587d0eb44dd5d75b7a886f37e2ac504511
1 media/webrtc/trunk/webrtc/test/fuzzers/corpora/README
1 media/webrtc/trunk/webrtc/test/fuzzers/corpora/rtp-corpus/rtp-0
1 media/webrtc/trunk/webrtc/test/fuzzers/corpora/rtp-corpus/rtp-1
1 media/webrtc/trunk/webrtc/test/fuzzers/corpora/rtp-corpus/rtp-2
1 media/webrtc/trunk/webrtc/test/fuzzers/corpora/rtp-corpus/rtp-3
1 media/webrtc/trunk/webrtc/test/fuzzers/corpora/rtp-corpus/rtp-4
1 media/webrtc/trunk/webrtc/test/fuzzers/DEPS
1 media/webrtc/trunk/webrtc/test/fuzzers/OWNERS
1 media/webrtc/trunk/webrtc/test/OWNERS
1 media/webrtc/trunk/webrtc/tools/barcode_tools/DEPS
1 media/webrtc/trunk/webrtc/tools/barcode_tools/README
1 media/webrtc/trunk/webrtc/tools/DEPS
1 media/webrtc/trunk/webrtc/tools/event_log_visualizer/OWNERS
1 media/webrtc/trunk/webrtc/tools/loopback_test/OWNERS
1 media/webrtc/trunk/webrtc/tools/loopback_test/README
1 media/webrtc/trunk/webrtc/tools/OWNERS
1 media/webrtc/trunk/webrtc/tools/py_event_log_analyzer/README
1 media/webrtc/trunk/webrtc/tools/rtcbot/OWNERS
1 media/webrtc/trunk/webrtc/tools/rtcbot/README
1 media/webrtc/trunk/webrtc/video/DEPS
1 media/webrtc/trunk/webrtc/video/OWNERS
1 media/webrtc/trunk/webrtc/voice_engine/DEPS
1 media/webrtc/trunk/webrtc/voice_engine/OWNERS
1 mem
1 memory/replace/dmd/README
1 memory/replace/logalloc/README
1 mfbt/decimal/UPSTREAM-GIT-SHA
1 mfbt/double-conversion/double-conversion/LICENSE
1 mfbt/double-conversion/GIT-INFO
1 mfbt/STYLE
1 mjpg
1 mjpg^headers^
1 mmp
1 mobile/android/app/src/main/assets/publicsuffixlist
1 mobile/android/config/mozconfigs/android-aarch64/debug
1 mobile/android/config/mozconfigs/android-aarch64/l10n-nightly
1 mobile/android/config/mozconfigs/android-aarch64/nightly
1 mobile/android/config/mozconfigs/android-api-16/debug
1 mobile/android/config/mozconfigs/android-api-16/debug-artifact
1 mobile/android/config/mozconfigs/android-api-16-frontend/nightly
1 mobile/android/config/mozconfigs/android-api-16-gradle-dependencies/nightly
1 mobile/android/config/mozconfigs/android-api-16-gradle/nightly
1 mobile/android/config/mozconfigs/android-api-16-gradle/nightly-artifact
1 mobile/android/config/mozconfigs/android-api-16/l10n-nightly
1 mobile/android/config/mozconfigs/android-api-16/nightly
1 mobile/android/config/mozconfigs/android-api-16/nightly-artifact
1 mobile/android/config/mozconfigs/android-api-16/nightly-without-google-play-services
1 mobile/android/config/mozconfigs/android-x86/debug
1 mobile/android/config/mozconfigs/android-x86/l10n-nightly
1 mobile/android/config/mozconfigs/android-x86/nightly
1 mobile/android/config/mozconfigs/android-x86/nightly-artifact
1 mobile/android/config/mozconfigs/common
1 mobile/android/config/mozconfigs/public-partner/distribution_sample/mozconfig1
1 mobile/android/docs/Makefile
1 mobile/android/gradle/m2repo/README
1 mobile/android/LICENSE
1 mobile/android/locales/all-locales
1 mobile/android/locales/maemo-locales
1 mobile/android/tests/browser/chrome/tp5/README
1 mobile/android/tests/browser/robocop/assets/README
1 mobile/android/tests/browser/robocop/assets/testcheck2-motionevents
1 mobile/android/tests/browser/robocop/README
1 mobile/android/thirdparty/com/adjust/sdk/LICENSE
1 mobile/android/thirdparty/README
1 modulemap
1 modules/freetype2/builds/amiga/makefile
1 modules/freetype2/builds/amiga/README
1 modules/freetype2/builds/amiga/smakefile
1 modules/freetype2/builds/mac/README
1 modules/freetype2/builds/unix/configure
1 modules/freetype2/builds/unix/install-sh
1 modules/freetype2/ChangeLog
1 modules/freetype2/configure
1 modules/freetype2/docs/CHANGES
1 modules/freetype2/docs/CMAKE
1 modules/freetype2/docs/CUSTOMIZE
1 modules/freetype2/docs/DEBUG
1 modules/freetype2/docs/INSTALL
1 modules/freetype2/docs/MAKEPP
1 modules/freetype2/docs/PROBLEMS
1 modules/freetype2/docs/reference/README
1 modules/freetype2/docs/release
1 modules/freetype2/docs/TODO
1 modules/freetype2/Jamfile
1 modules/freetype2/Jamrules
1 modules/freetype2/Makefile
1 modules/freetype2/objs/README
1 modules/freetype2/README
1 modules/freetype2/src/autofit/Jamfile
1 modules/freetype2/src/base/Jamfile
1 modules/freetype2/src/bdf/Jamfile
1 modules/freetype2/src/bdf/README
1 modules/freetype2/src/bzip2/Jamfile
1 modules/freetype2/src/cache/Jamfile
1 modules/freetype2/src/cff/Jamfile
1 modules/freetype2/src/cid/Jamfile
1 modules/freetype2/src/gxvalid/Jamfile
1 modules/freetype2/src/gxvalid/README
1 modules/freetype2/src/gzip/Jamfile
1 modules/freetype2/src/Jamfile
1 modules/freetype2/src/lzw/Jamfile
1 modules/freetype2/src/otvalid/Jamfile
1 modules/freetype2/src/pcf/Jamfile
1 modules/freetype2/src/pcf/README
1 modules/freetype2/src/pfr/Jamfile
1 modules/freetype2/src/psaux/Jamfile
1 modules/freetype2/src/pshinter/Jamfile
1 modules/freetype2/src/psnames/Jamfile
1 modules/freetype2/src/raster/Jamfile
1 modules/freetype2/src/sfnt/Jamfile
1 modules/freetype2/src/smooth/Jamfile
1 modules/freetype2/src/tools/ftfuzzer/README
1 modules/freetype2/src/tools/ftrandom/Makefile
1 modules/freetype2/src/tools/ftrandom/README
1 modules/freetype2/src/tools/Jamfile
1 modules/freetype2/src/tools/no-copyright