1. 06 Aug, 2018 1 commit
  2. 02 Aug, 2018 3 commits
  3. 27 Jul, 2018 1 commit
  4. 23 Jul, 2018 1 commit
  5. 20 Jul, 2018 1 commit
  6. 16 Jul, 2018 2 commits
  7. 12 Jul, 2018 3 commits
  8. 11 Jul, 2018 2 commits
  9. 27 Jun, 2018 1 commit
  10. 26 Jun, 2018 1 commit
  11. 25 Jun, 2018 1 commit
    • Florian Loitsch's avatar
      Flutter attach (#18677) · d248725e
      Florian Loitsch authored
      Add `flutter attach` command.
      
      This command allows Flutter to connect to applications that haven't been launched using `flutter run`.
      d248725e
  12. 15 Jun, 2018 2 commits
  13. 14 Jun, 2018 1 commit
  14. 13 Jun, 2018 1 commit
    • Chris Bracken's avatar
      Revert elimination of Dart 1 (#18460) · 2ae48845
      Chris Bracken authored
      fuchsia_tester.dart still assumes Dart 1. Previously, it ran tests directly
      from source, flutter_platform.dart automatically runs a kernel compile when
      operating in Dart 2 mode, but this assumes a functional Dart SDK is available
      in the artifacts directly, and fuchsia_tester.dart mocks out the artifacts
      directory with an empty temp dir.
      
      Remaining work is:
      1. Get the frontend server building as a dependency on Fuchsia.
      2. Patch fuchsia_tester.dart to use a valid Dart SDK and frontend server.
      
      This also reverts migration to Dart 2 typedef syntax.
      
      This reverts commit 6c56bb24. (#18362)
      This reverts commit 3daebd05. (#18316)
      2ae48845
  15. 11 Jun, 2018 1 commit
    • Greg Spencer's avatar
      Update typedef syntax to use Function notation and turn on lint for old notation. (#18362) · 6c56bb24
      Greg Spencer authored
      Now that Dart 1 is turned off, reapplying my change to turn on the prefer_generic_function_type_aliases analysis option, and fix all the typedefs to Dart 2 preferred syntax.
      
      Also eliminated the unused analysis_options_repo.yaml file and turned on public_member_api_docs in analysys_options.yaml.
      
      No logic changes, just changing the typedef syntax for all typedefs, and updating analysis options.
      6c56bb24
  16. 05 Jun, 2018 1 commit
  17. 04 Jun, 2018 2 commits
  18. 30 May, 2018 2 commits
  19. 04 May, 2018 2 commits
  20. 12 Mar, 2018 1 commit
    • Alexander Aprelev's avatar
      Roll engine to b6df7a637498ca9beda1fa9cd7210e3202ea599f. (#15444) · 2f8474f9
      Alexander Aprelev authored
      * Roll engine to b6df7a637498ca9beda1fa9cd7210e3202ea599f.
      
      Changes since last roll:
      ```
      b6df7a637 Roll dart to 290c576264faa096a0b3206c71b2435309d9f904. (#4771)
      a6764dbd5 Add sources for Fuchsia target. (#4763)
      2d5900615 [fuchsia] Remove unused header file. (#4769)
      9717063b7 Revert "Roll dart to c080951d45e79cd25df98036c4be835b284a269c. (#4767)" (#4768)
      9a9814312 Roll dart to c080951d45e79cd25df98036c4be835b284a269c. (#4767)
      e74e8b35c [async] Update includes of async headers to new path (#4760)
      e2c4b2760 Use Dart 2 camel case constants in the engine Dart libraries (#4766)
      9c1e48434 Updates for Fuchsia roll. (#4765)
      14c940e27 Switch from fxl::Mutex to std::mutex (#4764)
      debf82c0b Roll Garnet (#4759)
      5bffdefbb Use weak pointers to the accesibility bridge from objects vended to the UIKit accessibility framework. (#4761)
      ```
      2f8474f9
  21. 07 Mar, 2018 1 commit
    • Siva's avatar
      Fix some of the generic types specified to avoid runtime errors in --preview-dart-2 (#15166) · 9c38d6bb
      Siva authored
      * Fix some of the generic types specified to avoid runtime errors in
      --preview-dart-2
      
        type 'YamlMap' is not a subtype of type 'Map<String, dynamic>' where
          YamlMap is from package:yaml/src/yaml_node.dart
          Map is from dart:core
          String is from dart:core
      
        package:flutter_devicelab/framework/manifest.dart 17:36       loadTaskManifest
        test/manifest_test.dart 14:33                                 main.<fn>.<fn>
        package:test/src/backend/declarer.dart 161:27                 Declarer.test.<fn>.<fn>.<fn>
      
      * Add dynamic generic types to keep the analyer happy.
      
      * Address code review comment.
      9c38d6bb
  22. 05 Feb, 2018 1 commit
  23. 18 Dec, 2017 2 commits
    • Chris Bracken's avatar
      Use idevice_id for devicelab iOS device lookups (#13652) · b771294c
      Chris Bracken authored
      This replaces the use of ideviceinfo (whose output was then filtered for
      device IDs) with an invocation idevice_id -l, which returns the list
      directly, one per line.
      b771294c
    • Chris Bracken's avatar
      Use idevice_id for devicelab iOS device listing (#13624) · c7ea97f2
      Chris Bracken authored
      This patch migrates iOS device listing from using Xcode instruments to
      using the libimobiledevice tools idevice_id and ideviceinfo.
      
      ideviceinfo was previously incompatible with iOS 11 physical devices;
      this has now been fixed.
      
      In 58fe8237 flutter_tools migrated from
      libimobiledevice-based device listing on iOS to using Xcode instruments
      to work around the lack of support for iOS 11. Using instruments entails
      several downsides, including a significantly higher performance hit, and
      leaking hung DTServiceHub processes in certain cases when a simulator is
      running, necessitating workarounds in which we watched for, and cleaned
      up leaked DTServiceHub processes. This patch returns reverts the move to
      instruments now that it's no longer necessary.
      
      This reverts commit 58fe8237.
      c7ea97f2
  24. 07 Dec, 2017 4 commits
  25. 30 Nov, 2017 1 commit
    • Vyacheslav Egorov's avatar
      Change few devicelab tests to support testing against local engine (#13268) · 41a5e5d8
      Vyacheslav Egorov authored
      * Change some of the dev/devicelab tests to support testing against local engine.
      
      We can already configure flutter tools to use local engine by setting
      FLUTTER_ENGINE environment variable. However when this variable is set
      this also requires setting --local-engine to specify which flavor of
      engine to use.
      
      This change changes tests in dev/devicelab to pass a sensible default for
      --local-engine, e.g. when testing hot reload on Android we pass android_debug
      and when testing release AOT build for IOS we pass ios_release.
      
      * Fix analysis issues
      
      * Update utils.dart
      41a5e5d8
  26. 17 Nov, 2017 1 commit
    • Greg Spencer's avatar
      Fix spelling errors in all the dartdocs. (#13061) · 0259be90
      Greg Spencer authored
      I got tired of drive-by spelling fixes, so I figured I'd just take care of them all at once.
      
      This only corrects errors in the dartdocs, not regular comments, and I skipped any sample code in the dartdocs. It doesn't touch any identifiers in the dartdocs either. No code changes, just comments.
      0259be90