BUILD.gn 572 字节
Newer Older
D
Dan Field 已提交
1 2 3 4 5 6 7 8
# Copyright 2013 The Flutter 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("//third_party/dart/utils/application_snapshot.gni")

application_snapshot("const_finder") {
  main_dart = "bin/main.dart"
9
  dot_packages = ".dart_tool/package_config.json"
D
Dan Field 已提交
10 11 12 13 14 15 16 17 18 19 20 21 22 23

  training_args = [ "--help" ]

  inputs = [
    "bin/main.dart",
    "lib/const_finder.dart",
    ".packages",
    ".dart_tool/package_config.json",
  ]

  deps = [
    "//flutter/flutter_frontend_server:frontend_server",
  ]
}