Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add minimal README.
  • Loading branch information
matanlurey committed Oct 10, 2023
commit 3e48a3a10dba8e00fb66f146415acca5881fdef4
1 change: 1 addition & 0 deletions third_party/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
# Include the .gitignore file itself and .clang-tidy.
!.gitignore
!.clang-tidy
!README.md

# Include folders that have hand-written code (not DEPS).
!accessibility/
Expand Down
24 changes: 24 additions & 0 deletions third_party/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# `flutter/third_party`

This directory contains third-party code that is a combination of:

- Code that is vendored into the Flutter repository, from an external source.
For example, we might have `third_party/glfw`, which contains the GLFW
library, vendored from an external repository.

> 💡 **TIP**: See [`DEPS`](../DEPS) for where these sources are declared.

- Code that originates from another repository, but is copied (sometimes with
alterations) into the Flutter repository. For an example, see
[`third_party/spring_animation`](spring_animation/README.md).

- Code that is licensed separately from the rest of the Flutter repository.
For example, see [`third_party/txt`](txt/).

When adding a new _externally_ sourced third-party library, update `.gitignore`:

```diff
# Ignores all third_party/ directories except for the ones we want to track.

+ !{folder_name}/
```