1. 24 9月, 2016 1 次提交
    • C
      Move shell to //flutter and split shell/BUILD.gn into smaller pieces for each subcomponent. (#3053) · 9eb446e0
      Chinmay Garde 提交于
      * Namespaces have been updated to reflect the move from //flutter/sky/shell to //flutter/shell.
      * shell/BUILD.gn file has been split into smaller GN files for each subcomponent of the shell (common, GPU, diagnostic, testing).
      * GN dependencies have been rewritten to stop exposing common shell dependencies as public. Duplicates have also been removed.
      * GPU subcomponent has been updated make it more suitable for Vulkan integration.
      * The GLFW backend has been resurrected.
      9eb446e0
  2. 16 8月, 2016 1 次提交
  3. 15 8月, 2016 1 次提交
  4. 13 8月, 2016 3 次提交
  5. 12 8月, 2016 1 次提交
  6. 11 8月, 2016 4 次提交
  7. 10 8月, 2016 1 次提交
  8. 19 5月, 2016 1 次提交
    • C
      Create an Xcode project template for dynamic service creation. (#2695) · 1db1d150
      Chinmay Garde 提交于
      * Create an Xcode project template for dynamic service creation.
      
      The `create_native_service_sdk.py` will be run on the buildbot similar
      to `create_ios_sdk.py`. This will create an Xcode project with both arm
      and x64 assets that the user can use to fill in the service
      implementation.
      
      * Add the complete_static_lib property to sdk_lib_archive in
      dynamic/BUILD.gn
      1db1d150
  9. 10 3月, 2016 1 次提交
    • C
      Allow PlatformMacMain to be called multiple times · d1376fc9
      Chinmay Garde 提交于
      It is called each time the embedder initializes a Flutter view controller. The Mac shell (which does not have a view controller), calls it before NSApplicationMain.
      
      Common items like the base::AtExitManager and the platform message loop are stored in `EmbedderState`
      d1376fc9
  10. 19 2月, 2016 1 次提交
  11. 18 11月, 2015 1 次提交
  12. 25 7月, 2015 1 次提交
  13. 24 7月, 2015 1 次提交
  14. 23 7月, 2015 1 次提交
    • A
      Use the build system to build artifacts for distribution · 928146ea
      Adam Barth 提交于
      Instead of using a collection of Python scripts to generate the artifacts we
      want to distribute from this repository, we should just use the build system.
      This CL adds a top-level |dist| target that creates these artifacts in a "dist"
      directory of the build output.
      928146ea
  15. 21 7月, 2015 1 次提交
  16. 17 7月, 2015 3 次提交
  17. 14 7月, 2015 2 次提交
  18. 10 7月, 2015 1 次提交
  19. 09 7月, 2015 1 次提交
  20. 07 7月, 2015 1 次提交
  21. 01 7月, 2015 1 次提交
  22. 27 6月, 2015 2 次提交
  23. 24 6月, 2015 1 次提交
  24. 23 6月, 2015 1 次提交
  25. 16 6月, 2015 2 次提交
  26. 13 6月, 2015 2 次提交
  27. 12 6月, 2015 1 次提交
  28. 02 6月, 2015 1 次提交
    • P
      Pull Sky debugger up to services/debugger. · 3a7e97e6
      Przemyslaw Pietrzkiewicz 提交于
      Sky debugger is a native mojo app that puts up an http server and talks
      to other mojo apps in response to http requests, allowing to
      interactively start/stop tracing, profile, etc.
      
      This is generally useful also when one does not run mojo_shell through
      skydb, hence this patch pulls the debugger into services/debugger.
      
      We can then add plumbing for running with the debugger in devtools.
      
      Bug: domokit/devtools/#4.
      
      R=abarth@chromium.org
      
      Review URL: https://codereview.chromium.org/1151573010
      3a7e97e6
  29. 19 5月, 2015 1 次提交
    • J
      Rationalize Dart mojo and sky package structure. · b017dfd9
      John McCutchan 提交于
      NOTE: This CL appears far larger than it actually is for two reasons:
      
      1) Many files were moved around to use the Dart package directory structure.
      2) Many .dart files had to have import paths updated.
      
      - Organize mojo/public/dart so that it uses standard Dart package layout
      - Organize mojo/dart/apptest so that it uses a standard Dart package layout
      - Organize sky/sdk so that it uses a standard Dart package layout
      - Create a mojo/testing package (used by unittests)
      - Introduce the 'dart_pkg' gn rule which populates gen/Config/dart-pkg
      - All internally vended Dart packages must have a corresponding dart_pkg rule
      - It is now possible to use dependency_overrides: in pubspec.yaml to mix internal and external package dependencies (enables analyzer, editor, webstorm usage for internal developers).
      - Package root for dart content handler ends with "packages/"
      - Imports of mojo package uris no longer need the "public/dart"
      - mojo/public/tools/dart_package.py is a clone of mojo/public/tools/gn/zip.py
      - Sky tests no longer run 'deploy_sdk' script.
      
      R=eseidel@chromium.org
      
      Review URL: https://codereview.chromium.org/1132063007
      b017dfd9