BUILD.gn 623 字节
Newer Older
1 2 3 4
# Copyright 2015 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

5
source_set("assets") {
6
  sources = [
7 8 9
    "asset_manager.cc",
    "asset_manager.h",
    "asset_resolver.h",
10 11
    "directory_asset_bundle.cc",
    "directory_asset_bundle.h",
12 13
    "zip_asset_store.cc",
    "zip_asset_store.h",
14 15 16
  ]

  deps = [
17 18
    "$flutter_root/common",
    "$flutter_root/fml",
19
    "$flutter_root/glue",
20
    "//garnet/public/lib/fxl",
21 22 23 24
  ]

  public_deps = [
    "//third_party/zlib:minizip",
25
  ]
26

27
  public_configs = [ "$flutter_root:config" ]
28
}