| # Ignore symlinks created by Bazel. |
| # |
| # A glob is used to capture these and any created in subdirectories that also |
| # define WORKSPACE.bazel files. |
| # |
| # bazel-workstation: |
| # Bazel execution root, contains symlinks to externally loaded dependencies. |
| # |
| # bazel-out: |
| # Bazel output path, contains directories for multiple build configurations. |
| # |
| # bazel-bin: |
| # Symlink to most recently used output-build-configuration |
| # equivalent to the most recently used configuration output folder in GN. |
| # |
| # bazel-testlogs: |
| # Test logs |
| # |
| bazel-* |
| |
| # Files created by IntelliJ IDE. |
| .idea |
| fortune-teller.iml |
| |
| # Files created by VSCode. |
| .vscode/settings.json |
| |
| # Files created by CCLS (C++ language server). |
| .ccls-cache |
| |
| # CIPD files. |
| .cipd |
| |
| # Files generated by bootstrap.sh. |
| tools/.versions/ |
| .cipd_client |
| |
| # Tools that are automatically generated. |
| tools/bazel |
| |
| # Flutter Engine checkout for experimenting with Flutter Engine changes. |
| third_party/engine |