1. 16 Sep, 2016 1 commit
    • Dan Rubel's avatar
      Refactor flutter command execution (#5892) · 18212382
      Dan Rubel authored
      * refactor _run to runCmd
      
      * replace requiresProjectRoot getter with call to commandValidator
      
      * replace requiresDevice getter with call to findTargetDevice
      
      * trace command requires a debug connection, not a device
      
      * inline androidOnly getter
      
      * rename command methods to verifyTheRunCmd and runCmd
      
      * move common verification into BuildSubCommand
      
      * rename deviceForCommand to device
      
      * rename methods to verifyThenRunCommand and runCommand
      18212382
  2. 25 Aug, 2016 1 commit
    • Chris Bracken's avatar
      Support a configurable build directory (#5601) · b5f763b4
      Chris Bracken authored
      This change adds a top-level getBuildDirectory func and funcs for
      android, aot, asset, ios build products.
      
      Developers may now add a "build-dir" mapping to their
      ~/.flutter_settings (JSON format) config file. Output directory is
      relative to the main flutter application directory.
      
      This change also changes the default build directory for iOS builds to a
      subdirectory of the configured build directory, 'build/ios' by default.
      b5f763b4
  3. 24 Aug, 2016 1 commit
  4. 17 Aug, 2016 1 commit
  5. 11 Aug, 2016 1 commit
  6. 09 Aug, 2016 1 commit
  7. 14 Jun, 2016 1 commit
    • Ian Hickson's avatar
      Lock flutter tool while updating artifacts (#4476) · f92f71fe
      Ian Hickson authored
      This prevents multiple simultaneous runs of the analyzer from stomping
      over each other (e.g. multiple runs of 'update-packages'). Certain
      long-lived commands (like analyze, run, logs) are exempted once they've
      done enough work to be safe from most stomping action.
      
      This still doesn't make us entirely safe from craziness, e.g. if you're
      half way through an 'update-packages' run and you call 'git pull', who
      knows what state you'll end up in. But there's only so much one can do.
      
      Fixes https://github.com/flutter/flutter/issues/2762
      f92f71fe
  8. 07 Jun, 2016 1 commit
    • Devon Carew's avatar
      add a restart command to the daemon protocol (#4385) · 3ba17136
      Devon Carew authored
      * refactor the --resident run option into a separate file
      
      * update daemon to run --resident apps
      
      * re-plumbing daemon start
      
      * send app logs
      
      * update tests
      
      * review changes
      
      * fix test runner
      
      * remove PackageMap.createGlobalInstance; rely on the ctor
      
      * review comments
      3ba17136
  9. 19 May, 2016 1 commit
  10. 13 May, 2016 1 commit
    • Devon Carew's avatar
      Consolidate observatory code (#3892) · 40c0d6ea
      Devon Carew authored
      * rename service_protocol.dart to protocol_discovery.dart
      
      * add a wrapper around the obs. protocol
      
      * use json-rpc in run
      
      * consolidate obs. code; implement flutter run --benchmark
      
      * review comments
      40c0d6ea
  11. 10 May, 2016 1 commit
  12. 28 Apr, 2016 1 commit
  13. 27 Apr, 2016 1 commit
    • Devon Carew's avatar
      Flutter run (#3553) · b0dca796
      Devon Carew authored
      * rework flutter run
      
      * fix npe with --debug-port
      
      * connect to obs and exit when that conneciton closes
      
      * update todos
      b0dca796
  14. 19 Apr, 2016 1 commit
  15. 04 Apr, 2016 1 commit
  16. 21 Mar, 2016 1 commit
  17. 14 Mar, 2016 2 commits
  18. 11 Mar, 2016 1 commit
  19. 26 Feb, 2016 1 commit
  20. 24 Feb, 2016 1 commit
  21. 21 Feb, 2016 1 commit
  22. 17 Feb, 2016 1 commit
  23. 13 Feb, 2016 1 commit
  24. 10 Feb, 2016 1 commit
  25. 29 Jan, 2016 1 commit
  26. 28 Jan, 2016 2 commits
  27. 27 Jan, 2016 1 commit
    • Jason Simmons's avatar
      Allow collection of trace files when adbd is not running as root · 58ba5129
      Jason Simmons authored
      Also fix a bug where the trace command may capture the wrong file
      if multiple trace file paths are in the Android log buffer.
      
      Previously we found a lower bound timestamp for the trace path log
      by running the date command on the device and parsing the result on
      the host.  This could yield an inaccurate result if the device and
      host are using different time zones.
      
      The command will now obtain the most recent timestamp in the device's
      time format by running logcat.
      58ba5129
  28. 22 Jan, 2016 1 commit
  29. 03 Dec, 2015 1 commit
  30. 29 Nov, 2015 1 commit
    • Adam Barth's avatar
      Clean up code organization in flutter_tools · 9662d49e
      Adam Barth authored
      1) Moved basic utility code into base/ directory to make it clear which code
         doesn't depend on Flutter-specific knowldge.
      2) Move the CommandRunner subclasses into a runner/ directory because these
         aren't commands themselves.
      9662d49e
  31. 10 Nov, 2015 1 commit
  32. 29 Oct, 2015 1 commit
  33. 17 Oct, 2015 1 commit
  34. 12 Oct, 2015 2 commits
    • Adam Barth's avatar
      Teach sky_tools about prebuilt artifacts · bdd20661
      Adam Barth authored
      This patch makes `flutter start` work without a clone of the engine git
      repository. Making this work pulled a relatively large refactor of how the
      commands interact with application packages and devices. Now commands that want
      to interact with application packages or devices inherit from a common base
      class that holds stores of those objects as members.
      
      In production, the commands download and connect to devices based on the build
      configuration stored on the FlutterCommandRunner. In testing, these fields are
      used to mock out the real application package and devices.
      bdd20661
    • Ian Fischer's avatar
      IOSSimulator implementation. · a6a3f212
      Ian Fischer authored
      Also fixes some minor bugs with iOS and Android interactions.
      a6a3f212
  35. 10 Oct, 2015 1 commit
  36. 06 Oct, 2015 1 commit
  37. 01 Oct, 2015 1 commit