blob: c974c61b161b3ad9bd438783e2fc94a9a50ac3bb [file] [log] [blame]
# Copyright 2018 The Fuchsia Authors. All rights reserved.
# 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("settings") {
package_name = "lib.settings"
# TODO(fxb/57840): This package has transitive dependencies.
# Please explicitly define its transitive dependencies as direct dependencies then remove this exemption
disable_strict_deps_check = true
sources = [
"debug.dart",
"device_info.dart",
"timezone_picker.dart",
"widgets.dart",
]
deps = [
"//sdk/fidl/fuchsia.devicesettings",
"//src/experiences/settings/lib/widgets",
"//third_party/dart-pkg/git/flutter/packages/flutter",
"//topaz/public/dart/fuchsia_logger",
"//topaz/public/dart/fuchsia_services",
]
}