mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
scopes.h -> scope.h. TBR=abarth@chromium.org Review URL: https://codereview.chromium.org/1177123005.
29 lines
569 B
Plaintext
29 lines
569 B
Plaintext
# Copyright 2014 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.
|
|
|
|
executable("packager") {
|
|
output_name = "sky_packager"
|
|
|
|
sources = [
|
|
"loader.cc",
|
|
"loader.h",
|
|
"logging.cc",
|
|
"logging.h",
|
|
"main.cc",
|
|
"scope.h",
|
|
"switches.cc",
|
|
"switches.h",
|
|
"vm.cc",
|
|
"vm.h",
|
|
]
|
|
|
|
deps = [
|
|
"//base",
|
|
"//dart/runtime/vm:libdart_platform",
|
|
"//dart/runtime:libdart",
|
|
"//sky/engine/bindings:snapshot_cc",
|
|
"//third_party/zlib",
|
|
]
|
|
}
|