Chroium 源码目录结构分析(2):自动摘取目录结构信息

本节,我们通过脚本,梳理统计chromium源码子目录的大小和功能情况。
我们计划分别对src目录和third-party目录进行两次分析。
首先我们会给出脚本,然后给出脚本跑出的src目录,最后给出脚本跑出的third_party目录。

脚本跑出来的内容比较详细,因此我们可以让AI帮我们总结。
如果对当前详细数据不感兴趣,可以直接去看AI总结部分:
Chroium 源码目录结构分析(3):目录和模块总结(src根目录部分)

脚本(第一部分)

import os
import re
from collections import Counter

# 计算目录的文件总大小和文件总数,并按扩展名统计
def get_directory_stats(path, ignore_dirs):
    extensions_size = Counter()
    extensions_count = Counter()
    
    for root, dirs, files in os.walk(path):
        dirs[:] = [d for d in dirs if d not in ignore_dirs]
        for file in files:
            file_path = os.path.join(root, file)
            if os.path.isfile(file_path):
                file_size = os.path.getsize(file_path)
                _, ext = os.path.splitext(file)
                extensions_size[ext] += file_size
                extensions_count[ext] += 1
    
    total_size = sum(extensions_size.values())
    total_count = sum(extensions_count.values())
    return extensions_size, extensions_count, total_size, total_count

# 格式化扩展名统计数据为Markdown表格
def format_extension_stats(extensions_size, extensions_count, total_size, total_count):
    if (total_count == 0) :
        total_count = 1;
    if (total_size == 0) :
        total_size = 1;
    # 按大小降序排序并取前5个
    top_extensions = extensions_size.most_common(5)
    other_size = total_size - sum(size for _, size in top_extensions)
    other_count = total_count - sum(extensions_count[ext] for ext, _ in top_extensions)
    
    md_table = [
        "| 扩展名 | 文件数 | 总大小 (字节) | 文件数占比 | 大小占比 |\n",
        "| ------ | ------ | ------------- | --------- | -------- |\n"
    ]

    for ext, size in top_extensions:
        count = extensions_count[ext]
        md_table.append(f"| {ext} | {count} | {size} | {count / total_count:.2%} | {size / total_size:.2%} |\n")

    md_table.append(f"| 其他 | {other_count} | {other_size} | {other_count / total_count:.2%} | {other_size / total_size:.2%} |\n")
    return ''.join(md_table)

# 获取README.md内容,并将标题加粗
def get_readme_content(readme_path):
    readme_content = '> 未找到 README.md 或 README.md 为空\n'
    if os.path.isfile(readme_path):
        with open(readme_path, 'r', encoding='utf-8') as readme_file:
            readme_lines = []
            for line in readme_file:
                if re.match(r'^#+\s', line):
                    line = '**' + line.strip() + '**\n'
                readme_lines.append(f'> {line}' if line.strip() != '' else '>')
                if len(readme_lines) >= 20:
                    break
            readme_content = ''.join(readme_lines)
    return readme_content

# Chromium源码路径
chromium_src_path = './src'

# 忽略的目录列表
ignore_dirs = ['out', '.git']

# 计算整个源码目录的总体大小和文件总数
extensions_size, extensions_count, total_src_size, total_src_count = get_directory_stats(chromium_src_path, ignore_dirs)

# Markdown 输出
md_output = []

# 遍历Chromium源码目录
for root, dirs, files in os.walk(chromium_src_path):
    if root == chromium_src_path or root.count(os.sep) - chromium_src_path.count(os.sep) == 1:
        dirs[:] = [d for d in dirs if d not in ignore_dirs]

        # 获取当前目录的统计数据
        dir_extensions_size, dir_extensions_count, current_dir_size, current_dir_count = get_directory_stats(root, ignore_dirs)
        current_dir_percentage_size = (current_dir_size / total_src_size) * 100
        current_dir_percentage_count = (current_dir_count / total_src_count) * 100

        # 读取并格式化README.md内容
        readme_path = os.path.join(root, 'README.md')
        readme_content = get_readme_content(readme_path)

        # 创建Markdown格式的输出
        relative_path = os.path.relpath(root, chromium_src_path)
        md_output.append(f'## {relative_path}\n')
        md_output.append(readme_content + '\n')
        
        # 添加目录摘要信息
        md_output.append(f'**目录摘要:**\n')
        md_output.append(f'- 总大小: {current_dir_size} 字节 ({current_dir_percentage_size:.2f}% of total)\n')
        md_output.append(f'- 文件总数: {current_dir_count} ({current_dir_percentage_count:.2f}% of total)\n\n')

        # 格式化扩展名统计数据为Markdown表格
        extension_stats_md = format_extension_stats(dir_extensions_size, dir_extensions_count, current_dir_size, current_dir_count)

        # 添加文件扩展名摘要信息
        md_output.append('**文件扩展名摘要 (前5):**\n')
        md_output.append(extension_stats_md)
        md_output.append('\n\n')

# 输出结果到Markdown文件
with open('chromium_code_analysis_src.md', 'w', encoding='utf-8') as md_file:
    md_file.write(''.join(md_output))


src根目录(第二部分)

.

Chromium
Chromium is an open-source browser project that aims to build a safer, faster,
and more stable way for all users to experience the web.
The project’s web site is https://www.chromium.org.
To check out the source code locally, don’t use git clone! Instead,
follow the instructions on how to get the code.
Documentation in the source is rooted in docs/README.md.
Learn how to Get Around the Chromium Source Code Directory
Structure
.
For historical reasons, there are some small top level directories. Now the
guidance is that new top level directories are for product (e.g. Chrome,
Android WebView, Ash). Even if these products have multiple executables, the
code should be in subdirectories of the product.

