Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: flutter/engine
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: ef9ceed
Choose a base ref
...
head repository: flutter/engine
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 92be04f
Choose a head ref
  • 3 commits
  • 3 files changed
  • 3 contributors

Commits on Sep 22, 2023

  1. Roll Skia from f346a813ffd4 to 8beae2053939 (5 revisions) (#46200)

    skia-flutter-autoroll authored Sep 22, 2023
    Configuration menu
    Copy the full SHA
    890c4db View commit details
    Browse the repository at this point in the history
  2. Enable checking headers with Clang Tidy. (#46009)

    Closes flutter/flutter#134969.
    
    Turns out this was literally 1 line. Tested locally:
    
    ```shell
    dart tools/clang_tidy/bin/main.dart \
      --target-variant host_debug_unopt_arm64 \
      --lint-all \
      --checks="-*,llvm-header-guard"
    ```
    
    <details>
    
    <summary>Local Test Results</summary>
    
    Here is a tiny snippet showing this is indeed doing something:
    
    ```txt
    [0:02] Jobs:   0% done,   0/1033 completed,  7 in progress, 1019 pending,   7 failed.    
    ❌ Failures for clang-tidy on /Users/matanl/Developer/engine/src/flutter/display_list/dl_blend_mode.cc:
    ../../flutter/display_list/dl_blend_mode.h:5:9: error: header guard does not follow preferred style [llvm-header-guard,-warnings-as-errors]
        5 | #ifndef FLUTTER_DISPLAY_LIST_DL_BLEND_MODE_H_
          |         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
          |         USERS_MATANL_DEVELOPER_ENGINE_SRC_OUT_HOST_DEBUG_UNOPT_ARM64_______FLUTTER_DISPLAY_LIST_DL_BLEND_MODE_H
        6 | #define FLUTTER_DISPLAY_LIST_DL_BLEND_MODE_H_
          |         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
          |         USERS_MATANL_DEVELOPER_ENGINE_SRC_OUT_HOST_DEBUG_UNOPT_ARM64_______FLUTTER_DISPLAY_LIST_DL_BLEND_MODE_H
    ^C
    ```
    
    </details>
    
    This will likely show failures on CI, so I'm following [our published
    directions](https://github.com/flutter/flutter/wiki/Engine-Clang-Tidy-Linter#clang-tidy-fix-on-ci)
    to get CI to tell me what needs to get fixed, and won't submit until
    there are no warnings at HEAD. As such, not seeking LGTM yet (draft).
    
    ---------
    
    Co-authored-by: Zachary Anderson <[email protected]>
    matanlurey and zanderso authored Sep 22, 2023
    Configuration menu
    Copy the full SHA
    017302b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    92be04f View commit details
    Browse the repository at this point in the history
Loading