1. 07 Jan, 2022 1 commit
    • Greg Spencer's avatar
      Update platform shims in dev/manual_tests (#94616) · 3750beac
      Greg Spencer authored
      Updates the platform shims in dev/manual_tests so that Windows and Linux can be built. I had to update the Windows shims, because I was unable to build a Windows app there.
      
      Also updates the analyze.dart script to report all license issues simultaneously instead of just dying after the first failure.
      
      The only substantive code changes are in dev/bots/analyze.dart and dev/bots/test/analyze_test.dart
      3750beac
  2. 18 Mar, 2021 1 commit
  3. 14 Feb, 2021 1 commit
  4. 03 Feb, 2021 1 commit
  5. 28 Sep, 2020 1 commit
  6. 05 Aug, 2020 1 commit
  7. 23 Jun, 2020 1 commit
  8. 16 Jun, 2020 1 commit
    • stuartmorgan's avatar
      Switch Linux to the GTK embedding (#59287) · 61c198e7
      stuartmorgan authored
      Updates the tooling to use the GTK embedding, rather than the GLFW embedding:
      - Adds new requirements to `doctor`
      - Updates the app and plugin templates to make GTK-based runners and plugins
      - Stops downloading and installing the GLFW artifacts
      
      Final part of #54860, other than cleanup.
      61c198e7
  9. 11 Jun, 2020 1 commit
    • Marcus Tomlinson's avatar
      Remove use of BundleUtilities in Linux build (#59080) · 1fe0f226
      Marcus Tomlinson authored
      * Explicitly install the Flutter library
      
      * Publish ${FLUTTER_LIBRARY} to parent scope
      
      * Bundle plugin libraries
      
      * Bundle <plugin_name>_bundled_libraries too
      
      * BUNDLED_LIBRARIES -> PLUGIN_BUNDLED_LIBRARIES
      
      * Update Linux plugin test
      
      * Address review comments
      1fe0f226
  10. 27 May, 2020 1 commit
    • stuartmorgan's avatar
      Fix Linux plugin template build visibility (#58069) · 27e652c8
      stuartmorgan authored
      The CMake plugin build wasn't setting visibility to hidden by default,
      which meant that plugins exported everything by default. This would make
      bad interactions between plugins much more likely; only the intended API
      should be exported by the shared library.
      27e652c8
  11. 20 May, 2020 1 commit
  12. 18 May, 2020 1 commit
    • stuartmorgan's avatar
      Remove TRANSFORM from Linux CMake files (#57515) · b0751687
      stuartmorgan authored
      The Linux CMakeLists.txt are intended to be compatible with 3.10, but
      accedintally used a list construct that wasn't added until 3.12. This
      adds a custom replacement function.
      
      This makes the build compatible with 3.10 as originally intended.
      b0751687
  13. 16 May, 2020 1 commit
    • stuartmorgan's avatar
      Switch to CMake for Linux desktop (#57238) · 8abf0a6d
      stuartmorgan authored
      Updates the Linux templates to use CMake+ninja, rather than Make, and updates the tooling to generate CMake support files rather than Make support files, and to drive the build using cmake and ninja.
      
      Also updates doctor to check for cmake and ninja in place of make.
      
      Note: While we could use CMake+Make rather than CMake+ninja, in testing ninja handled the tool_backend.sh call much better, calling it only once rather than once per dependent target. While it does add another dependency that people are less likely to already have, it's widely available in package managers, as well as being available as a direct download. Longer term, we could potentially switch from ninja to Make if it's an issue.
      
      Fixes #52751
      8abf0a6d