1. 11 8月, 2016 4 次提交
  2. 10 8月, 2016 1 次提交
  3. 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
  4. 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
  5. 19 2月, 2016 1 次提交
  6. 18 11月, 2015 1 次提交
  7. 25 7月, 2015 1 次提交
  8. 24 7月, 2015 1 次提交
  9. 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
  10. 21 7月, 2015 1 次提交
  11. 17 7月, 2015 3 次提交
  12. 14 7月, 2015 2 次提交
  13. 10 7月, 2015 1 次提交
  14. 09 7月, 2015 1 次提交
  15. 07 7月, 2015 1 次提交
  16. 01 7月, 2015 1 次提交
  17. 27 6月, 2015 2 次提交
  18. 24 6月, 2015 1 次提交
  19. 23 6月, 2015 1 次提交
  20. 16 6月, 2015 2 次提交
  21. 13 6月, 2015 2 次提交
  22. 12 6月, 2015 1 次提交
  23. 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
  24. 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
  25. 12 3月, 2015 1 次提交
  26. 27 2月, 2015 1 次提交
  27. 31 1月, 2015 1 次提交
  28. 13 12月, 2014 1 次提交
  29. 12 12月, 2014 2 次提交
  30. 06 12月, 2014 1 次提交
    • E
      Fix the sky build instructions · c755577d
      Eric Seidel 提交于
      Sky can't really build on its own.  We were previously
      using the 'sky' build target for this but it didn't
      fully anticipate all of our dependencies.  The most
      recent break was when James removed /mojo/shell
      from mojo.
      
      Instead of sky listing out each and every service
      which it depends on, we should just get used to
      building root like other mojo developers.
      
      Thankfully there is already a helpful tool
      for this called mojob.py.  I've updated our
      readme to reflect this, and removed the mojo
      dependency on the sky build group.
      
      The purpose of the sky build group is to expose
      all of the sky build targets up to the root level
      BUILD.gn (which only depends on /sky), not to
      be an independently buildable target.
      
      R=jamesr@chromium.org, jamesr
      BUG=
      
      Review URL: https://codereview.chromium.org/764023007
      c755577d