BUILD.gn 1021 Bytes
Newer Older
Ian Hickson's avatar
Ian Hickson committed
1
# Copyright 2014 The Flutter Authors. All rights reserved.
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

import("//build/dart/dart_library.gni")

dart_library("flutter_driver") {
  package_name = "flutter_driver"

  # Can be left empty as analysis is disabled.
  sources = []

  disable_analysis = true

  deps = [
    "//third_party/dart-pkg/git/flutter/packages/flutter",
    "//third_party/dart-pkg/git/flutter/packages/flutter_test",
18
    "//third_party/dart-pkg/git/flutter/packages/fuchsia_remote_debug_protocol",
19 20
    "//third_party/dart-pkg/pub/file",
    "//third_party/dart-pkg/pub/json_rpc_2",
21
    "//third_party/dart-pkg/pub/matcher",
22 23
    "//third_party/dart-pkg/pub/meta",
    "//third_party/dart-pkg/pub/path",
24
    "//third_party/dart-pkg/pub/vm_service_client",
25
    "//third_party/dart-pkg/pub/web_socket_channel",
26
    "//third_party/dart-pkg/pub/webdriver",
27 28 29
  ]

  if (is_fuchsia) {
30
    deps += [ "//topaz/runtime/sky_engine:sky_engine_dart" ]
31 32
  }
}