1. 13 Jan, 2023 1 commit
  2. 26 Jan, 2022 1 commit
  3. 14 Jan, 2022 1 commit
  4. 04 Jan, 2022 2 commits
    • Zachary Anderson's avatar
      Revert "FFI plugins (#94101)" (#96122) · 65c6e882
      Zachary Anderson authored
      This reverts commit 5257f029.
      65c6e882
    • Daco Harkes's avatar
      FFI plugins (#94101) · 5257f029
      Daco Harkes authored
      * Building shared C source code as part of the native build for platforms Android, iOS, Linux desktop, MacOS desktop, and Windows desktop.
      * Sample code doing a synchronous FFI call.
      * Sample code doing a long running synchronous FFI call on a helper isolate.
      * Use of `package:ffigen` to generate the bindings.
      5257f029
  5. 28 Jun, 2021 1 commit
  6. 12 Feb, 2021 1 commit
  7. 01 Sep, 2020 1 commit
    • stuartmorgan's avatar
      Put the unbundled Linux executable in a subdirectory (#64992) · bcfad206
      stuartmorgan authored
      People frequently assume they can run the executable they find at the
      top level of the build directory, and don't understand why they get
      resource errors from the engine. To avoid that, this puts the unbundled
      copy of the executable in a subdirectory with a name that should warn
      people away from running it.
      
      Fixes #64963
      bcfad206
  8. 29 Jul, 2020 1 commit
  9. 23 Jun, 2020 1 commit
  10. 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
  11. 13 Jun, 2020 1 commit
  12. 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
  13. 29 May, 2020 1 commit
  14. 28 May, 2020 1 commit
  15. 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
  16. 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