目录摘要:

  • 总大小: 8190345669 字节 (100.00% of total)
  • 文件总数: 462376 (100.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc78700101169974417.02%12.35%
.exe2209756395480.05%11.91%
.h9239277410553319.98%9.45%
296614094068446.41%5.00%
.cpp156313423582473.38%4.18%
其他245772467713575353.15%57.11%

android_webview

Android WebView
Android WebView is an Android system component for displaying web content.
WebView (and
the [related Android classes][1]) are implemented by the code in the
//android_webview/ folder.
This directory contains the Android WebView implementation, as well as the
implementation for the [AndroidX Webkit support library][2].
Overview for Chromium team members and contributors
Please see WebView Architecture.
Want to use WebView in an Android app?
Please consult our API documentation and app development guides:

  • [Android Frameworks classes][1]
  • [AndroidX Webkit support library][2]

目录摘要:

  • 总大小: 6307424 字节 (0.08% of total)
  • 文件总数: 1164 (0.25% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.java370244269231.79%38.73%
.cc211155100018.13%24.59%
.png308343162.58%13.23%
.h18147074015.55%7.46%
.md612707655.24%4.29%
其他31173791126.72%11.70%

apps

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 122170 字节 (0.00% of total)
  • 文件总数: 30 (0.01% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc139314743.33%76.24%
.h102413533.33%19.76%
5249316.67%2.04%
.gn223956.67%1.96%
其他000.00%0.00%

ash

Ash
Ash is the “Aura Shell”, the window manager and system UI for Chrome OS.
Ash uses the views UI toolkit (e.g. views::View, views::Widget, etc.) backed
by the aura native widget and layer implementations.
Dependencies
Ash sits below chrome in the dependency graph (i.e. it cannot depend on code
in //chrome). For historical reasons, ash has multiple dependency levels:

  • General //ash code is on top (//ash/system, //ash/wm, etc.)
  • //ash/components sit below //ash, see README
  • //ash/constants sit near the bottom of the dependency graph, see
    README
    Access to Ash internals is controlled by DEPS files. Unless explicitly allowed
    by DEPS, code outside Ash should depend on the interfaces in //ash/public. Check
    with OWNERS if you have questions.

目录摘要:

  • 总大小: 88388306 字节 (1.08% of total)
  • 文件总数: 11408 (2.47% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc34774376920830.48%49.52%
.xtb162219733021.42%24.86%
.h2667925147123.38%10.47%
.ts64037943475.61%4.29%
.wasm116806070.01%1.90%
其他4461791937139.10%8.96%

base

What is this
Contains a written down set of principles and other information on //base.
Please add to it!
About //base:
Chromium is a very mature project. Most things that are generally useful are
already here and things not here aren’t generally useful.
The bar for adding stuff to base is that it must have demonstrated wide
applicability. Prefer to add things closer to where they’re used (i.e. “not
base”), and pull into base only when needed. In a project our size,
sometimes even duplication is OK and inevitable.
Adding a new logging macro DPVELOG_NE is not more clear than just
writing the stuff you want to log in a regular logging statement, even
if it makes your calling code longer. Just add it to your own code.
If the code in question does not need to be used inside base, but will have
multiple consumers across the codebase, consider placing it in a new directory

目录摘要:

  • 总大小: 23244129 字节 (0.28% of total)
  • 文件总数: 3169 (0.69% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc14501346990445.76%57.95%
.h1097645903734.62%27.79%
.java26116133938.24%6.94%
.mm663668392.08%1.58%
.patch202647840.63%1.14%
其他27510701728.68%4.60%

build

About
//build contains:

  • Core GN templates and configuration
  • Core Python build scripts
    Since this directory is DEPS’ed in by some other repositories (webrtc, pdfium,
    v8, etc), it should be kept as self-contained as possible by not referring
    to files outside of it. Some exceptions exist (//testing, select
    //third_party subdirectories), but new dependencies tend to break these other
    projects, and so should be avoided.
    Changes to //build should be landed in the Chromium repo. They will then be
    replicated to the stand-alone build repo
    by the gsubtreed tool.
    Note: You can find all directories already available through gsubtreed in the
    list of all chromium repos.
    Contents
  • //build/config - Common templates via .gni files.
  • //build/toolchain - GN toolchain definitions.

目录摘要:

  • 总大小: 6898788 字节 (0.08% of total)
  • 文件总数: 1082 (0.23% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.py445332463441.13%48.19%
.gni134100281112.38%14.54%
.gn13366761812.29%9.68%
.exe16323200.09%9.17%
.star301757832.77%2.55%
其他339109562231.33%15.88%

buildtools

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 5835908 字节 (0.07% of total)
  • 文件总数: 63 (0.01% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.exe255848963.17%95.70%
1812312828.57%2.11%
.py129423519.05%1.61%
.gn3145714.76%0.25%
.cfg13691320.63%0.12%
其他151216523.81%0.21%

build_overrides

Build overrides in GN
This directory is used to allow different products to customize settings
for repos that are DEPS’ed in or shared.
For example: V8 could be built on its own (in a “standalone” configuration),
and it could be built as part of Chromium. V8 might define a top-level
target, //v8:d8 (a simple executable), that should only be built in the
standalone configuration. To figure out whether or not it should be
in a standalone configuration, v8 can create a file, build_overrides/v8.gni,
that contains a variable, build_standalone_d8 = true.
and import it (as import(“//build_overrides/v8.gni”) from its top-level
BUILD.gn file.
Chromium, on the other hand, might not need to build d8, and so it would
create its own build_overrides/v8.gni file, and in it set
build_standalone_d8 = false.
The two files should define the same set of variables, but the values can
vary as appropriate to the needs of the two different builds.

目录摘要:

  • 总大小: 18877 字节 (0.00% of total)
  • 文件总数: 20 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.gni181731790.00%91.74%
.md114045.00%7.44%
11565.00%0.83%
其他000.00%0.00%

cc

cc/
This directory contains a compositor, used in both the renderer and the
browser. In the renderer, Blink is the client. In the browser, both
ui and Android browser compositor are the clients.
The public API of the compositor is LayerTreeHost and Layer and its
derived types. Embedders create a LayerTreeHost (single, multithreaded,
or synchronous) and then attach a tree of Layers to it.
When Layers are updated they request a commit, which takes the structure
of the tree of Layers, the data on each Layer, and the data of its host and
atomically pushes it all to a tree of LayerImpls and a LayerTreeHostImpl
and LayerTreeImpl. The main thread (which owns the tree of Layers
and the embedder) is blocked during this commit operation.
The commit is from the main thread Layer tree to the pending tree in
multithreaded mode. The pending tree is a staging tree for
rasterization. When enough rasterization has completed for
invalidations, the pending tree is ready to activate. Activate is an

目录摘要:

  • 总大小: 12887260 字节 (0.16% of total)
  • 文件总数: 918 (0.20% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc4941065916353.81%82.71%
.h377194623841.07%15.10%
.png11627440.11%1.26%
.gn9533250.98%0.41%
.md10346361.09%0.27%
其他27311542.94%0.24%

chrome

Chrome
This directory contains the open source, application layer of Google Chrome.
Unlike other parts of Chromium like //content, which provide framework intended
to support multiple products, this directory contains code that is focused on
building specific products with opinionated UX.
Specific products include:

  • Chrome desktop browser for Chrome OS, Windows, Mac and Linux
  • Chrome mobile browser for Android
  • Chrome OS system UI
    See //ios/chrome for the Chrome mobile browser for iOS, and note that code that
    is shared between //chrome and //ios/chrome is typically factored out into
    //components.

目录摘要:

  • 总大小: 518757646 字节 (6.33% of total)
  • 文件总数: 58600 (12.67% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc1694219287489228.91%37.18%
.xtb14761692147022.52%32.62%
.java5439496460059.28%9.57%
.h111653559792519.05%6.86%
.ts1960130532693.34%2.52%
其他216185837085336.89%11.25%

chromecast

Cast base
cast_features
This file contains tools for checking the feature state of all of the features
which affect Cast products. Cast features build upon
the Chrome feature system.
Some aspects of Cast require the feature system to work differently, however,
so some additional logic has been layered on top. Details are available in
comments of the header file. The basics are:

  • If you are adding a new feature, add it to cast_features.cc so it lives
    alongside existing features
  • Add your new feature to the list of kFeatures in cast_features.cc
BASE_FEATURE(kMyFeature, "my_feature", base::FEATURE_DISABLED_BY_DEFAULT);
const base::Feature* kFeatures[] = {

目录摘要:

  • 总大小: 6420866 字节 (0.08% of total)
  • 文件总数: 1591 (0.34% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc641372614440.29%58.03%
.h554158966434.82%24.76%
.java603377333.77%5.26%
.png112892010.69%4.50%
.gn992177326.22%3.39%
其他22626039214.20%4.06%

chromeos

Chrome OS
This directory contains low-level support for Chrome running on Chrome OS.
The Lacros project is in the process of extracting the
browser-functionality into a separate binary. This introduces the following
terminology and rules:

  • ash-chrome: The new name of the legacy “chrome” binary. It contains system
    UI and the current/legacy web browser. Code that is only used by ash-chrome
    should eventually be moved to //chromeos/ash, have an _ash suffix in
    the filename, or have a (grand-)parent directory named /ash/.
  • lacros-chrome: The name of the new, standalone web-browser binary. Code that
    is only used by lacros-chrome should have a _lacros suffix in the filename,
    or have a (grand-)parent directory named /lacros/.
  • crosapi: The term “crosapi” is short for ChromeOS API. Ash-chrome
    implements the API, and lacros-chrome is the only consumer.
  • chromeos: The term “chromeos” refers to code that is shared by binaries
    targeting the chromeos platform or using the chromeos toolchain. Code that
    is shared by ash-chrome and lacros-chrome should have a _chromeos suffix in
    the filename, or have a (grand-)parent directory named /chromeos/.

目录摘要:

  • 总大小: 43460435 字节 (0.53% of total)
  • 文件总数: 7343 (1.59% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc23042189674331.38%50.38%
.xtb81120454661.10%27.72%
.h1841640271225.07%14.73%
.mojom27414222973.73%3.27%
.gn3165018574.30%1.15%
其他2527119136034.41%2.74%

clank

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 0 字节 (0.00% of total)
  • 文件总数: 0 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
其他11100.00%100.00%

codelabs

Chromium Codelab
See the cpp101/ directory for the Chromium C++ codelab,
including example solutions.
See the threading_and_scheduling/ directory for more elaborate usages of the
threading and scheduling primitives in Chromium.
Motivation
The goal of this codelab is to introduce new Chromium developers to both the
important design patterns and the style of code they can expect to become
familiar with.
The code in this directory is for documentation purposes only. It is compiled
via the top level BUILD.gn’s gn_all target to make sure it is kept up to date.

目录摘要:

  • 总大小: 115941 字节 (0.00% of total)
  • 文件总数: 40 (0.01% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc197529047.50%64.94%
.md42309610.00%19.92%
.h376737.50%6.62%
.gn7720217.50%6.21%
.mojom222415.00%1.93%
其他543912.50%0.38%

components

About //components
This directory is meant to house features or subsystems that are used in more
than one part of the Chromium codebase.
Use cases:

  • Features that are shared by Chrome on iOS (//ios/chrome) and Chrome on
    other platforms (//chrome).
    • Note: //ios doesn’t depend on //chrome.
  • Features that are shared between multiple embedders of content. For example,
    //chrome and //android_webview.
  • Features that are shared between Blink and the browser process.
    • Note: It is also possible to place code shared between Blink and the
      browser process into //third_party/blink/common. The distinction comes
      down to (a) whether Blink is the owner of the code in question or a
      consumer of it and (b) whether the code in question is shared by Chrome
      on iOS as well. If the code is conceptually its own cross-process
      feature with Blink as a consumer, then //components can make sense. If
      it’s conceptually Blink code, then //third_party/blink/common likely

目录摘要:

  • 总大小: 226364608 字节 (2.76% of total)
  • 文件总数: 29550 (6.39% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc88179509788829.84%42.01%
.xtb1065758596903.60%33.51%
.h69652633195623.57%11.63%
.java1455102051014.92%4.51%
.gn93822746243.17%1.00%
其他103101659534934.89%7.33%

content

Content module
High-level overview
The “content” module is located in src/content, and is the core code needed to
render a page using a multi-process sandboxed browser. It includes all the web
platform features (i.e. HTML5) and GPU acceleration. It does not include Chrome
features, e.g. extensions/autofill/spelling etc.
Motivation
As the Chromium code has grown, features inevitably hooked into the wrong
places, causing layering violations and dependencies that shouldn’t exist. It’s
been hard for developers to figure out what the “best” way is because the APIs
(when they existed) and features were together in the same directory. To avoid
this happening, and to add a clear separation between the core pieces of the
code that render a page using a multi-process browser, consensus was reached to
move the core Chrome code into src/content (content not
chrome
😃 ).
content vs chrome
content should only contain code that is required to implement the web

目录摘要:

  • 总大小: 77964652 字节 (0.95% of total)
  • 文件总数: 6814 (1.47% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc29925987659943.91%76.80%
.h23841139169834.99%14.61%
.java33330761204.89%3.95%
.mm11812531441.73%1.61%
.gn684280801.00%0.55%
其他919193901113.49%2.49%

courgette

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 646038 字节 (0.01% of total)
  • 文件总数: 108 (0.02% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc5542232550.93%65.37%
.h3613879233.33%21.48%
.png2421391.85%6.52%
10230219.26%3.56%
.html161130.93%0.95%
其他4136483.70%2.11%

crypto

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 521305 字节 (0.01% of total)
  • 文件总数: 116 (0.03% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc5534515647.41%66.21%
.h4511049338.79%21.20%
.mm11590529.48%11.33%
.gn159990.86%1.15%
33142.59%0.06%
其他12910.86%0.06%

dbus

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 525729 字节 (0.01% of total)
  • 文件总数: 57 (0.01% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc3237258156.14%70.87%
.h1914935633.33%28.41%
.gn127641.75%0.53%
46087.02%0.12%
.proto14201.75%0.08%
其他000.00%0.00%

device

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 9932592 字节 (0.12% of total)
  • 文件总数: 1436 (0.31% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc577647312340.18%65.17%
.h539236434337.53%23.80%
.mm495108433.41%5.14%
.java141776750.97%1.79%
.xtb16213509211.28%1.36%
其他952715166.62%2.73%

extensions

This will become a reusable extensions module. It implements the core parts of
Chrome’s extension system, and can be used with any host of the
content module.
Some extensions code that is not Chrome-specific still lives in
//chrome/browser/extensions and will be moved
here.
Technical Documentation:

目录摘要:

  • 总大小: 15786627 字节 (0.19% of total)
  • 文件总数: 2360 (0.51% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc1029980570043.60%62.11%
.h846349448535.85%22.14%
.xtb818518263.43%5.40%
.idl534519222.25%2.86%
.json283572841.19%2.26%
其他32382541013.69%5.23%

fuchsia_web

fuchsia.web - Fuchsia WebEngine and Runners
This directory contains code related to the
fuchsia.web FIDL API.
Specifically, it contains the implementation of Fuchsia WebEngine and code
related to it, including the Runners that use it. Code in this
directory must not be used outside it and its subdirectories.
General information about Chromium on Fuchsia is
here.
Code organization
Each of the following subdirectories contain code for a specific Fuchsia
service:

  • ./common contains code shared by both WebEngine and Runners.
  • ./runnerscontains implementations of Fuchsia sys.runner.
    • ./runners/cast Enables the Fuchsia system to launch Cast applications.
  • ./shell contains WebEngineShell, a simple wrapper for launching URLs in

目录摘要:

  • 总大小: 1381845 字节 (0.02% of total)
  • 文件总数: 239 (0.05% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc111107790446.44%78.00%
.h7319345430.54%14.00%
.gn9472343.77%3.42%
.cml11334594.60%2.42%
2088018.37%0.64%
其他15209936.28%1.52%

gin

Gin - Lightweight bindings for V8
This directory contains Gin, a set of utilities to make working with V8 easier.
Here are some of the key bits:

  • converter.h: Templatized JS ↔ C++ conversion routines for many common C++
    types. You can define your own by specializing Converter.
  • function_template.h: Create JavaScript functions that dispatch to any C++
    function, member function pointer, or base::RepeatingCallback.
  • object_template_builder.h: A handy utility for creation of v8::ObjectTemplate.
  • wrappable.h: Base class for C++ classes that want to be owned by the V8 GC.
    Wrappable objects are automatically deleted when GC discovers that nothing in
    the V8 heap refers to them. This is also an easy way to expose C++ objects to
    JavaScript.

目录摘要:

  • 总大小: 334976 字节 (0.00% of total)
  • 文件总数: 92 (0.02% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc4822239252.17%66.39%
.h3810356641.30%30.92%
.gn169801.09%2.08%
.md110191.09%0.30%
38553.26%0.26%
其他11641.09%0.05%

google_apis

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 2140351 字节 (0.03% of total)
  • 文件总数: 283 (0.06% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc147158957851.94%74.27%
.h10049319635.34%23.04%
.gn8243252.83%1.14%
.proto5191051.77%0.89%
.mm284050.71%0.39%
其他2157427.42%0.27%

google_update

This directory contains the IDL file used by Google Chrome to interact with
Google Update. Note that this file should not be used directly by other Chromium
forks that interact with their own Omaha
forks.
目录摘要:

  • 总大小: 47206 字节 (0.00% of total)
  • 文件总数: 6 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.idl14608816.67%97.63%
.chromium146716.67%0.99%
.gn124916.67%0.53%
.md123916.67%0.51%
216333.33%0.35%
其他000.00%0.00%

gpu

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 15181827 字节 (0.19% of total)
  • 文件总数: 1202 (0.26% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc542902212845.09%59.43%
.h510493065942.43%32.48%
.py164993541.33%3.29%
.txt371974113.08%1.30%
.gn211900221.75%1.25%
其他763422536.32%2.25%

headless

Headless Chromium
Headless Chromium allows running Chromium in a headless/server environment.
Expected use cases include loading web pages, extracting metadata (e.g., the
DOM) and generating bitmaps from page contents – using all the modern web
platform features provided by Chromium and Blink.
There are two ways to use Headless Chromium:
Usage via the DevTools remote debugging protocol

  1. Start a normal Chrome binary with the --headless command line flag:
$ chrome --headless --remote-debugging-port=9222 https://chromium.org/
  1. Navigate to http://localhost:9222/ in another browser to open the
    DevTools interface or use a tool such
    as Selenium to drive the headless browser.

目录摘要:

  • 总大小: 367855 字节 (0.00% of total)
  • 文件总数: 114 (0.02% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc4322086237.72%60.04%
.h469545740.35%25.95%
.gn1267460.88%7.27%
.mm373812.63%2.01%
.md370562.63%1.92%
其他181035315.79%2.81%

infra

This directory contains chrome-infra-specific files.

目录摘要:

  • 总大小: 12300848 字节 (0.15% of total)
  • 文件总数: 2610 (0.56% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cfg2950124071.11%40.75%
.json2300396032288.12%32.20%
.star13921469485.33%17.45%
.png205301970.77%4.31%
.pyl63434610.23%2.79%
其他1163075134.44%2.50%

internal

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 0 字节 (0.00% of total)
  • 文件总数: 0 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
其他11100.00%100.00%

ios

This directory holds code related to Chrome for iOS. See [this document] for a
description of the structure underneath this directory.
[this document]: https://www.chromium.org/developers/design-documents/structure-of-layered-components-within-the-chromium-codebase/
目录摘要:

  • 总大小: 106028349 字节 (1.29% of total)
  • 文件总数: 14345 (3.10% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.mm39893157469627.81%29.78%
.xtb1060252483037.39%23.81%
681101002534.75%9.53%
.png56387589643.92%8.26%
.h3950710005527.54%6.70%
其他41022324607828.60%21.92%

ios_internal

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 0 字节 (0.00% of total)
  • 文件总数: 0 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
其他11100.00%100.00%

ipc

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 770670 字节 (0.01% of total)
  • 文件总数: 127 (0.03% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc5851723345.67%67.11%
.h5823595245.67%30.62%
.gn190740.79%1.18%
443373.15%0.56%
.mojom328832.36%0.37%
其他311912.36%0.15%

media

media/
Welcome to Chromium Media! This directory primarily contains a collection of
components related to media capture and playback. Feel free to reach out to the
media-dev@chromium.org mailing list with questions.
As a top level component this may be depended on by almost every other Chromium
component except base/. Certain components may not work properly in sandboxed
processes.
Directory Breakdown

  • audio/ - Code for audio input and output. Includes platform specific output
    and input implementations. Due to use of platform APIs, can not normally be used
    from within a sandboxed process.
  • base/ - Contains miscellaneous enums, utility classes, and shuttling
    primitives used throughout media/ and beyond; i.e. AudioBus, AudioCodec, and

目录摘要:

  • 总大小: 27536421 字节 (0.34% of total)
  • 文件总数: 3338 (0.72% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc16551958955749.58%71.14%
.h1269554515038.02%20.14%
.java365576931.08%2.03%
.mm273836950.81%1.39%
.textproto23484100.06%1.27%
其他349111191610.46%4.04%

mojo

Mojo
[TOC]
Getting Started With Mojo
To get started using Mojo in Chromium, the fastest path forward will likely be
to read the Mojo sections of the
Intro to Mojo & Services guide.
For more detailed reference material on the most commonly used features of Mojo,
head directly to the bindings documentation for your language
of choice or the more general
mojom Interface Definition Language (IDL)
documentation.
If you’re looking for information on creating and/or connecting to services,
you’re in the wrong place! Mojo does not deal with services, it only facilitates
interface definition, message passing, and other lower-level IPC primitives.
Instead, you should take a look at some of the other available

目录摘要:

  • 总大小: 5739786 字节 (0.07% of total)
  • 文件总数: 971 (0.21% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc257210468926.47%36.67%
.h292126758130.07%22.08%
.py676662116.90%11.61%
.java753798247.72%6.62%
.tmpl953311729.78%5.77%
其他18599030919.05%17.25%

native_client

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 0 字节 (0.00% of total)
  • 文件总数: 0 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
其他11100.00%100.00%

native_client_sdk

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 30731847 字节 (0.38% of total)
  • 文件总数: 2923 (0.63% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.html12851436576343.96%46.75%
.png738764396325.25%24.87%
.h14029387854.79%9.56%
.jpg2112513700.72%4.07%
.rst699797282.36%3.19%
其他670355223822.92%11.56%

net

Chrome Networking Stack
This directory contains the code behind Chrome’s networking stack.
It is documented
here.

目录摘要:

  • 总大小: 94713679 字节 (1.16% of total)
  • 文件总数: 6657 (1.44% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc21653749097532.52%39.58%
11712053327117.59%21.68%
.json13173519440.20%18.32%
.h1575860061923.66%9.08%
.pem52856001597.93%5.91%
其他1205513671118.10%5.42%

pdf

//pdf contains the PDF plugin, its Blink-based replacement, as well as PDF
utility functions that leverage PDFium. It can use low-level components that
live below the content layer, as well as other foundational code like
//printing. It should not use //content or anything in //components that
lives above the content layer. Code that lives above the content layer should
live in //components/pdf, or in the embedder. All the code here should run in
sandboxed child processes.
TODO(crbug.com/40186598): Remove existing //content dependencies.

目录摘要:

  • 总大小: 1480640 字节 (0.02% of total)
  • 文件总数: 235 (0.05% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc95108697040.43%73.41%
.h8428523535.74%19.26%
.pdf15413156.38%2.79%
.dict11352084.68%2.38%
.gn6233792.55%1.58%
其他24853310.21%0.58%

ppapi

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 8485597 字节 (0.10% of total)
  • 文件总数: 1208 (0.26% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.h509473496242.14%55.80%
.cc396207777932.78%24.49%
.idl14060968611.59%7.18%
.c123824970.99%4.51%
.py343125312.81%3.68%
其他1173681429.69%4.34%

printing

//printing contains foundational code that is used for printing. It can depend
on other low-level directories like //cc/paint and //ui, but not higher
level code like //components or //content. Higher level printing code should
live in //components/printing or the embedder.

目录摘要:

  • 总大小: 1423232 字节 (0.02% of total)
  • 文件总数: 194 (0.04% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc8976650045.88%53.86%
.csv33149811.55%22.13%
.h6822616035.05%15.89%
.mm1331820.52%2.33%
.java7296053.61%2.08%
其他265280413.40%3.71%

remoting

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 15196047 字节 (0.19% of total)
  • 文件总数: 2036 (0.44% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc838519068641.16%34.16%
.pkg134693940.05%22.83%
.xtb8119221293.98%12.65%
.h743187101136.49%12.31%
.jpg210026680.10%6.60%
其他371174015918.22%11.45%

rlz

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 260317 字节 (0.00% of total)
  • 文件总数: 64 (0.01% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc3319352651.56%74.34%
.h244943337.50%18.99%
.mm1109591.56%4.21%
.gn252093.12%2.00%
.gni16041.56%0.23%
其他35864.69%0.23%

sandbox

Sandbox Library
This directory contains platform-specific sandboxing libraries. Sandboxing is a
technique that can improve the security of an application by separating
untrustworthy code (or code that handles untrustworthy data) and restricting its
privileges and capabilities.
Each platform relies on the operating system’s process primitive to isolate code
into distinct security principals, and platform-specific technologies are used
to implement the privilege reduction. At a high-level:

  • mac/ uses the Seatbelt sandbox. See the detailed
    design
    for more.
  • linux/ uses namespaces and Seccomp-BPF. See the detailed
    design
    for more.
  • win/ uses a combination of restricted tokens, distinct job objects,
    alternate desktops, and integrity levels. See the detailed
    design
    for more.
    Built on top of the low-level sandboxing library is the

目录摘要:

  • 总大小: 2835126 字节 (0.03% of total)
  • 文件总数: 493 (0.11% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc218189490944.22%66.84%
.h19178189738.74%27.58%
.sb15456223.04%1.61%
.gn8374071.62%1.32%
.txt15173183.04%0.61%
其他46579739.33%2.04%

services

Service Development Guidelines
[TOC]
Overview
The top-level //services directory contains the sources, public Mojo interface
definitions, and public client libraries for a number of essential services,
designated as Chrome Foundation Services. If you think of Chrome as a
“portable OS,” Chrome Foundation Services can be thought of as the core system
services of that OS.
Each subdirectory here corresponds to a service that:

  • generally focuses on a subset of functionality or features which are
    thematically or functionally related in a way that makes sense given the name
    of the service
  • could logically run in an isolated process for security or performance
    isolation, depending on the constraints of the host OS

目录摘要:

  • 总大小: 22582889 字节 (0.28% of total)
  • 文件总数: 3221 (0.70% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc13311556239041.32%68.91%
.h984337301330.55%14.94%
.png814950080.25%6.62%
.mojom2929325999.07%4.13%
.java593805741.83%1.69%
其他54783930516.98%3.72%

signing_keys

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 0 字节 (0.00% of total)
  • 文件总数: 0 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
其他11100.00%100.00%

skia

Skia is a complete 2D graphic library for drawing Text, Geometries, and Images.
The Skia library can be found in //third_party/skia, and full documentation
is available at https://skia.org/
This directory includes low-level chromium utilities for interacting with Skia:

  • Build rules for the Skia library
  • Configuration of the library (config/SkUserConfig.h)
  • Serialization of Skia types (public/mojom)
  • Implementations of Skia interfaces for platform behavior, such as fonts and
    memory allocation, as well as other miscellaneous utilities (ext).
    Note that Skia is used directly in many parts of the chromium codebase.
    This directory is only concerned with code layered on Skia that will be reused
    frequently, across multiple chromium components.

目录摘要:

  • 总大小: 709013 字节 (0.01% of total)
  • 文件总数: 196 (0.04% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc4533601022.96%47.39%
.png8212842941.84%18.11%
.h4210069621.43%14.20%
.mm5817162.55%11.53%
.gn3386551.53%5.45%
其他19235079.69%3.32%

sql

SQLite abstraction layer
[TOC]
SQLite for system designers
SQLite is a
relational database management system (RDBMS)
that supports most of SQL.
SQLite is architected as a library that can be embedded in another application,
such as Chrome. SQLite runs in the application’s process, and shares its memory
and other resources. This is similar to embedded databases like
LevelDB and
BerkeleyDB. By contrast, most
popular RDMBSes, like PostgreSQL and
MySQL, are structured as standalone server processes
that accept queries from client processes.
TODO: Explain the process model and locking

目录摘要:

  • 总大小: 610999 字节 (0.01% of total)
  • 文件总数: 56 (0.01% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc2845740650.00%74.86%
.h1911856033.93%19.40%
.md1300651.79%4.92%
.gn236173.57%0.59%
.proto17331.79%0.12%
其他56188.93%0.10%

storage

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 3080011 字节 (0.04% of total)
  • 文件总数: 315 (0.07% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc167240508353.02%78.09%
.h12462306839.37%20.23%
.md3278860.95%0.91%
.gn4185821.27%0.60%
1527484.76%0.09%
其他226440.63%0.09%

styleguide

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 206071 字节 (0.00% of total)
  • 文件总数: 30 (0.01% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.md2020521466.67%99.58%
1085733.33%0.42%
其他000.00%0.00%

third_party

The third_party directory contains sources from other projects.
For guidelines on adding a new package to the third_party directory
can be found at
//docs/adding_to_third_party.md

目录摘要:

  • 总大小: 6503665732 字节 (79.41% of total)
  • 文件总数: 277384 (59.99% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.exe2138770114520.08%13.48%
.h4844359116330917.46%9.09%
.cc269243711312979.71%5.71%
180953705915156.52%5.70%
.cpp155713415573675.61%5.25%
其他168138395221079260.62%60.77%

tools

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 136606781 字节 (1.67% of total)
  • 文件总数: 4345 (0.94% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.exe4924108800.09%67.65%
.xml308167297057.09%12.25%
.py1415899886732.57%6.59%
.json19338198394.44%2.80%
513352095011.81%2.58%
其他19121112654044.00%8.14%

ui

This directory contains UI frameworks used to build various user
interface features. This directory is not intended to contain UI
features (such as a keyboard).

目录摘要:

  • 总大小: 81796334 字节 (1.00% of total)
  • 文件总数: 9500 (2.05% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc26413535213127.80%43.22%
.xtb457131074784.81%16.02%
.h24051147889125.32%14.03%
.ts67658586917.12%7.16%
.json11140988421.17%5.01%
其他32101190030133.79%14.55%

url

Chrome’s URL library
Layers
There are several conceptual layers in this directory. Going from the lowest
level up, they are:
Parsing
The url_parse.* files are the parser. This code does no string
transformations. Its only job is to take an input string and split out the
components of the URL as best as it can deduce them, for a given type of URL.
Parsing can never fail, it will take its best guess. This layer does not
have logic for determining the type of URL parsing to apply, that needs to
be applied at a higher layer (the “util” layer below).
Because the parser code is derived (very distantly) from some code in
Mozilla, some of the parser files are in url/third_party/mozilla/.
The main header to include for calling the parser is

目录摘要:

  • 总大小: 1007385 字节 (0.01% of total)
  • 文件总数: 112 (0.02% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc5370282647.32%69.77%
.h2822140525.00%21.98%
.java9519858.04%5.16%
.gn3144652.68%1.44%
.dict143360.89%0.43%
其他181236816.07%1.23%

v8

V8 JavaScript Engine
V8 is Google’s open source JavaScript engine.
V8 implements ECMAScript as specified in ECMA-262.
V8 is written in C++ and is used in Google Chrome, the open source
browser from Google.
V8 can run standalone, or can be embedded into any C++ application.
V8 Project page: https://v8.dev/docs

目录摘要:

  • 总大小: 67751670 字节 (0.83% of total)
  • 文件总数: 4180 (0.90% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc12263961722729.33%58.47%
.h17942131867542.92%31.47%
.py21615832615.17%2.34%
.tq24314158685.81%2.09%
.json207068530.48%1.04%
其他681310978616.29%4.59%

webkit

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 0 字节 (0.00% of total)
  • 文件总数: 0 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
其他11100.00%100.00%


third_party目录(第三部分)

.

The third_party directory contains sources from other projects.
For guidelines on adding a new package to the third_party directory
can be found at
//docs/adding_to_third_party.md

目录摘要:

  • 总大小: 6503665732 字节 (100.00% of total)
  • 文件总数: 277384 (100.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.exe2138770114520.08%13.48%
.h4844359116330917.46%9.09%
.cc269243711312979.71%5.71%
180953705915156.52%5.70%
.cpp155713415573675.61%5.25%
其他168138395221079260.62%60.77%

abseil-cpp

Abseil - C++ Common Libraries
The repository contains the Abseil C++ library code. Abseil is an open-source
collection of C++ code (compliant to C++14) designed to augment the C++
standard library.

目录摘要:

  • 总大小: 14502530 字节 (0.22% of total)
  • 文件总数: 965 (0.35% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc446574728546.22%39.63%
.def743018970.73%29.66%
.h355349945736.79%24.13%
.bazel272446262.80%1.69%
.inc242016612.49%1.39%
其他10650760410.98%3.50%

accessibility-audit

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 122250 字节 (0.00% of total)
  • 文件总数: 5 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.js111002520.00%90.00%
31152260.00%9.42%
.chromium170320.00%0.58%
其他000.00%0.00%

accessibility_test_framework

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 2244719 字节 (0.03% of total)
  • 文件总数: 170 (0.06% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.xml42121214324.71%54.00%
.java10891998663.53%40.98%
.jar1595360.59%2.65%
6299273.53%1.33%
.proto3118141.76%0.53%
其他10113135.88%0.50%

afl

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 1332574 字节 (0.02% of total)
  • 文件总数: 109 (0.04% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.png55961194.59%44.73%
.c1534074713.76%25.57%
1515643613.76%11.74%
.txt1210763311.01%8.08%
.h7634816.42%4.76%
其他556815850.46%5.11%

alsa

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 27864 字节 (0.00% of total)
  • 文件总数: 5 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
22646540.00%94.98%
.chromium158720.00%2.11%
.sh147720.00%1.71%
.pb133520.00%1.20%
其他000.00%0.00%

amd

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 0 字节 (0.00% of total)
  • 文件总数: 0 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
其他11100.00%100.00%

androidx

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 61265 字节 (0.00% of total)
  • 文件总数: 30 (0.01% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.kt1147423.33%24.06%
.py1117503.33%19.18%
.template2105486.67%17.22%
.java8621526.67%10.14%
.sh3602110.00%9.83%
其他151198950.00%19.57%

androidx_javascriptengine

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 15421 字节 (0.00% of total)
  • 文件总数: 4 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
21023250.00%66.35%
.gn1430625.00%27.92%
.chromium188325.00%5.73%
其他000.00%0.00%

android_build_tools

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 209467 字节 (0.00% of total)
  • 文件总数: 63 (0.02% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.java89081112.70%43.35%
198036030.16%38.36%
.py92352514.29%11.23%
.chromium8578912.70%2.76%
.sh7308911.11%1.47%
其他12589319.05%2.81%

android_deps

Android Deps Repository Generator

Tool to generate a gradle-specified repository for Android and Java
dependencies.
Usage
fetch_all.py [–help]
This script creates a temporary build directory, where it will, for each
of the dependencies specified in build.gradle, take care of the following:

  • Download the library
  • Generate a README.chromium file
  • Download the LICENSE
  • Generate a GN target in BUILD.gn
  • Generate .info files for AAR libraries
  • Generate 3pp subdirectories describing the CIPD packages
  • Generate a deps entry in DEPS.

目录摘要:

  • 总大小: 7074652 字节 (0.11% of total)
  • 文件总数: 1034 (0.37% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
317628020230.66%88.77%
.py15816144915.28%2.28%
.gn41108530.39%1.57%
.txt121057231.16%1.49%
.groovy3968870.29%1.37%
其他54031953852.22%4.52%

android_deps_autorolled

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 8785 字节 (0.00% of total)
  • 文件总数: 5 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.py1553620.00%63.02%
.template1156720.00%17.84%
.chromium1122020.00%13.89%
246240.00%5.26%
其他000.00%0.00%

android_media

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 30971 字节 (0.00% of total)
  • 文件总数: 8 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.java11351812.50%43.65%
31151137.50%37.17%
.xml2423225.00%13.66%
.chromium191412.50%2.95%
.gn179612.50%2.57%
其他000.00%0.00%

android_opengl

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 31739 字节 (0.00% of total)
  • 文件总数: 8 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cpp12739712.50%86.32%
.h1271212.50%8.54%
375437.50%2.38%
.chromium151312.50%1.62%
.gn123212.50%0.73%
其他113112.50%0.41%

android_platform

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 88670 字节 (0.00% of total)
  • 文件总数: 13 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.py56056038.46%68.30%
.xml1121007.69%13.65%
41168330.77%13.18%
.chromium129297.69%3.30%
.pydeps110147.69%1.14%
其他13847.69%0.43%

android_prebuilts

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 488 字节 (0.00% of total)
  • 文件总数: 1 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.chromium1488100.00%100.00%
其他000.00%0.00%

android_protobuf

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 9221 字节 (0.00% of total)
  • 文件总数: 4 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.gn1830825.00%90.10%
.chromium174925.00%8.12%
216450.00%1.78%
其他000.00%0.00%

android_protoc

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 3055 字节 (0.00% of total)
  • 文件总数: 5 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
3178160.00%58.30%
.chromium1115220.00%37.71%
.yaml112220.00%3.99%
其他000.00%0.00%

android_provider

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 21977 字节 (0.00% of total)
  • 文件总数: 6 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
31154150.00%52.51%
.java1923916.67%42.04%
.chromium177616.67%3.53%
.gn142116.67%1.92%
其他000.00%0.00%

android_sdk

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 168694 字节 (0.00% of total)
  • 文件总数: 70 (0.03% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.java2213115331.43%77.75%
.yaml381568754.29%9.30%
3121884.29%7.22%
.gn234692.86%2.06%
.txt122351.43%1.32%
其他439625.71%2.35%

android_swipe_refresh

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 75907 字节 (0.00% of total)
  • 文件总数: 9 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.java36237233.33%82.17%
41148544.44%15.13%
.chromium1132611.11%1.75%
.gn172411.11%0.95%
其他000.00%0.00%

android_system_sdk

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 20541 字节 (0.00% of total)
  • 文件总数: 5 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
31952960.00%95.07%
.chromium155220.00%2.69%
.yaml146020.00%2.24%
其他000.00%0.00%

android_toolchain

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 564129 字节 (0.01% of total)
  • 文件总数: 6 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
255842133.33%98.99%
.sh1212916.67%0.38%
.chromium1177116.67%0.31%
.py1117316.67%0.21%
.pb163516.67%0.11%
其他000.00%0.00%

android_toolchain_canary

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 563955 字节 (0.01% of total)
  • 文件总数: 6 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
255844233.33%99.02%
.sh1212216.67%0.38%
.chromium1157116.67%0.28%
.py1117816.67%0.21%
.pb164216.67%0.11%
其他000.00%0.00%

android_tools_internal

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 0 字节 (0.00% of total)
  • 文件总数: 0 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
其他11100.00%100.00%

angle

ANGLE - Almost Native Graphics Layer Engine
The goal of ANGLE is to allow users of multiple operating systems to seamlessly run WebGL and other
OpenGL ES content by translating OpenGL ES API calls to one of the hardware-supported APIs available
for that platform. ANGLE currently provides translation from OpenGL ES 2.0, 3.0 and 3.1 to Vulkan,
desktop OpenGL, OpenGL ES, Direct3D 9, and Direct3D 11. Future plans include ES 3.2, translation to
Metal and MacOS, Chrome OS, and Fuchsia support.
Level of OpenGL ES support via backing renderers

Direct3D 9Direct3D 11Desktop GLGL ESVulkanMetal
OpenGL ES 2.0completecompletecompletecompletecompletecomplete
OpenGL ES 3.0completecompletecompletecompletecomplete
OpenGL ES 3.1[incomplete][ES31OnD3D]completecompletecomplete
OpenGL ES 3.2in progressin progresscomplete
Additionally, OpenGL ES 1.1 is implemented in the front-end using OpenGL ES 3.0 features. This
version of the specification is thus supported on all platforms specified above that support OpenGL
ES 3.0 with [known issues][ES1].

目录摘要:

  • 总大小: 76767139 字节 (1.18% of total)
  • 文件总数: 4175 (1.51% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cpp9643189981123.09%41.55%
.h13451482137932.22%19.31%
.png10071102322.40%9.26%
.c15034396713.59%4.48%
.obj125015760.02%3.26%
其他16151699447038.68%22.14%

anonymous_tokens

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 577781 字节 (0.01% of total)
  • 文件总数: 85 (0.03% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc2744297231.76%76.67%
.h216862124.71%11.88%
222853525.88%4.94%
.proto1115881.18%2.01%
.bzl101138211.76%1.97%
其他4146834.71%2.54%

aosp_dalvik

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 2214 字节 (0.00% of total)
  • 文件总数: 6 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
261133.33%27.60%
.sh149116.67%22.18%
.pb141016.67%18.52%
.chromium136816.67%16.62%
.gn133416.67%15.09%
其他000.00%0.00%

apache-portable-runtime

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 29901 字节 (0.00% of total)
  • 文件总数: 6 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
31592950.00%53.27%
.patch1857216.67%28.67%
.gn1448216.67%14.99%
.chromium191816.67%3.07%
其他000.00%0.00%

apache-win32

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 17708921 字节 (0.27% of total)
  • 文件总数: 147 (0.05% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.dll521649292835.37%93.13%
.exe36123522.04%3.46%
.so145068809.52%2.86%
.txt6887044.08%0.50%
.chromium133510.68%0.02%
其他71470648.30%0.03%

apache-windows-arm64

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 134313874 字节 (2.07% of total)
  • 文件总数: 2141 (0.77% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.pdb130768573446.07%57.22%
.dll14159134720.65%11.85%
.utf84241119094119.80%8.33%
.h402641885118.78%4.78%
.lib959450780.42%4.43%
其他11621798818854.27%13.39%

apple_apsl

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 23855 字节 (0.00% of total)
  • 文件总数: 5 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
32020960.00%84.72%
.h1308420.00%12.93%
.chromium156220.00%2.36%
其他000.00%0.00%

arcore-android-sdk

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 14474 字节 (0.00% of total)
  • 文件总数: 8 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
31046937.50%72.33%
.chromium1219212.50%15.14%
.py195212.50%6.58%
.txt155912.50%3.86%
.gn126212.50%1.81%
其他14012.50%0.28%

arcore-android-sdk-client

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 23417 字节 (0.00% of total)
  • 文件总数: 12 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
41156933.33%49.40%
.info144958.33%19.20%
.xml3211925.00%9.05%
.txt120588.33%8.79%
.chromium118638.33%7.96%
其他2131316.67%5.61%

ashmem

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 36849 字节 (0.00% of total)
  • 文件总数: 11 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.patch41441636.36%39.12%
31148627.27%31.17%
.c181139.09%22.02%
.h115459.09%4.19%
.chromium19729.09%2.64%
其他13179.09%0.86%

axe-core

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 1015724 字节 (0.02% of total)
  • 文件总数: 7 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.js299333928.57%97.80%
31604442.86%1.58%
.ts1566314.29%0.56%
.chromium167814.29%0.07%
其他000.00%0.00%

barhopper

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 0 字节 (0.00% of total)
  • 文件总数: 0 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
其他11100.00%100.00%

beto-core

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 2896853 字节 (0.04% of total)
  • 文件总数: 365 (0.13% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.rs219180943660.00%62.46%
.h102956932.74%10.21%
.lock91927822.47%6.65%
.cpp11638640.27%5.66%
.jar21223300.55%4.22%
其他12431274833.97%10.80%

bidimapper

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 739554 字节 (0.01% of total)
  • 文件总数: 13 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.js17123787.69%96.33%
31143423.08%1.55%
.py173247.69%0.99%
.sh2201915.38%0.27%
.chromium118017.69%0.24%
其他5459838.46%0.62%

blink

Blink
Blink is the browser engine used
by Chromium. It is located in src/third_party/blink.
See also the Blink page on chromium.org.
Code Policy
Blink follows content guidelines: only code that
implements web platform features should live in Blink.
Directory structure

  • common/: code that can run in the browser process
    or renderer process.
  • public/: the Blink Public API, used primarily by
    the content module.
  • renderer/: code that runs in the renderer process
    (most of Blink).

目录摘要:

  • 总大小: 139453251 字节 (2.14% of total)
  • 文件总数: 20123 (7.25% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc68598828992634.09%63.31%
.h62452665346931.03%19.11%
.py56554321232.81%3.90%
.xtb16222798040.81%1.63%
.idl2115218448410.51%1.57%
其他41771461344520.76%10.48%

boringssl

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 88992375 字节 (1.37% of total)
  • 文件总数: 4970 (1.79% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.json165413837653.32%46.50%
.txt108165042392.17%18.55%
.h24953157875.01%5.97%
3398528834968.37%5.94%
.cc26752505155.37%5.90%
其他7831524972015.75%17.14%

breakpad

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 12698776 字节 (0.20% of total)
  • 文件总数: 816 (0.29% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc251443661330.76%34.94%
.h334242206340.93%19.07%
.exe310972160.37%8.64%
.in410376750.49%8.17%
505687086.13%4.48%
其他174313650121.32%24.70%

brotli

Brotli

**Introduction** Brotli is a generic-purpose lossless compression algorithm that compresses data using a combination of a modern variant of the LZ77 algorithm, Huffman coding and 2nd order context modeling, with a compression ratio comparable to the best currently available general-purpose compression methods. It is similar in speed with deflate but offers more dense compression. The specification of the Brotli Compressed Data Format is defined in [RFC 7932](https://tools.ietf.org/html/rfc7932). Brotli is open-sourced under the MIT License, see the LICENSE file.

目录摘要:

  • 总大小: 2073400 字节 (0.03% of total)
  • 文件总数: 102 (0.04% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.c33118460632.35%57.13%
.h5987365957.84%42.14%
.md270191.96%0.34%
.gn156010.98%0.27%
614675.88%0.07%
其他110480.98%0.05%

bspatch

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 14470 字节 (0.00% of total)
  • 文件总数: 7 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc1797814.29%55.13%
.h1398214.29%27.52%
3137542.86%9.50%
.chromium175614.29%5.22%
.gn137914.29%2.62%
其他000.00%0.00%

byte_buddy

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 53131 字节 (0.00% of total)
  • 文件总数: 7 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.java14042814.29%76.09%
31100842.86%20.72%
.chromium167314.29%1.27%
.gn166414.29%1.25%
.flags135814.29%0.67%
其他000.00%0.00%

cardboard

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 29150 字节 (0.00% of total)
  • 文件总数: 10 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
51831350.00%62.82%
.gn1636510.00%21.84%
.cc1209010.00%7.17%
.pro1114210.00%3.92%
.chromium173110.00%2.51%
其他150910.00%1.75%

cast_core

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 120430 字节 (0.00% of total)
  • 文件总数: 42 (0.02% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.proto225944052.38%49.36%
4229989.52%19.10%
.cc1136112.38%11.30%
.gn101321923.81%10.98%
.gni276184.76%6.33%
其他335447.14%2.94%

catapult

Catapult

Catapult is the home for several performance tools that span from gathering,
displaying and analyzing performance data. This includes:

目录摘要:

  • 总大小: 325292950 字节 (5.00% of total)
  • 文件总数: 11114 (4.01% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
6991668015736.29%51.28%
.py44694499702740.21%13.83%
.exe7241285120.06%7.42%
.js898196589648.08%6.04%
.html20371401016918.33%4.31%
其他30045569670527.03%17.12%

ced

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 1418231 字节 (0.02% of total)
  • 文件总数: 49 (0.02% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.h1569657430.61%49.12%
.cc867847616.33%47.84%
4132328.16%0.93%
.txt171206634.69%0.85%
.inc1113872.04%0.80%
其他464968.16%0.46%

checkstyle

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 42331 字节 (0.00% of total)
  • 文件总数: 10 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
32658630.00%62.81%
.apache2011135810.00%26.83%
.antlr1126110.00%2.98%
.header1103110.00%2.44%
.chromium175310.00%1.78%
其他3134230.00%3.17%

chevron

A python implementation of the mustache templating language.
Why chevron?

I’m glad you asked!
chevron is fast ###
Chevron runs in less than half the time of pystache (Which is not even up to date on the spec).
And in about 70% the time of Stache (A ‘trimmed’ version of mustache, also not spec compliant).
chevron is pep8 ###
The flake8 command is run by travis to ensure consistency.

目录摘要:

  • 总大小: 28627 字节 (0.00% of total)
  • 文件总数: 11 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.py62276354.55%79.52%
.md141059.09%14.34%
3128127.27%4.47%
.chromium14789.09%1.67%
其他000.00%0.00%

chromevox

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 795436 字节 (0.01% of total)
  • 文件总数: 25 (0.01% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.js1075809140.00%95.31%
62168524.00%2.73%
.py31190312.00%1.50%
.chromium3224212.00%0.28%
.gn212038.00%0.15%
其他13124.00%0.04%

chromite

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 0 字节 (0.00% of total)
  • 文件总数: 0 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
其他11100.00%100.00%

chromium-variations

Chromium Variations README
Overview
This repository contains various directories, each of which holds a seed.json
file. Each seed.json file contains a variations seed. A variations seed is used
to turn on/off field trials and features in Chromium projects, such as the
Chromium browser.
Changes to this repository will not be accepted.
Seed Files

  • single_group_per_study_prefer_existing_behavior/*
    For each study, this seed enables the largest field trial group. If there
    are multiple groups having the same largest size for a given study, prefer a
    group which enables existing behaviour.
  • single_group_per_study_prefer_new_behavior/*

目录摘要:

  • 总大小: 855752 字节 (0.01% of total)
  • 文件总数: 7 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.json284173228.57%98.36%
21176328.57%1.37%
.md1176114.29%0.21%
.gn148114.29%0.06%
.txt11514.29%0.00%
其他000.00%0.00%

clang-format

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 89098 字节 (0.00% of total)
  • 文件总数: 13 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cpp22904415.38%32.60%
22616315.38%29.36%
.py31584823.08%17.79%
.el21502215.38%16.86%
.txt2154915.38%1.74%
其他2147215.38%1.65%

cldr

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 849299 字节 (0.01% of total)
  • 文件总数: 9 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.xml584528755.56%99.53%
2234322.22%0.28%
.sh1107911.11%0.13%
.chromium159011.11%0.07%
其他000.00%0.00%

cld_3

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 2608241 字节 (0.04% of total)
  • 文件总数: 90 (0.03% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc32212067735.56%81.31%
.h3639180240.00%15.02%
.png1392761.11%1.51%
6231996.67%0.89%
.md390143.33%0.35%
其他122427313.33%0.93%

closure_compiler

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 13368074 字节 (0.21% of total)
  • 文件总数: 75 (0.03% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.jar1124500771.33%93.13%
.js5781970776.00%6.13%
.diff1298001.33%0.22%
7290229.33%0.22%
.gni3153094.00%0.11%
其他6241598.00%0.18%

cloud_authenticator

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 326711 字节 (0.01% of total)
  • 文件总数: 22 (0.01% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.rs1431180363.64%95.44%
.txt1113584.55%3.48%
.gn5262522.73%0.80%
.chromium18994.55%0.28%
1264.55%0.01%
其他000.00%0.00%

colorama

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 177207 字节 (0.00% of total)
  • 文件总数: 46 (0.02% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.png2834754.35%47.11%
.py164047034.78%22.84%
.rst2272584.35%15.38%
.md391406.52%5.16%
6508113.04%2.87%
其他171178336.96%6.65%

content_analysis_sdk

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 193520 字节 (0.00% of total)
  • 文件总数: 65 (0.02% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc249461136.92%48.89%
.h245959636.92%30.80%
.md5108317.69%5.60%
.proto183621.54%4.32%
.txt162331.54%3.22%
其他101388715.38%7.18%

coremltools

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 270319 字节 (0.00% of total)
  • 文件总数: 39 (0.01% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.proto3326282084.62%97.23%
.py128762.56%1.06%
.gn117802.56%0.66%
215375.13%0.57%
.chromium18822.56%0.33%
其他14242.56%0.16%

cpuinfo

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 1077882 字节 (0.02% of total)
  • 文件总数: 141 (0.05% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.c5580122039.01%74.33%
.h2211804615.60%10.95%
.txt2496231.42%4.60%
.py5262853.55%2.44%
.sh192624813.48%2.44%
其他385646026.95%5.24%

cpu_features

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 400498 字节 (0.01% of total)
  • 文件总数: 88 (0.03% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.c189587720.45%23.94%
.inl5951215.68%23.75%
.h178092719.32%20.21%
113084212.50%7.70%
.svg1216671.14%5.41%
其他367606440.91%18.99%

crabbyavif

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 671182 字节 (0.01% of total)
  • 文件总数: 99 (0.04% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.rs4746421747.47%69.16%
.cc1512417815.15%18.50%
5236785.05%3.53%
.h6235406.06%3.51%
.yml6124366.06%1.85%
其他202313320.20%3.45%

crashpad

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 6723276 字节 (0.10% of total)
  • 文件总数: 1045 (0.38% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc508396277148.61%58.94%
.h383170861336.65%25.41%
.dll11682640.10%2.50%
.gn211230862.01%1.83%
.py131217611.24%1.81%
其他11963878111.39%9.50%

crc32c

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 106107 字节 (0.00% of total)
  • 文件总数: 43 (0.02% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc135086130.23%47.93%
.h111663825.58%15.68%
.txt1149762.33%14.11%
.md246694.65%4.40%
.py145162.33%4.26%
其他151444734.88%13.62%

cronet_android_mainline_clang

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 15972 字节 (0.00% of total)
  • 文件总数: 4 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
21527850.00%95.65%
.pb135125.00%2.20%
.chromium134325.00%2.15%
其他000.00%0.00%

cros-components

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 624176 字节 (0.01% of total)
  • 文件总数: 76 (0.03% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.ts5633040273.68%52.93%
.js21773492.63%28.41%
.jpg1599571.32%9.61%
4230615.26%3.69%
.png2166422.63%2.67%
其他111676514.47%2.69%

crossbench

Crossbench
Crossbench is a cross-browser/cross-benchmark runner to extract performance
numbers.
Mailing list: crossbench@chromium.org
Issues/Bugs: Tests > CrossBench
Supported Browsers: Chrome/Chromium, Firefox, Safari and Edge.
Supported OS: macOS, Android, linux and windows.
Basic usage:
Chromium Devs (with a full chromium checkout)
Use the ./cb.py script directly to run benchmarks (requires chrome’s
vpython3)
Standalone installation

  • Use pip install crossbench,

目录摘要:

  • 总大小: 1223516 字节 (0.02% of total)
  • 文件总数: 241 (0.09% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.py18698875777.18%80.81%
.lock11147810.41%9.38%
.hjson19343547.88%2.81%
.png2241200.83%1.97%
7211662.90%1.73%
其他264033810.79%3.30%

cros_system_api

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 0 字节 (0.00% of total)
  • 文件总数: 0 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
其他11100.00%100.00%

crubit

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 16454 字节 (0.00% of total)
  • 文件总数: 5 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
31318160.00%80.11%
.gn1220120.00%13.38%
.chromium1107220.00%6.52%
其他000.00%0.00%

d3

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 870932 字节 (0.01% of total)
  • 文件总数: 8 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.js286661125.00%99.50%
.md1248012.50%0.28%
387037.50%0.10%
.chromium156212.50%0.06%
.gn140912.50%0.05%
其他000.00%0.00%

dav1d

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 11045468 字节 (0.17% of total)
  • 文件总数: 330 (0.12% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.asm52551608115.76%49.94%
.S50336683415.15%30.48%
.c63150389519.09%13.62%
.h11248391033.94%4.38%
.build7463802.12%0.42%
其他4612836813.94%1.16%

dawn

Dawn, a WebGPU implementation
Dawn is an open-source and cross-platform implementation of the WebGPU standard.
More precisely it implements webgpu.h that is a one-to-one mapping with the WebGPU IDL.
Dawn is meant to be integrated as part of a larger system and is the underlying implementation of WebGPU in Chromium.
Dawn provides several WebGPU building blocks:

  • WebGPU C/C++ headersthat applications and other building blocks use.
    • The webgpu.h version that Dawn implements.

目录摘要:

  • 总大小: 584369885 字节 (8.99% of total)
  • 文件总数: 17402 (6.27% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.pdf841496968810.48%25.62%
.exe201018931200.11%17.44%
.go53916627892030.98%11.34%
.cpp22436283857712.89%10.75%
.bin112484256680.64%8.29%
其他955215523671954.89%26.56%

dbus

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 2455 字节 (0.00% of total)
  • 文件总数: 5 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
2117140.00%47.70%
.sh149920.00%20.33%
.chromium145520.00%18.53%
.pb133020.00%13.44%
其他000.00%0.00%

decklink

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 212904 字节 (0.00% of total)
  • 文件总数: 31 (0.01% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.h2319340274.19%90.84%
.cpp3165789.68%7.79%
316009.68%0.75%
.chromium19923.23%0.47%
.gn13323.23%0.16%
其他000.00%0.00%

depot_tools

depot_tools
Tools for working with Chromium development. It requires python 3.8.

Tools
The most important tools are:

  • fetch: A gclient wrapper to checkout a project. Use fetch --help for
    more details.
  • gclient: A meta-checkout tool. Think
    repo or git
    submodules
    , except that it support
    OS-specific rules, e.g. do not checkout Windows only dependencies when
    checking out for Android. Use gclient help for more details and
    README.gclient.md.
  • git cl: A code review tool to interact with Rietveld or Gerrit. Use git cl help for more details and README.git-cl.md.
  • roll-dep: A gclient dependency management tool to submit a dep roll,

目录摘要:

  • 总大小: 349662342 字节 (5.38% of total)
  • 文件总数: 5538 (2.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.exe512454259520.92%70.19%
.py35484972163364.07%14.22%
.dll98273109121.77%7.81%
.whl456755060.07%1.62%
.pyd3856530560.69%1.62%
其他17991587528332.48%4.54%

devscripts

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 66822 字节 (0.00% of total)
  • 文件总数: 6 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.pl12713116.67%40.60%
.vanilla12074216.67%31.04%
31843750.00%27.59%
.chromium151216.67%0.77%
其他000.00%0.00%

devtools-frontend

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 372171748 字节 (5.72% of total)
  • 文件总数: 26988 (9.73% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.js126419330688146.84%25.07%
.json1299845516274.81%22.72%
.gz79654123350.29%17.58%
.ts54004075605420.01%10.95%
.map28742682551110.65%7.21%
其他46956131934017.40%16.48%

devtools-frontend-internal

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 0 字节 (0.00% of total)
  • 文件总数: 0 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
其他11100.00%100.00%

distributed_point_functions

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 455642 字节 (0.01% of total)
  • 文件总数: 61 (0.02% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc2325065537.70%55.01%
.h1413906822.95%30.52%
133815421.31%8.37%
.md481386.56%1.79%
.bazel161421.64%1.35%
其他6134859.84%2.96%

dom_distiller_js

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 293273 字节 (0.00% of total)
  • 文件总数: 20 (0.01% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.js222574910.00%76.98%
.py73246535.00%11.07%
31108515.00%3.78%
.golden1108815.00%3.71%
.sh149565.00%1.69%
其他6813730.00%2.77%

dpkg-shlibdeps

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 58776 字节 (0.00% of total)
  • 文件总数: 8 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.pl13312012.50%56.35%
41849950.00%31.47%
.patch2581425.00%9.89%
.chromium1134312.50%2.28%
其他000.00%0.00%

eigen3

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 13941670 字节 (0.21% of total)
  • 文件总数: 1560 (0.56% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.h553966807935.45%69.35%
.f5113641883.27%9.78%
.cpp53147212434.04%3.39%
.dox604203653.85%3.02%
.js34065220.19%2.92%
其他362161039223.21%11.55%

emoji-metadata

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 11995 字节 (0.00% of total)
  • 文件总数: 3 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
21142666.67%95.26%
.chromium156933.33%4.74%
其他000.00%0.00%

emoji-segmenter

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 38936 字节 (0.00% of total)
  • 文件总数: 12 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
62332350.00%59.90%
.c166568.33%17.09%
.md2469116.67%12.05%
.rl133808.33%8.68%
.chromium15978.33%1.53%
其他12898.33%0.74%

expat

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 1211474 字节 (0.02% of total)
  • 文件总数: 146 (0.05% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.c1955502013.01%45.81%
.h2013827713.70%11.41%
.html11115600.68%9.21%
228743615.07%7.22%
.sh165095110.96%4.21%
其他6826823046.58%22.14%

farmhash

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 1877744 字节 (0.03% of total)
  • 文件总数: 75 (0.03% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
3967407152.00%35.90%
.cc1737647922.67%20.05%
.m463558648.00%18.95%
.sh12923811.33%15.57%
.in3671674.00%3.58%
其他911178212.00%5.95%

fdlibm

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 127923 字节 (0.00% of total)
  • 文件总数: 10 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc110313310.00%80.62%
.patch11625610.00%12.71%
.h2636320.00%4.97%
.chromium1112410.00%0.88%
478040.00%0.61%
其他126710.00%0.21%

ffmpeg

FFmpeg README

FFmpeg is a collection of libraries and tools to process multimedia content
such as audio, video, subtitles and related metadata.
Libraries

  • libavcodec provides implementation of a wider range of codecs.
  • libavformat implements streaming protocols, container formats and basic I/O access.
  • libavutil includes hashers, decompressors and miscellaneous utility functions.
  • libavfilter provides means to alter decoded audio and video through a directed graph of connected filters.
  • libavdevice provides an abstraction to access capture and playback devices.
  • libswresample implements audio mixing and resampling routines.
  • libswscale implements color conversion and scaling routines.
    Tools
  • ffmpeg is a command line toolbox to
    manipulate, convert and stream multimedia content.

目录摘要:

  • 总大小: 79102729 字节 (1.22% of total)
  • 文件总数: 5193 (1.87% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.c32655406773362.87%68.35%
.h12961467612124.96%18.55%
.S19734123713.79%4.31%
.asm17728912833.41%3.66%
.texi4718957870.91%2.40%
其他21121594344.06%2.73%

fft2d

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 128111 字节 (0.00% of total)
  • 文件总数: 7 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.c212662428.57%98.84%
.chromium176714.29%0.60%
338042.86%0.30%
.gn134014.29%0.27%
其他000.00%0.00%

flac

目录摘要:

  • 总大小: 1812302 字节 (0.03% of total)
  • 文件总数: 94 (0.03% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.c34114829736.17%63.36%
.h4749449550.00%27.29%
.md3936073.19%5.17%
.LGPL1269401.06%1.49%
.FDL1208001.06%1.15%
其他8281638.51%1.55%

flatbuffers

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 5423260 字节 (0.08% of total)
  • 文件总数: 688 (0.25% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cpp4215740096.10%29.02%
.h7159799510.32%11.03%
.md553571517.99%6.59%
.kt292971484.22%5.48%
.rs402951385.81%5.44%
其他451230181965.55%42.44%

flex

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 2945 字节 (0.00% of total)
  • 文件总数: 5 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
2189340.00%64.28%
.pb141220.00%13.99%
.chromium137420.00%12.70%
.sh126620.00%9.03%
其他000.00%0.00%

fontconfig

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 275136 字节 (0.00% of total)
  • 文件总数: 17 (0.01% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.h926932952.94%97.89%
.gn123425.88%0.85%
3146917.65%0.53%
.sh112295.88%0.45%
.chromium14165.88%0.15%
其他235111.76%0.13%

fp16

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 264263 字节 (0.00% of total)
  • 文件总数: 34 (0.01% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.hpp11455632.94%55.08%
.h85415123.53%20.49%
.cc64460717.65%16.88%
.txt175142.94%2.84%
.py4574411.76%2.17%
其他14668441.18%2.53%

freetype

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 11383073 字节 (0.18% of total)
  • 文件总数: 739 (0.27% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.c220485989229.77%42.69%
.h272300832536.81%26.43%
383560645.14%3.13%
.2113385800.14%2.97%
.2312802780.14%2.46%
其他207253993428.01%22.31%

freetype-testing

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 6998133 字节 (0.11% of total)
  • 文件总数: 1002 (0.36% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
223323714522.26%46.26%
.ttf408261048040.72%37.30%
.tar162457601.60%3.51%
.cpp741781777.39%2.55%
.h76958577.58%1.37%
其他20563071420.46%9.01%

fuchsia-gn-sdk

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 113081 字节 (0.00% of total)
  • 文件总数: 26 (0.01% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.gni148125953.85%71.86%
.py52589419.23%22.90%
.gn231807.69%2.81%
3139611.54%1.23%
.chromium17103.85%0.63%
其他16423.85%0.57%

fuchsia-sdk

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 582 字节 (0.00% of total)
  • 文件总数: 3 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.chromium142033.33%72.16%
216266.67%27.84%
其他000.00%0.00%

fusejs

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 57755 字节 (0.00% of total)
  • 文件总数: 7 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.js23880028.57%67.18%
31147442.86%19.87%
.ts1718714.29%12.44%
.chromium129414.29%0.51%
其他000.00%0.00%

fuzztest

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 3277147 字节 (0.05% of total)
  • 文件总数: 435 (0.16% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc200154715345.98%47.21%
.h131102211730.11%31.19%
.cpp42796830.92%8.53%
261349625.98%4.12%
.md191263374.37%3.86%
其他5516689512.64%5.09%

fxdiv

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 35401 字节 (0.00% of total)
  • 文件总数: 23 (0.01% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.h1135744.35%38.34%
.cc5642421.74%18.15%
.txt145374.35%12.82%
.md130704.35%8.67%
5261321.74%7.38%
其他10518343.48%14.64%

gemmlowp

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 3050089 字节 (0.05% of total)
  • 文件总数: 128 (0.05% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.h66239809651.56%78.62%
.cc83323246.25%10.90%
.py1416302410.94%5.34%
.md9800427.03%2.62%
11356068.59%1.17%
其他204099715.62%1.34%

gif_player

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 49565 字节 (0.00% of total)
  • 文件总数: 7 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.java23681928.57%74.28%
31148742.86%23.18%
.chromium189014.29%1.80%
.gn136914.29%0.74%
其他000.00%0.00%

gles2_conform

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 0 字节 (0.00% of total)
  • 文件总数: 0 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
其他11100.00%100.00%

glfw

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 676 字节 (0.00% of total)
  • 文件总数: 3 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.chromium149533.33%73.22%
218166.67%26.78%
其他000.00%0.00%

glslang

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 6331620 字节 (0.10% of total)
  • 文件总数: 221 (0.08% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cpp72480450232.58%75.88%
.h7293088532.58%14.70%
.y11763650.45%2.79%
.hpp11412630.45%2.23%
.txt111116614.98%1.76%
其他6416694428.96%2.64%

google-closure-library

Closure Library
Closure Library is a powerful, low-level JavaScript library designed
for building complex and scalable web applications. It is used by many
Google web applications, such as Google Search, Gmail, Google Docs,
Google+, Google Maps, and others.
For more information, visit the
Google Developers or
GitHub sites.
Download the latest stable version on our releases page.
Developers, please see the
Generated API Documentation.
See also the
goog.ui Demos

目录摘要:

  • 总大小: 30619247 字节 (0.47% of total)
  • 文件总数: 3105 (1.12% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.js16802741149054.11%89.52%
.html1042127324833.56%4.16%
.exe18581120.03%2.80%
1253068994.03%1.00%
.png142194010.45%0.72%
其他2435500977.83%1.80%

google-java-format

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 71956 字节 (0.00% of total)
  • 文件总数: 11 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.java23518918.18%48.90%
.jar1184869.09%25.69%
41546436.36%21.49%
.chromium115689.09%2.18%
.py15979.09%0.83%
其他265218.18%0.91%

google-truth

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 16962 字节 (0.00% of total)
  • 文件总数: 5 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
31146560.00%67.59%
.gn1507020.00%29.89%
.chromium142720.00%2.52%
其他000.00%0.00%

googletest

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 2322766 字节 (0.04% of total)
  • 文件总数: 146 (0.05% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.h47112821532.19%48.57%
.cc3459215123.29%25.49%
.md2750870718.49%21.90%
.txt3215332.05%0.93%
.cmake1142450.68%0.61%
其他345791523.29%2.49%

google_benchmark

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 716803 字节 (0.01% of total)
  • 文件总数: 141 (0.05% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc2119433914.89%27.11%
.h2213888515.60%19.38%
.py9950616.38%13.26%
.md159386710.64%13.10%
.xcf2622561.42%8.69%
其他7213239551.06%18.47%

google_input_tools

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 13045858 字节 (0.20% of total)
  • 文件总数: 654 (0.24% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.js405775092761.93%59.41%
.json5346298118.10%35.49%
.wav72675081.07%2.05%
.png16524965225.23%1.91%
.py12798961.83%0.61%
其他12680641.83%0.52%

google_toolbox_for_mac

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 15202 字节 (0.00% of total)
  • 文件总数: 5 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
31147960.00%75.51%
.gn1335720.00%22.08%
.chromium136620.00%2.41%
其他000.00%0.00%

google_trust_services

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 57991 字节 (0.00% of total)
  • 文件总数: 8 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc15420112.50%93.46%
4225650.00%3.89%
.chromium175712.50%1.31%
.gn141512.50%0.72%
.h136212.50%0.62%
其他000.00%0.00%

gperf

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 2410608 字节 (0.04% of total)
  • 文件总数: 123 (0.04% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
2277443117.89%32.13%
.cc1324126910.57%10.01%
.pdf12247380.81%9.32%
.tex12065300.81%8.57%
.gz21767141.63%7.33%
其他8478692668.29%32.64%

gradle_wrapper

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 69462 字节 (0.00% of total)
  • 文件总数: 6 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.jar15920316.67%85.23%
2603233.33%8.68%
.bat1276316.67%3.98%
.chromium1125916.67%1.81%
.properties120516.67%0.30%
其他000.00%0.00%

grpc

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 36331405 字节 (0.56% of total)
  • 文件总数: 5107 (1.84% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.h13641014132126.71%27.91%
.cc665701117213.02%19.30%
.c38136912137.46%10.16%
.py50733492989.93%9.22%
.txt2210401580.43%2.86%
其他21681109824342.45%30.55%

grpc-java

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 62461 字节 (0.00% of total)
  • 文件总数: 9 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cpp24532122.22%72.56%
31143633.33%18.31%
.h1232611.11%3.72%
.chromium1142911.11%2.29%
.gn1114611.11%1.83%
其他180311.11%1.29%

hamcrest

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 3753 字节 (0.00% of total)
  • 文件总数: 7 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
3162242.86%43.22%
.gn1119614.29%31.87%
.chromium148214.29%12.84%
.yaml141714.29%11.11%
.flags13614.29%0.96%
其他000.00%0.00%

harfbuzz-ng

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 8846913 字节 (0.14% of total)
  • 文件总数: 654 (0.24% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.hh260346001839.76%39.11%
.cc124172060218.96%19.45%
.ttf6015176039.17%17.15%
.txt198163762.91%9.23%
.h443911426.73%4.42%
其他14794117222.48%10.64%

highway

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 6287680 字节 (0.10% of total)
  • 文件总数: 187 (0.07% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.h59392365131.55%62.40%
.pdf214686361.07%23.36%
.cc6244859533.16%7.13%
.md92286834.81%3.64%
206642310.70%1.06%
其他3515169218.72%2.41%

hunspell

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 5476122 字节 (0.08% of total)
  • 文件总数: 95 (0.03% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.h628497936.32%52.04%
.cxx19114224820.00%20.86%
.bdic28927912.11%16.30%
3022642831.58%4.13%
.hxx2211541723.16%2.11%
其他1624944516.84%4.56%

hunspell_dictionaries

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 281308991 字节 (4.33% of total)
  • 文件总数: 243 (0.09% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.dic4915417444620.16%54.81%
.bdic5511204163922.63%39.83%
.aff491387581020.16%4.93%
.txt4853727919.75%0.19%
.dic_delta2944279611.93%0.16%
其他132370215.35%0.08%

hyphenation-patterns

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 4857534 字节 (0.07% of total)
  • 文件总数: 384 (0.14% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.txt216277252456.25%57.08%
.hyb52176249213.54%36.28%
10828636928.12%5.90%
.tex1232100.26%0.48%
.android234280.52%0.07%
其他595111.30%0.20%

iaccessible2

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 237849 字节 (0.00% of total)
  • 文件总数: 7 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.idl123160814.29%97.38%
3259742.86%1.09%
.patch1183514.29%0.77%
.chromium1155114.29%0.65%
.gn125814.29%0.11%
其他000.00%0.00%

iccjpeg

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 17640 字节 (0.00% of total)
  • 文件总数: 8 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.c1879312.50%49.85%
4477350.00%27.06%
.h1297312.50%16.85%
.chromium174712.50%4.23%
.gn135412.50%2.01%
其他000.00%0.00%

icu

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 168034017 字节 (2.58% of total)
  • 文件总数: 6124 (2.21% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.txt43746563236371.42%39.06%
.dat8550402720.13%32.76%
.ucm222200390873.63%11.93%
.cpp576131687349.41%7.84%
.h58882407949.60%4.90%
其他35659127675.81%3.52%

icu4j

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 21724 字节 (0.00% of total)
  • 文件总数: 6 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
32082650.00%95.87%
.yaml136716.67%1.69%
.chromium126716.67%1.23%
.gn126416.67%1.22%
其他000.00%0.00%

ijar

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 180248 字节 (0.00% of total)
  • 文件总数: 20 (0.01% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc814143340.00%78.47%
.h51681825.00%9.33%
41515020.00%8.41%
.txt152515.00%2.91%
.gn19425.00%0.52%
其他16545.00%0.36%

inspector_protocol

Chromium inspector (devtools) protocol
This package contains code generators and templates for the Chromium
inspector protocol.
The canonical location of this package is at
https://chromium.googlesource.com/deps/inspector_protocol/
In the Chromium tree, it’s rolled into
https://cs.chromium.org/chromium/src/third_party/inspector_protocol/
In the V8 tree, it’s rolled into
https://cs.chromium.org/chromium/src/v8/third_party/inspector_protocol/
See also Contributing to Chrome Devtools Protocol.
To build and run the tests of the crdtp library, see
CRDTP - Chrome DevTools Protocol.

目录摘要:

  • 总大小: 487366 字节 (0.01% of total)
  • 文件总数: 71 (0.03% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc2526441635.21%54.25%
.template127932616.90%16.28%
.h187001125.35%14.37%
.py6601458.45%12.34%
.md254032.82%1.11%
其他8806511.27%1.65%

instrumented_libs

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 0 字节 (0.00% of total)
  • 文件总数: 0 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
其他11100.00%100.00%

ipcz

ipcz
Overview
ipcz is a fully cross-platform C library for interprocess communication (IPC)
intended to address two generic problems: routing and data transfer.
Routing
With ipcz, applications create pairs of entangled portalsto facilitate
bidirectional communication. These are grouped into collections called
nodes, which typically correspond 1:1 to OS processes.
Nodes may be explicitly connected by an application to establish portal pairs
which span the node boundary.

                   ┌───────┐
       Connect     │       │     Connect
       ┌──────────>O   A   O<───────────┐
       │           │       │            │
       │           └───────┘            │

目录摘要:

  • 总大小: 1115529 字节 (0.02% of total)
  • 文件总数: 178 (0.06% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc7865840143.82%59.02%
.h8041825544.94%37.49%
10152285.62%1.37%
.gn3127271.69%1.14%
.md295471.12%0.86%
其他513712.81%0.12%

isimpledom

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 27697 字节 (0.00% of total)
  • 文件总数: 8 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.idl32487737.50%89.82%
3188637.50%6.81%
.chromium161212.50%2.21%
.gn132212.50%1.16%
其他000.00%0.00%

jacoco

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 21171 字节 (0.00% of total)
  • 文件总数: 12 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
31143725.00%54.02%
.patch3465425.00%21.98%
.gn114398.33%6.80%
.py113958.33%6.59%
.chromium17418.33%3.50%
其他3150525.00%7.11%

javalang

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 1718 字节 (0.00% of total)
  • 文件总数: 4 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
3121475.00%70.66%
.chromium150425.00%29.34%
其他000.00%0.00%

jdk

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 4028 字节 (0.00% of total)
  • 文件总数: 7 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.chromium1136214.29%33.81%
.sh299228.57%24.63%
.py166914.29%16.61%
.pb152814.29%13.11%
.gn141714.29%10.35%
其他16014.29%1.49%

jdk11

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 622 字节 (0.00% of total)
  • 文件总数: 3 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.chromium132633.33%52.41%
.gn126633.33%42.77%
13033.33%4.82%
其他000.00%0.00%

jinja2

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 488708 字节 (0.01% of total)
  • 文件总数: 33 (0.01% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.py2548257275.76%98.74%
.rst236886.06%0.75%
.gni114713.03%0.30%
.chromium17403.03%0.15%
32379.09%0.05%
其他103.03%0.00%

jni_zero

JNI Zero
A zero-overhead (or better!) middleware for JNI.
Overview
JNI (Java Native Interface) is the mechanism that enables Java code to call
native functions, and native code to call Java functions.

  • Native code calls into Java using apis from <jni.h>, which basically mirror
    Java’s reflection APIs.
  • Java code calls native functions by declaring body-less functions with the
    native keyword, and then calling them as normal Java functions.
    JNI Zero generates boiler-plate code with the goal of making our code:
  1. easier to write,
  2. typesafe.
  3. more optimizable.
    JNI Zero uses regular expressions to parse .Java files, so don’t do
    anything too fancy. E.g.:
  • Classes must be either explicitly imported, or are assumed to be in

目录摘要:

  • 总大小: 243864 字节 (0.00% of total)
  • 文件总数: 57 (0.02% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.py1612318628.07%50.51%
.h5417438.77%17.12%
.gni1230731.75%9.46%
.cc5171058.77%7.01%
.md1157551.75%6.46%
其他292300250.88%9.43%

jsoncpp

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 762139 字节 (0.01% of total)
  • 文件总数: 96 (0.03% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cpp1132255811.46%42.32%
.in52058225.21%27.01%
.h149100414.58%11.94%
.py9549659.38%7.21%
.txt9225749.38%2.96%
其他486521650.00%8.56%

jstemplate

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 118876 字节 (0.00% of total)
  • 文件总数: 25 (0.01% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.js77917428.00%66.60%
.html142522456.00%21.22%
1115604.00%9.72%
.py113884.00%1.17%
.chromium19134.00%0.77%
其他16174.00%0.52%

jszip

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 1659 字节 (0.00% of total)
  • 文件总数: 3 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
2117966.67%71.07%
.chromium148033.33%28.93%
其他000.00%0.00%

js_code_coverage

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 8526755 字节 (0.13% of total)
  • 文件总数: 1853 (0.67% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.js1479595190879.82%69.80%
14417457027.77%20.47%
.json19563770210.52%7.48%
.mjs71096150.38%1.29%
.wasm1486930.05%0.57%
其他27331351.46%0.39%

junit

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 27783 字节 (0.00% of total)
  • 文件总数: 6 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.gn11545916.67%55.64%
31180750.00%42.50%
.chromium133716.67%1.21%
.flags118016.67%0.65%
其他000.00%0.00%

khronos

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 1592942 字节 (0.02% of total)
  • 文件总数: 20 (0.01% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.h14158849470.00%99.72%
4285320.00%0.18%
.chromium113475.00%0.08%
.gn12485.00%0.02%
其他000.00%0.00%

khronos_glcts

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 0 字节 (0.00% of total)
  • 文件总数: 0 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
其他11100.00%100.00%

kotlinc

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 2841 字节 (0.00% of total)
  • 文件总数: 7 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.chromium194614.29%33.30%
.sh275028.57%26.40%
.py166614.29%23.44%
.pb132514.29%11.44%
215428.57%5.42%
其他000.00%0.00%

kotlin_stdlib

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 18437 字节 (0.00% of total)
  • 文件总数: 9 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
31144433.33%62.07%
.py2491422.22%26.65%
.chromium189111.11%4.83%
.pb145511.11%2.47%
.sh144911.11%2.44%
其他128411.11%1.54%

lcov

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 613387 字节 (0.01% of total)
  • 文件总数: 37 (0.01% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
1641482043.24%67.63%
.tests1731912.70%11.93%
.155152413.51%8.40%
.pl44387510.81%7.15%
.51171182.70%2.79%
其他101285927.03%2.10%

lens_server_proto

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 23399 字节 (0.00% of total)
  • 文件总数: 25 (0.01% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.proto212009984.00%85.90%
215678.00%6.70%
.gn110914.00%4.66%
.chromium16424.00%2.74%
其他000.00%0.00%

leveldatabase

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 1157561 字节 (0.02% of total)
  • 文件总数: 167 (0.06% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc8282044249.10%70.88%
.h6022124835.93%19.11%
.md7468414.19%4.05%
.html1213970.60%1.85%
.txt1166450.60%1.44%
其他16309889.58%2.68%

libaddressinput

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 1301627 字节 (0.02% of total)
  • 文件总数: 284 (0.10% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.xtb8142321628.52%32.51%
.java4934270617.25%26.33%
.cc5527682119.37%21.27%
.h5012273617.61%9.43%
.grdp2276580.70%2.12%
其他4710849016.55%8.33%

libaom

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 31787462 字节 (0.49% of total)
  • 文件总数: 1235 (0.45% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.c5011666031240.57%52.41%
.h427853629634.57%26.85%
.cc8033017086.48%10.39%
.svg3011019812.43%3.47%
.png105130060.81%1.61%
其他187167415915.14%5.27%

libavif

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 3003292 字节 (0.05% of total)
  • 文件总数: 214 (0.08% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.c46140951721.50%46.93%
.avif159687577.01%32.26%
.h2516288811.68%5.42%
.md11856265.14%2.85%
.cmake236244710.75%2.08%
其他9431405743.93%10.46%

libavifinfo

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 106450 字节 (0.00% of total)
  • 文件总数: 14 (0.01% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.c1426067.14%40.02%
.php1303727.14%28.53%
.cc1107877.14%10.13%
5859835.71%8.08%
.h161357.14%5.76%
其他5795235.71%7.47%

libbrlapi

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 165982 字节 (0.00% of total)
  • 文件总数: 11 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.h613770654.55%82.96%
32674827.27%16.12%
.gn17819.09%0.47%
.chromium17479.09%0.45%
其他000.00%0.00%

libc++

The chromium build files for source files in third_party/libc++/src are in /buildtools/third_party/libc++
TODO(crbug.com/1458042): After chromium/src is on Git Submodules, the builds files should be moved
to this directory.

目录摘要:

  • 总大小: 14702402 字节 (0.23% of total)
  • 文件总数: 1542 (0.56% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.h924441710859.92%30.04%
13936749419.01%25.00%
.abilist922647410.58%15.40%
.txt2020748191.30%14.11%
.cpp1288621538.30%5.86%
其他322140864020.88%9.58%

libc++abi

The chromium build files for source files in third_party/libc++abi/src are /buildtools/third_party/libc++abi/.
TODO(crbug.com/1458042): After chromium/src is on Git Submodules, the builds files should be moved
to this directory.

目录摘要:

  • 总大小: 646876 字节 (0.01% of total)
  • 文件总数: 64 (0.02% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.h1226021618.75%40.23%
.cpp2023748531.25%36.71%
.txt5367797.81%5.69%
.inc1359381.56%5.56%
.html2343273.12%5.31%
其他244213137.50%6.51%

libdrm

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 3335 字节 (0.00% of total)
  • 文件总数: 4 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.gn1288525.00%86.51%
.chromium125625.00%7.68%
219450.00%5.82%
其他000.00%0.00%

libei

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 5827 字节 (0.00% of total)
  • 文件总数: 6 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.sh1282616.67%48.50%
.py1134116.67%23.01%
2115833.33%19.87%
.chromium128616.67%4.91%
.pb121616.67%3.71%
其他000.00%0.00%

libevent

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 403683 字节 (0.01% of total)
  • 文件总数: 55 (0.02% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.h2216195440.00%40.12%
.c1511377827.27%28.18%
.py1455021.82%11.27%
63177910.91%7.87%
.31183291.82%4.54%
其他103234118.18%8.01%

libFuzzer

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 411591 字节 (0.01% of total)
  • 文件总数: 63 (0.02% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cpp2928643046.03%69.59%
.h229265234.92%22.51%
.def2158363.17%3.85%
.txt261033.17%1.48%
.TXT132811.59%0.80%
其他7728911.11%1.77%

libgav1

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 7431267 字节 (0.11% of total)
  • 文件总数: 371 (0.13% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc183541051849.33%72.81%
.inc1411349793.77%15.27%
.h13874236437.20%9.99%
.cmake17821514.58%1.11%
.c2229050.54%0.31%
其他17383504.58%0.52%

libipp

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 2909 字节 (0.00% of total)
  • 文件总数: 5 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
3164760.00%56.62%
.gn181120.00%27.88%
.chromium145120.00%15.50%
其他000.00%0.00%

libjingle_xmpp

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 94304 字节 (0.00% of total)
  • 文件总数: 29 (0.01% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc147278948.28%77.19%
.h71718424.14%18.22%
6195020.69%2.07%
.gn115073.45%1.60%
.chromium18743.45%0.93%
其他000.00%0.00%

libjpeg_turbo

Background

libjpeg-turbo is a JPEG image codec that uses SIMD instructions to accelerate
baseline JPEG compression and decompression on x86, x86-64, Arm, PowerPC, and
MIPS systems, as well as progressive JPEG compression on x86, x86-64, and Arm
systems. On such systems, libjpeg-turbo is generally 2-6x as fast as libjpeg,
all else being equal. On other types of systems, libjpeg-turbo can still
outperform libjpeg by a significant amount, by virtue of its highly-optimized
Huffman coding routines. In many cases, the performance of libjpeg-turbo
rivals that of proprietary high-speed JPEG codecs.
libjpeg-turbo implements both the traditional libjpeg API as well as the less
powerful but more straightforward TurboJPEG API. libjpeg-turbo also features
colorspace extensions that allow it to compress from/decompress to 32-bit and
big-endian pixel buffers (RGBX, XBGR, etc.), as well as a full-featured Java
interface.
libjpeg-turbo was originally based on libjpeg/SIMD, an MMX-accelerated
derivative of libjpeg v6b developed by Miyasaka Masaru. The TigerVNC and

目录摘要:

  • 总大小: 6900255 字节 (0.11% of total)
  • 文件总数: 295 (0.11% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.c110237964337.29%34.49%
.asm91143007330.85%20.72%
.icc212120320.68%17.57%
.jpg156703875.08%9.72%
.h3534189111.86%4.95%
其他4286622914.24%12.55%

liblouis

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 11407487 字节 (0.18% of total)
  • 文件总数: 18 (0.01% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.data1109009895.56%95.56%
.js229001411.11%2.54%
.wasm11681395.56%1.47%
.json1279595.56%0.25%
.py2685411.11%0.06%
其他111353261.11%0.12%

libphonenumber

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 92899685 字节 (1.43% of total)
  • 文件总数: 3482 (1.26% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.csv13126085632137.68%65.51%
.txt4511310437012.95%14.11%
1419392443040.75%4.22%
.jar439234830.11%4.22%
.cc3132309200.89%3.48%
其他26578601617.61%8.46%

libpng

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 1490187 字节 (0.02% of total)
  • 文件总数: 45 (0.02% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.c26114900357.78%77.10%
.h730438315.56%20.43%
51520611.11%1.02%
.S186052.22%0.58%
.cc163012.22%0.42%
其他5668911.11%0.45%

libprotobuf-mutator

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 200113 字节 (0.00% of total)
  • 文件总数: 66 (0.02% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc219665731.82%48.30%
.h133912719.70%19.55%
.txt81754912.12%8.77%
71362210.61%6.81%
.proto71049210.61%5.24%
其他102266615.15%11.33%

libsecret

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 107881 字节 (0.00% of total)
  • 文件总数: 18 (0.01% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.h137993772.22%74.10%
32671616.67%24.76%
.gn17395.56%0.69%
.chromium14895.56%0.45%
其他000.00%0.00%

libsrtp

Introduction to libSRTP
This package provides an implementation of the Secure Real-time
Transport Protocol (SRTP), the Universal Security Transform (UST), and
a supporting cryptographic kernel. The SRTP API is documented in include/srtp.h,
and the library is in libsrtp2.a (after compilation).
This document describes libSRTP, the Open Source Secure RTP library
from Cisco Systems, Inc. RTP is the Real-time Transport Protocol, an
IETF standard for the transport of real-time data such as telephony,
audio, and video, defined by RFC 3550.
Secure RTP (SRTP) is an RTP profile for providing confidentiality to RTP data
and authentication to the RTP header and payload. SRTP is an IETF Standard,
defined in RFC 3711, and was developed
in the IETF Audio/Video Transport (AVT) Working Group. This library supports
all of the mandatory features of SRTP, but not all of the optional features. See

目录摘要:

  • 总大小: 553942 字节 (0.01% of total)
  • 文件总数: 55 (0.02% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.c1832735132.73%59.09%
.h2618186347.27%32.83%
.md1224201.82%4.05%
5108679.09%1.96%
.gn167401.82%1.22%
其他447017.27%0.85%

libsync

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 14956 字节 (0.00% of total)
  • 文件总数: 6 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
31148850.00%76.81%
.c1162316.67%10.85%
.gn1134716.67%9.01%
.chromium149816.67%3.33%
其他000.00%0.00%

libudev

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 45256 字节 (0.00% of total)
  • 文件总数: 6 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
32670450.00%59.01%
.h21833333.33%40.51%
.chromium121916.67%0.48%
其他000.00%0.00%

libunwind

The chromium build files for source files in third_party/libunwind/src are /buildtools/third_party/libunwind/.
TODO(crbug.com/1458042): After chromium/src is on Git Submodules, the builds files should be moved
to this directory.

目录摘要:

  • 总大小: 780061 字节 (0.01% of total)
  • 文件总数: 48 (0.02% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.hpp937892518.75%48.58%
.h1211921625.00%15.28%
.cpp4892738.33%11.44%
.c4639738.33%8.20%
.S2618654.17%7.93%
其他176680935.42%8.56%

libunwindstack

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 0 字节 (0.00% of total)
  • 文件总数: 0 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
其他11100.00%100.00%

liburlpattern

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 156684 字节 (0.00% of total)
  • 文件总数: 22 (0.01% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc1012741245.45%81.32%
.h62471427.27%15.77%
4160018.18%1.02%
.chromium115664.55%1.00%
.gn113924.55%0.89%
其他000.00%0.00%

libusb

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 828319 字节 (0.01% of total)
  • 文件总数: 54 (0.02% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.c1859553633.33%71.90%
.h2116945538.89%20.46%
5286199.26%3.46%
.patch72146212.96%2.59%
.cc180871.85%0.98%
其他251603.70%0.62%

libva_protected_content

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 9042 字节 (0.00% of total)
  • 文件总数: 4 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.h1719325.00%79.55%
2117550.00%12.99%
.chromium167425.00%7.45%
其他000.00%0.00%

libvpx

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 30260553 字节 (0.47% of total)
  • 文件总数: 1256 (0.45% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.c5331087495142.44%35.94%
.h448995241435.67%32.89%
.cc6829145445.41%9.63%
.txt625305490.48%8.36%
.png215803040.16%5.22%
其他199240779115.84%7.96%

libwebm

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 2330576 字节 (0.04% of total)
  • 文件总数: 798 (0.29% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
61799354977.32%42.63%
.cc578177177.14%35.09%
.h9643356212.03%18.60%
.txt1212480.13%0.91%
.md2173040.25%0.74%
其他25471963.13%2.03%

libwebp

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 9503299 字节 (0.15% of total)
  • 文件总数: 460 (0.17% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.webp139458625230.22%48.26%
.c156355782733.91%37.44%
.h7046582815.22%4.90%
153076563.26%3.24%
.txt31151000.65%1.21%
其他7747063616.74%4.95%

libx11

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 16214 字节 (0.00% of total)
  • 文件总数: 5 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.c21421240.00%87.65%
2118740.00%7.32%
.chromium181520.00%5.03%
其他000.00%0.00%

libxcb-keysyms

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 5216 字节 (0.00% of total)
  • 文件总数: 4 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.c1285225.00%54.68%
2150150.00%28.78%
.chromium186325.00%16.55%
其他000.00%0.00%

libxml

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 7740403 字节 (0.12% of total)
  • 文件总数: 1152 (0.42% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.c4144853783.56%57.95%
993248513386.20%32.11%
.h764749066.60%6.14%
.py81100870.69%1.42%
.in8426880.69%0.55%
其他261422112.26%1.84%

libxslt

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 1825134 字节 (0.03% of total)
  • 文件总数: 108 (0.04% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.c29118344526.85%64.84%
.m493562598.33%19.52%
.h3315071030.56%8.26%
.in9257848.33%1.41%
.js1221250.93%1.21%
其他278681125.00%4.76%

libyuv

libyuvis an open source project that includes YUV scaling and conversion functionality.

  • Scale YUV to prepare content for compression, with point, bilinear or box filter.
  • Convert to YUV from webcam formats for compression.
  • Convert to RGB formats for rendering/effects.
  • Rotate by 90/180/270 degrees to adjust for mobile devices in portrait mode.
  • Optimized for SSSE3/AVX2 on x86/x64.
  • Optimized for Neon on Arm.
  • Optimized for MSA on Mips.
  • Optimized for RVV on RISC-V.
    Development
    See [Getting started][1] for instructions on how to get started developing.
    You can also browse the [docs directory][2] for more documentation.
    [1]: ./docs/getting_started.md
    [2]: ./docs/

目录摘要:

  • 总大小: 5318364 字节 (0.08% of total)
  • 文件总数: 170 (0.06% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc77422840545.29%79.51%
.h2773711015.88%13.86%
1710566910.00%1.99%
.cfg7767854.12%1.44%
.md8516734.71%0.97%
其他3411872220.00%2.23%

libzip

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 5857748 字节 (0.09% of total)
  • 文件总数: 770 (0.28% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.zip117355767515.19%60.73%
.c14865689419.22%11.21%
.html9958801512.86%10.04%
.man9934491412.86%5.89%
.mdoc9932413112.86%5.53%
其他20838611927.01%6.59%

lighttpd

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 19939011 字节 (0.31% of total)
  • 文件总数: 114 (0.04% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.dll451311391139.47%65.77%
347443742.63%23.79%
.exe79225226.14%4.63%
.so3265854428.07%3.30%
.dylib22739441.75%1.37%
其他2522571621.93%1.13%

lit

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 20422 字节 (0.00% of total)
  • 文件总数: 8 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.ts2851725.00%41.71%
.gn1693212.50%33.94%
.mjs1193512.50%9.48%
3165137.50%8.08%
.chromium1138712.50%6.79%
其他000.00%0.00%

llvm-build

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 199866779 字节 (3.07% of total)
  • 文件总数: 280 (0.10% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.exe61746237442.14%87.37%
.h2471403654588.21%7.02%
.lib13101501004.64%5.08%
.dll19866240.36%0.49%
.inc1390910.36%0.02%
其他12306754.29%0.02%

logdog

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 30308 字节 (0.00% of total)
  • 文件总数: 9 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.py52901755.56%95.74%
.sh182011.11%2.71%
.chromium142111.11%1.39%
25022.22%0.16%
其他000.00%0.00%

logilab

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 865876 字节 (0.01% of total)
  • 文件总数: 79 (0.03% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.py7482896993.67%95.74%
.txt2359762.53%4.15%
.chromium39313.80%0.11%
其他000.00%0.00%

lottie

Lottie Web Worker
# Using the lottie player on a worker thread and an offscreen canvas.
Sample usage
1. Setting up a new animation
# HTML:

<canvas id="a"></canvas>

# Javascript:

let offscreenCanvas = document.getElementById('a').transferControlToOffscreen();
let animationData = JSON_LOTTIE_ANIMATION_DATA;
let worker = new Worker('lottie_worker.min.js');
worker.postMessage({
  canvas: offscreenCanvas,
  animationData: animationData,

目录摘要:

  • 总大小: 460241 字节 (0.01% of total)
  • 文件总数: 10 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.js145071510.00%97.93%
4368440.00%0.80%
.md1219510.00%0.48%
.py2166720.00%0.36%
.chromium1112610.00%0.24%
其他185410.00%0.19%

lss

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 0 字节 (0.00% of total)
  • 文件总数: 0 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
其他11100.00%100.00%

lzma_sdk

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 8441611 字节 (0.13% of total)
  • 文件总数: 94 (0.03% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.exe677854726.38%92.23%
.c2941628630.85%4.93%
.h278863128.72%1.05%
.asm6545256.38%0.65%
.S2426822.13%0.51%
其他245401525.53%0.64%

mako

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 274771 字节 (0.00% of total)
  • 文件总数: 46 (0.02% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.py3426702873.91%97.18%
.cfg126332.17%0.96%
6181413.04%0.66%
.rst114592.17%0.53%
.chromium17152.17%0.26%
其他311226.52%0.41%

markdown

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 237763 字节 (0.00% of total)
  • 文件总数: 33 (0.01% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.py2923549187.88%99.04%
317819.09%0.75%
.chromium14913.03%0.21%
其他000.00%0.00%

markupsafe

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 27101 字节 (0.00% of total)
  • 文件总数: 15 (0.01% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.py41467026.67%54.13%
.c159396.67%21.91%
.sh129806.67%11.00%
5200333.33%7.39%
.chromium111046.67%4.07%
其他340520.00%1.49%

material_color_utilities

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 3719390 字节 (0.06% of total)
  • 文件总数: 283 (0.10% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.png523170001.77%62.30%
.ts5530508019.43%8.20%
.cc4625557916.25%6.87%
.java3924503613.78%6.59%
.dart3921135013.78%5.68%
其他9938534534.98%10.36%

material_design_icons

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 18254 字节 (0.00% of total)
  • 文件总数: 5 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
31146560.00%62.81%
.gn1641120.00%35.12%
.chromium137820.00%2.07%
其他000.00%0.00%

material_web_components

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 1568461 字节 (0.02% of total)
  • 文件总数: 689 (0.25% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.js33195649948.04%60.98%
.ts32544217747.17%28.19%
.json12741971.74%4.73%
.gn1432520.15%2.76%
9314731.31%2.01%
其他11208631.60%1.33%

maven

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 12353 字节 (0.00% of total)
  • 文件总数: 4 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
21142750.00%92.50%
.pb147825.00%3.87%
.chromium144825.00%3.63%
其他000.00%0.00%

mediapipe

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 13078594 字节 (0.20% of total)
  • 文件总数: 1744 (0.63% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc567496520432.51%37.96%
.h496228670928.44%17.48%
.pbtxt16815204749.63%11.63%
1359550697.74%7.30%
.pngblob39085910.17%6.95%
其他375244254721.50%18.68%

mesa_headers

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 1006317 字节 (0.02% of total)
  • 文件总数: 14 (0.01% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.h9100246464.29%99.62%
3305721.43%0.30%
.chromium15187.14%0.05%
.gn12787.14%0.03%
其他000.00%0.00%

metrics_proto

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 208528 字节 (0.00% of total)
  • 文件总数: 35 (0.01% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.proto2820034980.00%96.08%
.py242675.71%2.05%
320948.57%1.00%
.gn112342.86%0.59%
.chromium15842.86%0.28%
其他000.00%0.00%

microsoft_dxheaders

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 3786624 字节 (0.06% of total)
  • 文件总数: 67 (0.02% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.h36275614853.73%72.79%
.idl758997710.45%15.58%
.cpp32217934.48%5.86%
.hpp21853192.99%4.89%
.md393644.48%0.25%
其他162402323.88%0.63%

microsoft_webauthn

Description
This project includes Win32 headers for communicating to Windows Hello and external secruity keys as part of WebAuthn and CTAP specification.
For more details about the standards, please follow these links:

  • WebAuthn: https://w3c.github.io/webauthn/
  • CTAP: https://fidoalliance.org/specs/fido-v2.0-ps-20190130/fido-client-to-authenticator-protocol-v2.0-ps-20190130.html

Having Issues?
If you have any issues in adopting these APIs or need some clarification, please contact fido-dev@microsoft.com.
Contributing
This project welcomes contributions and suggestions. Most contributions require you to agree to a
Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us
the rights to use your contribution. For details, visit https://cla.microsoft.com.
When you submit a pull request, a CLA-bot will automatically determine whether you need to provide

目录摘要:

  • 总大小: 56828 字节 (0.00% of total)
  • 文件总数: 9 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.h14478411.11%78.81%
4690944.44%12.16%
.md2419422.22%7.38%
.chromium173411.11%1.29%
.gn120711.11%0.36%
其他000.00%0.00%

mig

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 21819 字节 (0.00% of total)
  • 文件总数: 6 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
32048550.00%93.89%
.chromium158316.67%2.67%
.sh139516.67%1.81%
.pb135616.67%1.63%
其他000.00%0.00%

minigbm

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 4919 字节 (0.00% of total)
  • 文件总数: 5 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.gn1282720.00%57.47%
3180160.00%36.61%
.chromium129120.00%5.92%
其他000.00%0.00%

mockito

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 12091 字节 (0.00% of total)
  • 文件总数: 9 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.java2838122.22%69.32%
.gn1147911.11%12.23%
3122233.33%10.11%
.chromium160211.11%4.98%
.flags134411.11%2.85%
其他16311.11%0.52%

modp_b64

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 42760 字节 (0.00% of total)
  • 文件总数: 9 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.h23446722.22%80.61%
.cc1533111.11%12.47%
4185844.44%4.35%
.chromium185411.11%2.00%
.gn125011.11%0.58%
其他000.00%0.00%

motemplate

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 48503 字节 (0.00% of total)
  • 文件总数: 6 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.py13666716.67%75.60%
41146766.67%23.64%
.chromium136916.67%0.76%
其他000.00%0.00%

nasm

NASM, the Netwide Assembler
Many many developers all over the net respect NASM for what it is:
a widespread (thus netwide), portable (thus netwide!), very flexible
and mature assembler tool with support for many output formats (thus netwide!!).
Now we have good news for you: NASM is licensed under the “simplified”
(2-clause) BSD license.
This means its development is open to even wider society of programmers
wishing to improve their lovely assembler.
Visit our nasm.us website for more details.
With best regards, the NASM crew.

目录摘要:

  • 总大小: 6777201 字节 (0.10% of total)
  • 文件总数: 331 (0.12% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.c101446468830.51%65.88%
.dat55059591.51%7.47%
.src24530460.60%6.68%
.h6944471320.85%6.56%
302490489.06%3.67%
其他12465974737.46%9.73%

nearby

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 79536692 字节 (1.22% of total)
  • 文件总数: 3200 (1.15% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.h21396517579166.84%81.94%
.cc6841026194621.38%12.90%
.png516260420.16%2.04%
.lock47918440.12%1.00%
1003192803.12%0.40%
其他26813617898.38%1.71%

neon_2_sse

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 835656 字节 (0.01% of total)
  • 文件总数: 11 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.h18280309.09%99.09%
5370845.45%0.44%
.txt114179.09%0.17%
.md110889.09%0.13%
.gn17289.09%0.09%
其他268518.18%0.08%

netty-tcnative

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 15012 字节 (0.00% of total)
  • 文件总数: 5 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
31152660.00%76.78%
.chromium1177120.00%11.80%
.gn1171520.00%11.42%
其他000.00%0.00%

netty4

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 13128 字节 (0.00% of total)
  • 文件总数: 7 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
31152642.86%87.80%
.chromium162814.29%4.78%
.gn149314.29%3.76%
.gni127114.29%2.06%
.flags121014.29%1.60%
其他000.00%0.00%

ninja

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 592900 字节 (0.01% of total)
  • 文件总数: 3 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.exe159238433.33%99.91%
.chromium147933.33%0.08%
13733.33%0.01%
其他000.00%0.00%

node

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 323679058 字节 (4.98% of total)
  • 文件总数: 5371 (1.94% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
189970994893.52%30.00%
.exe1700176880.02%21.63%
.gz2534780850.04%16.52%
.h23645094031144.01%15.74%
.js19734390887736.73%13.57%
其他842823460815.68%2.54%

nyx-packer

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 12765 字节 (0.00% of total)
  • 文件总数: 6 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.h1913516.67%71.56%
.sh1142016.67%11.12%
2115433.33%9.04%
.chromium176916.67%6.02%
.gn128716.67%2.25%
其他000.00%0.00%

objenesis

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 11894 字节 (0.00% of total)
  • 文件总数: 6 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
31098750.00%92.37%
.yaml134716.67%2.92%
.gn129816.67%2.51%
.chromium126216.67%2.20%
其他000.00%0.00%

ocmock

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 250252 字节 (0.00% of total)
  • 文件总数: 89 (0.03% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.m3615980440.45%63.86%
.h415330746.07%21.30%
.txt2261442.25%10.45%
.mm250272.25%2.01%
.gn136311.12%1.45%
其他723397.87%0.93%

omnibox_proto

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 24328 字节 (0.00% of total)
  • 文件总数: 15 (0.01% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.proto102124266.67%87.32%
3170920.00%7.02%
.gn17386.67%3.03%
.chromium16396.67%2.63%
其他000.00%0.00%

one_euro_filter

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 8810 字节 (0.00% of total)
  • 文件总数: 9 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc2377422.22%42.84%
.h2206722.22%23.46%
3171633.33%19.48%
.gn184611.11%9.60%
.chromium140711.11%4.62%
其他000.00%0.00%

openh264

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 70473285 字节 (1.08% of total)
  • 文件总数: 589 (0.21% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.26450543957408.49%77.19%
.yuv480846400.68%11.47%
.cpp95281451016.13%3.99%
.h144113179924.45%1.61%
.asm248789044.07%1.25%
其他272316769246.18%4.49%

openscreen

README.md for Open Screen Library in Chromium
openscreen is built in Chromium with some build differences based on the value
of the GN argument build_with_chromium. build_with_chromium is defined in
//build_overrides/build.gni and is true when openscreen is built as part of
Chromium and false when built standalone.

目录摘要:

  • 总大小: 28741807 字节 (0.44% of total)
  • 文件总数: 1785 (0.64% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc624998529534.96%34.74%
.exe255848960.11%19.43%
.S12246199216.83%16.07%
.h545455271130.53%15.84%
.asm3012959841.68%4.51%
其他462270300025.88%9.40%

openxr

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 3248411 字节 (0.05% of total)
  • 文件总数: 242 (0.09% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.xml39214151.24%28.37%
.h3983031316.12%25.56%
.cpp2866898511.57%20.59%
.in112121184.55%6.53%
.md101506614.13%4.64%
其他15146491962.40%14.31%

opus

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 3877908 字节 (0.06% of total)
  • 文件总数: 373 (0.13% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.c193204137251.74%52.64%
.h10796903828.69%24.99%
.xml45151841.07%13.29%
.html3455410.80%1.17%
.ac1356060.27%0.92%
其他6527116717.43%6.99%

ots

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 713837 字节 (0.01% of total)
  • 文件总数: 133 (0.05% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc5053325137.59%74.70%
.h498649136.84%12.12%
.am1344100.75%4.82%
.md4179093.01%2.51%
.build5159403.76%2.23%
其他242583618.05%3.62%

pdfium

PDFium
Prerequisites
PDFium uses the same build tooling as Chromium. See the platform-specific
Chromium build instructions to get started, but replace Chromium’s
“Get the code” instructions with PDFium’s.

目录摘要:

  • 总大小: 34253522 字节 (0.53% of total)
  • 文件总数: 4419 (1.59% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cpp13361629195930.23%47.56%
.c8439654841.90%11.58%
.h1232362320127.88%10.58%
.inc835998350.18%10.51%
.pdf27726670046.27%7.79%
其他1482410603933.54%11.99%

pefile_py3

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 254018 字节 (0.00% of total)
  • 文件总数: 8 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.py425186450.00%99.15%
2115025.00%0.45%
.chromium167312.50%0.26%
.gn133112.50%0.13%
其他000.00%0.00%

perfetto

Perfetto - System profiling, app tracing and trace analysis
Perfetto is a production-grade open-source stack for performance
instrumentation and trace analysis. It offers services and libraries and for
recording system-level and app-level traces, native + java heap profiling, a
library for analyzing traces using SQL and a web-based UI to visualize and
explore multi-GB traces.
See https://perfetto.dev/docs or the /docs/ directory for documentation.

目录摘要:

  • 总大小: 39425940 字节 (0.61% of total)
  • 文件总数: 3684 (1.33% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.png156140847984.23%35.72%
.cc853945488523.15%23.98%
.h714356362119.38%9.04%
.ts488292924413.25%7.43%
.proto34618443819.39%4.68%
其他1127754901130.59%19.15%

perl

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 512705132 字节 (7.88% of total)
  • 文件总数: 11872 (4.28% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.exe811769504420.68%34.51%
.a457917459333.85%17.89%
.h32258768297127.16%17.10%
.dll220510780291.85%9.96%
.pm36554978103930.79%9.71%
其他42345546671835.66%10.82%

pexpect

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 139102 字节 (0.00% of total)
  • 文件总数: 12 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.py613517150.00%97.17%
5349941.67%2.52%
.chromium14328.33%0.31%
其他000.00%0.00%

pffft

Notes on PFFFT
We strongly recommend to read this filebefore using PFFFT and to always wrapthe original C library within a C++ wrapper.
Example of PFFFT wrapper.
Scratch buffer
The caller can optionally provide a scratch buffer. When not provided, VLA is used to provide a thread-safe option.
However, it is recommended to write a C++ wrapper which allocates its own scratch buffer.
Note that the scratch buffer has the same memory alignment requirements of the input and output vectors.
Output layout
PFFFT computes the forward transform with two possible output layouts:

  1. ordered
  2. unordered
    Ordered layout
    Calling pffft_transform_ordered produces an array of interleaved real and imaginary parts.
    The last Fourier coefficient is purely real and stored in the imaginary part of the DC component (which is also purely real).
    Unordered layout

目录摘要:

  • 总大小: 259382 字节 (0.00% of total)
  • 文件总数: 21 (0.01% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.c316664714.29%64.25%
.h2342019.52%13.19%
.txt1269894.76%10.41%
.diff51072723.81%4.14%
.cc286219.52%3.32%
其他81219738.10%4.70%

pipewire

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 3719 字节 (0.00% of total)
  • 文件总数: 5 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.sh1164220.00%44.15%
2125640.00%33.77%
.chromium147420.00%12.75%
.pb134720.00%9.33%
其他000.00%0.00%

pipewire-media-session

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 3158 字节 (0.00% of total)
  • 文件总数: 5 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
2125640.00%39.77%
.sh198320.00%31.13%
.chromium148320.00%15.29%
.pb143620.00%13.81%
其他000.00%0.00%

ply

PLY (Python Lex-Yacc) Version 3.11
Copyright © 2001-2018
David M. Beazley (Dabeaz LLC)
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:

  • Redistributions of source code must retain the above copyright notice,
    this list of conditions and the following disclaimer.
  • Redistributions in binary form must reproduce the above copyright notice,
    this list of conditions and the following disclaimer in the documentation
    and/or other materials provided with the distribution.
  • Neither the name of the David Beazley or Dabeaz LLC may be used to
    endorse or promote products derived from this software without
    specific prior written permission.

目录摘要:

  • 总大小: 196058 字节 (0.00% of total)
  • 文件总数: 10 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.py318246230.00%93.07%
.md1910510.00%4.64%
.patch1204410.00%1.04%
3167530.00%0.85%
.chromium165810.00%0.34%
其他111410.00%0.06%

polymer

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 1513307 字节 (0.02% of total)
  • 文件总数: 204 (0.07% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.js53103871825.98%68.64%
.ts9435126646.08%23.21%
.patch9371404.41%2.45%
.json2288200.98%1.90%
.gn322860115.69%1.89%
其他14287626.86%1.90%

private-join-and-compute

Private Join and Compute
This project contains an implementation of the “Private Join and Compute”
functionality. This functionality allows two users, each holding an input file,
to privately compute the sum of associated values for records that have common
identifiers.
In more detail, suppose a Server has a file containing the following
identifiers:

Identifiers
Sam
Ada
Ruby
Brendan
And a Client has a file containing the following identifiers, paired with
associated integer values:

目录摘要:

  • 总大小: 183113 字节 (0.00% of total)
  • 文件总数: 36 (0.01% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.diff76156019.44%33.62%
.h113953630.56%21.59%
.cc63498916.67%19.11%
63427916.67%18.72%
.md278785.56%4.30%
其他4487111.11%2.66%

private_membership

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 220254 字节 (0.00% of total)
  • 文件总数: 42 (0.02% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc1910208545.24%46.35%
.patch1541642.38%24.59%
.h133838430.95%17.43%
.proto2146484.76%6.65%
.gn157952.38%2.63%
其他6517814.29%2.35%

protobuf

Protocol Buffers - Google’s data interchange format
Copyright 2008 Google Inc.
https://developers.google.com/protocol-buffers/
Overview
Protocol Buffers (a.k.a., protobuf) are Google’s language-neutral,
platform-neutral, extensible mechanism for serializing structured data. You
can find protobuf’s documentation on the Google Developers site.
This README file contains protobuf installation instructions. To install
protobuf, you need to install the protocol compiler (used to compile .proto
files) and the protobuf runtime for your chosen programming language.
Protocol Compiler Installation

目录摘要:

  • 总大小: 25424076 字节 (0.39% of total)
  • 文件总数: 1830 (0.66% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc284754888215.52%29.69%
.h323474513617.65%18.66%
.java15328144868.36%11.07%
.cs12424077266.78%9.47%
.py8414825994.59%5.83%
其他862642524747.10%25.27%

protobuf-javascript

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 2620689 字节 (0.04% of total)
  • 文件总数: 203 (0.07% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.js128184616663.05%70.45%
.json83126313.94%11.93%
.cc31614591.48%6.16%
.proto4212982120.69%4.95%
.lock11002900.49%3.83%
其他217032210.34%2.68%

pthreadpool

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 495343 字节 (0.01% of total)
  • 文件总数: 38 (0.01% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.c926778523.68%54.06%
.h516170213.16%32.64%
.cc43186810.53%6.43%
.bazel1116782.63%2.36%
.txt194862.63%1.92%
其他181282447.37%2.59%

puffin

Puffin: A deterministic deflate re-compressor (for patching purposes)
Table of Contents
Puffin
Puffin is a deterministic deflate recompressor. It is mainly used for patching
deflate compressed images (zip, gzip, etc.) because patches created from deflate
files/streams are usually large (deflate has a bit-aligned format, hence,
changing one byte in the raw data can cause the entire deflate stream to change
drastically.)
Puffin has two tools (operations): puffdiff and puffpatch (shown
here.) The purpose of puffdiff operation is to create a patch
between a source and a target file with one or both of them having some deflate
streams. This patch is used in the puffpatch operation to generate the target
file from the source file deterministically. The patch itself is created by
bsdiff library (but can be replaced by any other diffing mechanism). But,

目录摘要:

  • 总大小: 415598 字节 (0.01% of total)
  • 文件总数: 66 (0.02% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc2820303542.42%48.85%
.png21211083.03%29.14%
.h195812528.79%13.99%
.md1110811.52%2.67%
.py282323.03%1.98%
其他141401721.21%3.37%

pycoverage

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 411187 字节 (0.01% of total)
  • 文件总数: 51 (0.02% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.py2821937154.90%53.35%
.js51063379.80%25.86%
.txt4439677.84%10.69%
.c1231181.96%5.62%
.html271803.92%1.75%
其他111121421.57%2.73%

pyelftools

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 0 字节 (0.00% of total)
  • 文件总数: 0 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
其他11100.00%100.00%

pyjson5

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 3485546 字节 (0.05% of total)
  • 文件总数: 25 (0.01% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.json4338841516.00%97.21%
.py106448340.00%1.85%
51641720.00%0.47%
.md196964.00%0.28%
.g152544.00%0.15%
其他4128116.00%0.04%

pylint

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 600107 字节 (0.01% of total)
  • 文件总数: 42 (0.02% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.py4057971895.24%96.60%
.txt1179892.38%3.00%
.chromium124002.38%0.40%
其他000.00%0.00%

pywebsocket3

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 307307 字节 (0.00% of total)
  • 文件总数: 53 (0.02% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.py3125264958.49%82.21%
.js5249359.43%8.11%
.html4200857.55%6.54%
.i134101.89%1.11%
529479.43%0.96%
其他7328113.21%1.07%

pyyaml

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 219111 字节 (0.00% of total)
  • 文件总数: 19 (0.01% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.py1721750489.47%99.27%
111015.26%0.50%
.chromium15065.26%0.23%
其他000.00%0.00%

qcms

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 237506 字节 (0.00% of total)
  • 文件总数: 23 (0.01% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.c818822734.78%79.25%
.h73331430.43%14.03%
.chromium197194.35%4.09%
.gn123994.35%1.01%
.cc122544.35%0.95%
其他5159321.74%0.67%

quic_trace

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 964742 字节 (0.01% of total)
  • 文件总数: 66 (0.02% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.gz12771971.52%28.73%
.h1725692425.76%26.63%
.c11270071.52%13.16%
.qtr1734621.52%7.61%
.cc137312319.70%7.58%
其他3315702950.00%16.28%

qunit

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 84235 字节 (0.00% of total)
  • 文件总数: 7 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.js27616528.57%90.42%
.css1527114.29%6.26%
.chromium1155614.29%1.85%
3124342.86%1.48%
其他000.00%0.00%

r8

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 50454 字节 (0.00% of total)
  • 文件总数: 23 (0.01% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.jar2131528.70%26.07%
.txt195944.35%19.02%
.java3809313.04%16.04%
.py257978.70%11.49%
.chromium150794.35%10.07%
其他14873960.87%17.32%

re2

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 1705857 字节 (0.03% of total)
  • 文件总数: 141 (0.05% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc5596860339.01%56.78%
.h2318629516.31%10.92%
.c211442520.71%8.46%
.r701952000.71%5.58%
.wreck1655430.71%3.84%
其他6024596442.55%14.42%

requests

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 9575 字节 (0.00% of total)
  • 文件总数: 4 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
3931375.00%97.26%
.chromium126225.00%2.74%
其他000.00%0.00%

rjsmin

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 30194 字节 (0.00% of total)
  • 文件总数: 4 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.py11972925.00%65.34%
21023450.00%33.89%
.chromium123125.00%0.77%
其他000.00%0.00%

rnnoise

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 37964 字节 (0.00% of total)
  • 文件总数: 8 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc12892512.50%76.19%
.h2600925.00%15.83%
3175137.50%4.61%
.chromium193012.50%2.45%
.gn134912.50%0.92%
其他000.00%0.00%

robolectric

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 22084 字节 (0.00% of total)
  • 文件总数: 11 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
41047636.36%47.44%
.txt3468927.27%21.23%
.py145259.09%20.49%
.gn113899.09%6.29%
.chromium17069.09%3.20%
其他12999.09%1.35%

rust

Rust third-party code
This directory contains all third-party Rust code, and sometimes thin wrappers
around it for C++ intertop.
Crates.io
Crates that come from crates.io are found in
//third_party/rust/chromium_crates_io, and are all vendored into the
Chromium git repository. They are managed through Cargo rules and with
the gnrt tool. See //docs/rust.md for how to
bring in new third-party libraries or update them.
The GN rules and README.chromium files for these crates are written by
the gnrt tool and should not be edited by hand.
Directory structure
We store GN rules for each third-party crate in a directory of the same name.
Under that directory a folder named based on the crate epoch version is

目录摘要:

  • 总大小: 99347598 字节 (1.53% of total)
  • 文件总数: 3179 (1.15% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.rs18984640415959.70%46.71%
.json3273266851710.29%32.88%
.lib3158906140.09%15.99%
28113474938.84%1.36%
.lock159065820.47%0.91%
其他655213023320.60%2.14%

ruy

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 1762879 字节 (0.03% of total)
  • 文件总数: 148 (0.05% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc54112987836.49%64.09%
.h5445743736.49%25.95%
12529318.11%3.00%
.txt5382413.38%2.17%
.svg1208550.68%1.18%
其他226353714.86%3.60%

s2cellid

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 171391 字节 (0.00% of total)
  • 文件总数: 28 (0.01% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.h1311793846.43%68.81%
.cc63666321.43%21.39%
71314825.00%7.67%
.chromium123323.57%1.36%
.gn113103.57%0.76%
其他000.00%0.00%

screen-ai

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 85102953 字节 (1.31% of total)
  • 文件总数: 54 (0.02% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.dll2770982563.70%90.59%
.tflite10405082418.52%4.76%
.fb234827203.70%4.09%
.lstm_model23228963.70%0.38%
.conv_model2816163.70%0.10%
其他366664166.67%0.08%

securemessage

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 187100 字节 (0.00% of total)
  • 文件总数: 43 (0.02% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc98644920.93%46.20%
.h94596920.93%24.57%
93104520.93%16.59%
.md5921311.63%4.92%
.proto142552.33%2.27%
其他101016923.26%5.44%

selenium-atoms

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 1251583 字节 (0.02% of total)
  • 文件总数: 10 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc1122848510.00%98.15%
31149330.00%0.92%
.diff1406310.00%0.32%
.h1270710.00%0.22%
.chromium1242210.00%0.19%
其他3241330.00%0.19%

sentencepiece

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 8623980 字节 (0.13% of total)
  • 文件总数: 122 (0.04% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.h32773478926.23%89.69%
.cc5365459443.44%7.59%
.patch7538035.74%0.62%
.cmake1476920.82%0.55%
.md7421815.74%0.49%
其他229092118.03%1.05%

setupdesign

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 11911 字节 (0.00% of total)
  • 文件总数: 3 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
21144166.67%96.05%
.chromium147033.33%3.95%
其他000.00%0.00%

shell-encryption

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 757502 字节 (0.01% of total)
  • 文件总数: 90 (0.03% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc2934272032.22%45.24%
.h3420791637.78%27.45%
.patch81096008.89%14.47%
137163314.44%9.46%
.md2157882.22%2.08%
其他498454.44%1.30%

simplejson

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 155547 字节 (0.00% of total)
  • 文件总数: 11 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.c1892889.09%57.40%
.py66475054.55%41.63%
.txt110569.09%0.68%
.chromium13549.09%0.23%
29918.18%0.06%
其他000.00%0.00%

sinonjs

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 162302 字节 (0.00% of total)
  • 文件总数: 6 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.js216022133.33%98.72%
3171550.00%1.06%
.chromium136616.67%0.23%
其他000.00%0.00%

siso

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 30517396 字节 (0.47% of total)
  • 文件总数: 4 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.exe13051673625.00%100.00%
.chromium146925.00%0.00%
.cipd_version111925.00%0.00%
17225.00%0.00%
其他000.00%0.00%

six

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 135373 字节 (0.00% of total)
  • 文件总数: 18 (0.01% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.py47347722.22%54.28%
.rst24155911.11%30.70%
71716938.89%12.68%
.yml119495.56%1.44%
.chromium15835.56%0.43%
其他363616.67%0.47%

skia

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 124693064 字节 (1.92% of total)
  • 文件总数: 8570 (3.09% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cpp32412616673037.82%20.98%
.json431175843185.03%14.10%
.mskp1161128380.01%12.92%
.png95126224681.11%10.12%
.h18301019898021.35%8.18%
其他29724200773034.68%33.69%

smhasher

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 256784 字节 (0.00% of total)
  • 文件总数: 49 (0.02% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cpp2413467448.98%52.45%
.h1810859236.73%42.29%
.c1106802.04%4.16%
313066.12%0.51%
.txt16162.04%0.24%
其他29164.08%0.36%

snappy

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 349175 字节 (0.01% of total)
  • 文件总数: 46 (0.02% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc1119459323.91%55.73%
.h138635828.26%24.73%
.txt3249186.52%7.14%
.md3120486.52%3.45%
91109919.57%3.18%
其他72015915.22%5.77%

speech-dispatcher

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 42270 字节 (0.00% of total)
  • 文件总数: 7 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.LGPL12702314.29%63.93%
.h21341128.57%31.73%
.chromium197814.29%2.31%
.gn178814.29%1.86%
27028.57%0.17%
其他000.00%0.00%

speedometer

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 61491309 字节 (0.95% of total)
  • 文件总数: 1118 (0.40% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.map42186839653.76%30.38%
.js3921390798935.06%22.62%
.json1141264730910.20%20.57%
.html7195459486.35%15.52%
.css178486183115.92%7.91%
其他321184426728.71%3.00%

spirv-cross

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 11277935 字节 (0.17% of total)
  • 文件总数: 4345 (1.57% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.frag1715349635539.47%31.00%
.comp1136232192726.14%20.59%
.cpp2220525050.51%18.20%
.tesc2209381255.06%8.32%
.vert62283128914.32%7.37%
其他630163773414.50%14.52%

spirv-headers

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 3747897 字节 (0.06% of total)
  • 文件总数: 101 (0.04% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.json27155622726.73%41.52%
.h2754599226.73%14.57%
.hpp43588083.96%9.57%
.hpp1143309813.96%8.83%
.cpp42351203.96%6.27%
其他3572076934.65%19.23%

spirv-tools

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 9509926 字节 (0.15% of total)
  • 文件总数: 1042 (0.38% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cpp435563265641.75%59.23%
.h412196092039.54%20.62%
.go258945622.40%9.41%
.js131410981.25%1.48%
151344081.44%1.41%
其他14274628213.63%7.85%

sqlite

Chromium SQLite.
This is the top folder for Chromium’s SQLite. The
actual SQLite source is not in this repository, but instead cloned into the
src directory from https://chromium.googlesource.com/chromium/deps/sqlite.
The directory structure is as follows. Files common to all third_party projects
(ex. BUILD.GN, OWNERS, LICENSE) are omitted.

  • src/ The Chromium fork of SQLite (cloned via top level DEPS file).
  • scripts/ Scripts that generate the files in the amalgamations in src/.
  • sqlite.h The header used by the rest of Chromium to include SQLite. This
    forwards to src/amalgamation/sqlite3.h
  • fuzz/ Google OSS-Fuzz (ClusterFuzz) testing for Chromium’s SQLite build.
    Amalgamations
    SQLite amalgamations are committed
    to the SQLite Chromium repository (in src), but are created by a script that
    lives in the Chromium repository. This is because the configuration variables
    for building and amalgamation generation are shared.

目录摘要:

  • 总大小: 104600560 字节 (1.61% of total)
  • 文件总数: 885 (0.32% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.db8606469120.90%57.98%
.c3233302909936.50%31.58%
.h6123596756.89%2.26%
.txt1415335671.58%1.47%
4110855694.63%1.04%
其他438594573849.49%5.68%

sqlite4java

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 11488 字节 (0.00% of total)
  • 文件总数: 6 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
31031550.00%89.79%
.yaml163316.67%5.51%
.gn127616.67%2.40%
.chromium126416.67%2.30%
其他000.00%0.00%

subresource-filter-ruleset

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 95875 字节 (0.00% of total)
  • 文件总数: 8 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
69455375.00%98.62%
.chromium1120712.50%1.26%
.json111512.50%0.12%
其他000.00%0.00%

sudden_motion_sensor

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 21376 字节 (0.00% of total)
  • 文件总数: 8 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc11516812.50%70.96%
.h1326512.50%15.27%
4198650.00%9.29%
.chromium166712.50%3.12%
.gn129012.50%1.36%
其他000.00%0.00%

swift-toolchain

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 13910 字节 (0.00% of total)
  • 文件总数: 5 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
21177440.00%84.64%
.pb1109220.00%7.85%
.sh158020.00%4.17%
.chromium146420.00%3.34%
其他000.00%0.00%

swiftshader

SwiftShader
SwiftShader[^1] is a high-performance CPU-based implementation[^2] of the Vulkan[^3] 1.3 graphics API. Its goal is to provide hardware independence for advanced 3D graphics.

NOTE: The ANGLE project can be used to achieve a layered implementation[^4] of OpenGL ES 3.1 (aka. “SwANGLE”).
Building


SwiftShader libraries can be built for Windows, Linux, and macOS.
Android and Chrome (OS) build environments are also supported.

  • CMake

    Install CMake for Linux, macOS, or Windows and use either the GUI or run the following terminal commands:

目录摘要:

  • 总大小: 558314783 字节 (8.58% of total)
  • 文件总数: 13416 (4.84% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.inc2712821978272.02%50.54%
.cpp535815002320739.94%26.87%
.h53645004367939.98%8.96%
.td846383087596.31%6.86%
.hpp161149053111.20%2.67%
其他14162283600010.55%4.09%

tensorflow-text

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 43582 字节 (0.00% of total)
  • 文件总数: 13 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
52316438.46%53.15%
.cc21341015.38%30.77%
.h3432823.08%9.93%
.gn19437.69%2.16%
.chromium19017.69%2.07%
其他18367.69%1.92%

tensorflow_models

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 102402 字节 (0.00% of total)
  • 文件总数: 24 (0.01% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc76228329.17%60.82%
.h102368241.67%23.13%
41190716.67%11.63%
.gn120284.17%1.98%
.sh115014.17%1.47%
其他110014.17%0.98%

test_fonts

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 82942554 字节 (1.28% of total)
  • 文件总数: 48 (0.02% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
93280199618.75%39.55%
.ttc1326825802.08%39.40%
.ttf301743656062.50%21.02%
.conf194282.08%0.01%
.chromium140872.08%0.00%
其他6790312.50%0.01%

text-fragments-polyfill

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 361337 字节 (0.01% of total)
  • 文件总数: 20 (0.01% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.json221218110.00%58.72%
.js411342020.00%31.39%
62343830.00%6.49%
.md2622810.00%1.72%
.cjs130505.00%0.84%
其他5302025.00%0.84%

tfhub_models

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 13796 字节 (0.00% of total)
  • 文件总数: 5 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
31161460.00%84.18%
.chromium1170720.00%12.37%
.gn147520.00%3.44%
其他000.00%0.00%

tflite

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 261543640 字节 (4.02% of total)
  • 文件总数: 28997 (10.45% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc864711414757229.82%43.64%
.py2804443390569.67%16.95%
.h52453240467318.09%12.39%
.pbtxt75011266951325.87%4.84%
140899710764.86%3.81%
其他33924801175011.70%18.36%

tflite_support

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 9400048 字节 (0.14% of total)
  • 文件总数: 997 (0.36% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.tflite142878740.10%45.62%
.cc177117727617.75%12.52%
.java12782116212.74%8.74%
.h21773858721.77%7.86%
.png45263530.40%5.60%
其他471184879647.24%19.67%

turbine

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 15333 字节 (0.00% of total)
  • 文件总数: 7 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
21140628.57%74.39%
.py1168014.29%10.96%
.chromium1102114.29%6.66%
.sh297028.57%6.33%
.pb125614.29%1.67%
其他000.00%0.00%

ukey2

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 574280 字节 (0.01% of total)
  • 文件总数: 84 (0.03% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.java3540959841.67%71.32%
.cc116208113.10%10.81%
.proto6263947.14%4.60%
102367011.90%4.12%
.h5195505.95%3.40%
其他173298720.24%5.74%

unrar

Process for rolling new versions of UnRAR
UnRAR is released on the official
site
, but Chromium uses a GitHub
mirror
for tracking and fuzzing. This
means that at a high level, rolling a new version of UnRAR has the
following steps:

  • Update the GitHub repo
  • Wait a week for fuzzing on the new version
  • Update the chromium repo
    Updating the GitHub repo
    You’ll need a GitHub account to do this. Create a fork of the GitHub
    repo
    , and clone that fork to your
    local machine (replacing $username with your GitHub username):
git clone https://github.com/$username/unrar.git

目录摘要:

  • 总大小: 961131 字节 (0.01% of total)
  • 文件总数: 165 (0.06% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cpp8373149650.30%76.11%
.hpp6417622138.79%18.33%
.patch1280250.61%2.92%
.txt364651.82%0.67%
642403.64%0.44%
其他8146844.85%1.53%

updater

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 21970318 字节 (0.34% of total)
  • 文件总数: 41 (0.01% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.exe4219299849.76%99.82%
.py102616324.39%0.12%
.gn144872.44%0.02%
.sh10409724.39%0.02%
421699.76%0.01%
其他12341829.27%0.02%

usb_ids

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 570881 字节 (0.01% of total)
  • 文件总数: 4 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.ids156887225.00%99.65%
2152950.00%0.27%
.chromium148025.00%0.08%
其他000.00%0.00%

utf

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 1791245 字节 (0.03% of total)
  • 文件总数: 55 (0.02% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.txt116864431.82%94.15%
.patch4396567.27%2.21%
.c343952461.82%2.21%
6943610.91%0.53%
.3246213.64%0.26%
其他81156514.55%0.65%

v4l-utils

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 118619 字节 (0.00% of total)
  • 文件总数: 6 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
38666750.00%73.06%
.libv4l12694716.67%22.72%
.h1472516.67%3.98%
.chromium128016.67%0.24%
其他000.00%0.00%

vulkan-deps

Chromium Vulkan Dependencies
This meta-repo houses several interdependent Khronos Vulkan repositories:

目录摘要:

  • 总大小: 55476 字节 (0.00% of total)
  • 文件总数: 29 (0.01% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
143309748.28%59.66%
.txt1115603.45%20.84%
.chromium11499537.93%9.00%
.py148673.45%8.77%
.md17483.45%1.35%
其他12093.45%0.38%

vulkan-headers

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 28046641 字节 (0.43% of total)
  • 文件总数: 77 (0.03% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.hpp141383854818.18%49.34%
.json298458382.60%35.11%
.xml226849142.60%9.57%
.h29119402037.66%4.26%
.cppm12272151.30%0.81%
其他2925610637.66%0.91%

vulkan-loader

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 4688979 字节 (0.07% of total)
  • 文件总数: 127 (0.05% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.c21184714916.54%39.39%
.png99432507.09%20.12%
.svg99074687.09%19.35%
.md1635227612.60%7.51%
.h2423685318.90%5.05%
其他4840198337.80%8.57%

vulkan-tools

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 4319613 字节 (0.07% of total)
  • 文件总数: 120 (0.04% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.h20234178716.67%54.21%
.hpp14483580.83%10.38%
.icns23140021.67%7.27%
.py103014978.33%6.98%
.cpp42181433.33%5.05%
其他8369582669.17%16.11%

vulkan-utility-libraries

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 5844065 字节 (0.09% of total)
  • 文件总数: 64 (0.02% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cpp11340070917.19%58.19%
.hpp9141933414.06%24.29%
.h47734896.25%13.24%
.py1218616618.75%3.19%
.txt72700810.94%0.46%
其他213735932.81%0.64%

vulkan-validation-layers

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 27787221 字节 (0.43% of total)
  • 文件总数: 437 (0.16% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cpp1671463920538.22%52.68%
.h1411100333732.27%39.60%
.png128176252.75%2.94%
.py4479400610.07%2.86%
.md302820836.86%1.02%
其他432509659.84%0.90%

vulkan_memory_allocator

Vulkan Memory Allocator
Easy to integrate Vulkan memory allocation library.
**Documentation:**Browse online: Vulkan Memory Allocator (generated from Doxygen-style comments in include/vk_mem_alloc.h)
**License:**MIT. See LICENSE.txt
**Changelog:**See CHANGELOG.md
Product page:Vulkan Memory Allocator on GPUOpen

目录摘要:

  • 总大小: 3834362 字节 (0.06% of total)
  • 文件总数: 300 (0.11% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.html137135822545.67%35.42%
.h57761781.67%20.24%
.cpp64652862.00%12.13%
.exe13921920.33%10.23%
.js6031656620.00%8.26%
其他9152591530.33%13.72%

wayland

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 18780 字节 (0.00% of total)
  • 文件总数: 10 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.py2532820.00%28.37%
.gn1453410.00%24.14%
.gni1426510.00%22.71%
.h2183720.00%9.78%
.chromium1143510.00%7.64%
其他3138130.00%7.35%

wayland-protocols

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 246333 字节 (0.00% of total)
  • 文件总数: 45 (0.02% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.xml2023443444.44%95.17%
.gn162542.22%2.54%
22318948.89%1.29%
.chromium123002.22%0.93%
.md11562.22%0.06%
其他000.00%0.00%

webdriver

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 654180 字节 (0.01% of total)
  • 文件总数: 174 (0.06% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.py10454700359.77%83.62%
5565142.87%8.64%
.rst502524428.74%3.86%
.bazel2119881.15%1.83%
.bzl591472.87%1.40%
其他842844.60%0.65%

webgl

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 65438345 字节 (1.01% of total)
  • 文件总数: 10621 (3.83% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.html46331866542843.62%28.52%
.js375121419303.53%18.55%
.dae381512040.03%12.46%
.jar162200190.01%9.51%
.frag2437404799022.95%6.19%
其他31721621177429.87%24.77%

webgpu-cts

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 56823351 字节 (0.87% of total)
  • 文件总数: 1242 (0.45% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.bin110483374168.86%85.07%
.ts939709201475.60%12.48%
.json148912381.13%1.57%
.js111449540.89%0.26%
.md221112081.77%0.20%
其他14624652111.76%0.43%

webpagereplay

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 2271 字节 (0.00% of total)
  • 文件总数: 3 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
2154666.67%68.08%
.chromium172533.33%31.92%
其他000.00%0.00%

webrtc

WebRTC is a free, open software projectthat provides browsers and mobile
applications with Real-Time Communications (RTC) capabilities via simple APIs.
The WebRTC components have been optimized to best serve this purpose.
**Our mission:**To enable rich, high-quality RTC applications to be
developed for the browser, mobile platforms, and IoT devices, and allow them
all to communicate via a common set of protocols.
The WebRTC initiative is a project supported by Google, Mozilla and Opera,
amongst others.
Development
See [here][native-dev] for instructions on how to get started
developing with the native code.
Authoritative list of directories that contain the
native API header files.
More info

目录摘要:

  • 总大小: 92847048 字节 (1.43% of total)
  • 文件总数: 6198 (2.23% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc23832886581738.45%31.09%
.h21492146487934.67%23.12%
.pcm7137121700.11%14.77%
.rtp13123498160.21%13.30%
.wav858594580.13%6.31%
其他16381059490826.43%11.41%

webrtc_overrides

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 152181 字节 (0.00% of total)
  • 文件总数: 48 (0.02% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc207799741.67%51.25%
.h225840245.83%38.38%
.gn1133182.08%8.75%
418218.33%1.20%
.chromium16432.08%0.42%
其他000.00%0.00%

webxr_test_pages

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 13321254 字节 (0.20% of total)
  • 文件总数: 117 (0.04% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.js511283698243.59%96.36%
.html3342024228.21%3.15%
.py2142131.71%0.11%
8137236.84%0.10%
.css4108093.42%0.08%
其他192528516.24%0.19%

weston

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 423123 字节 (0.01% of total)
  • 文件总数: 11 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.h639804554.55%94.07%
.gn1153499.09%3.63%
.py161259.09%1.45%
.chromium121279.09%0.50%
2147718.18%0.35%
其他000.00%0.00%

widevine

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 13458 字节 (0.00% of total)
  • 文件总数: 10 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.gni1466910.00%34.69%
.gn1359810.00%26.74%
.h2330520.00%24.56%
.plist172410.00%5.38%
470840.00%5.26%
其他145410.00%3.37%

win_build_output

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 12065996 字节 (0.19% of total)
  • 文件总数: 349 (0.13% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.c171623150549.00%51.65%
.h61527238917.48%43.70%
.tlb4552549212.89%4.36%
.bin572966416.33%0.25%
.rc423041.15%0.02%
其他1146423.15%0.04%

win_virtual_display

Windows Virtual Display Driver
This directory contains a code and a visual studio solution for a driver which
instantiates and controls virtual displays on a host machine.
See: Virtual Displays for Automated Tests
and GSoC 2023 project Proposal
The client-side controller for this driver lives in:
//third_party/win_virtual_display/controller.

Prerequisites
Driver Development Kit

  1. Download the windows
    Enterprise Windows Driver Kit
    (Windows 11, version 22H2 required).
  2. Mount the ISO.
  3. (Optionally) Copy the contents of the mounted ISO to a directory on

目录摘要:

  • 总大小: 88250 字节 (0.00% of total)
  • 文件总数: 34 (0.01% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cpp53391014.71%38.42%
.h91622226.47%18.38%
.cc385198.82%9.65%
.vcxproj175952.94%8.61%
.py262605.88%7.09%
其他141574441.18%17.84%

wix

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 0 字节 (0.00% of total)
  • 文件总数: 0 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
其他11100.00%100.00%

wlcs

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 35947 字节 (0.00% of total)
  • 文件总数: 3 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
23513966.67%97.75%
.chromium180833.33%2.25%
其他000.00%0.00%

woff2

This is a README for the font compression reference code. There are several
compression related modules in this repository.
brotli/ contains reference code for the Brotli byte-level compression
algorithm. Note that it is licensed under the MIT license.
src/ contains the C++ code for compressing and decompressing fonts.
Build & Run
This document documents how to run the compression reference code. At this
writing, the code, while it is intended to produce a bytestream that can be
reconstructed into a working font, the reference decompression code is not
done, and the exact format of that bytestream is subject to change.
The build process depends on the g++ compiler.
Build
On a standard Unix-style environment:

目录摘要:

  • 总大小: 156956 字节 (0.00% of total)
  • 文件总数: 39 (0.01% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.cc1512545738.46%79.93%
.h152404038.46%15.32%
.md231755.13%2.02%
5299012.82%1.90%
.gn19642.56%0.61%
其他13302.56%0.21%

wpt_tools

W3C Web Platform Tests in Blink Web Tests
Design Doc: https://goo.gl/iXUaZd
This directory contains checked out and reduced code from web-platform-tests
(https://github.com/web-platform-tests/wpt/) required to run WPT tests as part
of Blink’s test infrastructure and some maintenance/configuration code.
For licensing, see README.chromium
**
Files in this directory (non third-party)
README.chromium

Parseable details on the project name, URL, license, etc.
README.md

目录摘要:

  • 总大小: 6149769 字节 (0.09% of total)
  • 文件总数: 452 (0.16% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.py338345264074.78%56.14%
.js1824846483.98%40.40%
.dtd1630950.22%1.03%
19487004.20%0.79%
.pem8398971.77%0.65%
其他686078915.04%0.99%

wtl

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 1421997 字节 (0.02% of total)
  • 文件总数: 27 (0.01% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.h20132010774.07%92.83%
.htm1963973.70%6.78%
.txt126193.70%0.18%
.patch114903.70%0.10%
.gn16533.70%0.05%
其他373111.11%0.05%

wuffs

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 2346049 字节 (0.04% of total)
  • 文件总数: 16 (0.01% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.c2231861112.50%98.83%
31179718.75%0.50%
.md6893137.50%0.38%
.gn136116.25%0.15%
.sh116656.25%0.07%
其他3143418.75%0.06%

x11proto

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 62840 字节 (0.00% of total)
  • 文件总数: 4 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.h15982725.00%95.21%
2219450.00%3.49%
.chromium181925.00%1.30%
其他000.00%0.00%

xcbproto

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 854364 字节 (0.01% of total)
  • 文件总数: 61 (0.02% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.xml3268411352.46%80.07%
.py77750811.48%9.07%
.diff1275241.64%3.22%
102514416.39%2.94%
.txt1177281.64%2.07%
其他102234716.39%2.62%

xdg-utils

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 0 字节 (0.00% of total)
  • 文件总数: 0 (0.00% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
其他11100.00%100.00%

xnnpack

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 154536743 字节 (2.38% of total)
  • 文件总数: 11598 (4.18% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.c982612608531584.72%81.59%
.cc287105570032.47%6.83%
.in72568093746.25%4.41%
.S32741396662.82%2.68%
.h11722114321.01%1.43%
其他31647339532.72%3.06%

zlib

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 1900998 字节 (0.03% of total)
  • 文件总数: 110 (0.04% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.h3287767129.09%46.17%
.c2967551926.36%35.53%
.cc101687629.09%8.88%
.patch179879315.45%5.20%
.cmakein2175931.82%0.93%
其他206266018.18%3.30%

zstd

未找到 README.md 或 README.md 为空

目录摘要:

  • 总大小: 6162341 字节 (0.09% of total)
  • 文件总数: 384 (0.14% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.c95318955424.74%51.76%
.h88101285922.92%16.44%
.png126991643.12%11.35%
.md362388109.38%3.88%
.inl22153660.52%3.49%
其他15180658839.32%13.09%

zxcvbn-cpp

zxcvbn-cpp
This is a C++ port of zxcvbn,
an advanced password strength estimation library. For more details on how
zxcvbn works and its advantages, check out
the blog post.
This port is a direct translation of the original CoffeeScript
source. This allows this port to easily stay in sync with the original
source. Additionally, this port uses the same exact test scripts from
the original with the help of emscripten.
This port also provides C, Python, and JS bindings from the same
codebase.
Python Bindings
Build

目录摘要:

  • 总大小: 250020 字节 (0.00% of total)
  • 文件总数: 42 (0.02% of total)

文件扩展名摘要 (前5):

扩展名文件数总大小 (字节)文件数占比大小占比
.diff1311083130.95%44.33%
.cpp67834414.29%31.34%
.py52706711.90%10.83%
.hpp81864519.05%7.46%
.coffee143922.38%1.76%
其他91074121.43%4.30%
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值