mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
21 lines
492 B
Plaintext
21 lines
492 B
Plaintext
# Copyright 2018 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("version.gni")
|
|
|
|
source_set("version") {
|
|
sources = [
|
|
"version.cc",
|
|
"version.h",
|
|
]
|
|
|
|
defines = [
|
|
"SHELL_FLUTTER_ENGINE_VERSION=\"$shell_engine_version\"",
|
|
"SHELL_SKIA_VERSION=\"$shell_skia_version\"",
|
|
"SHELL_DART_VERSION=\"$shell_dart_version\"",
|
|
]
|
|
|
|
public_configs = [ "$flutter_root:config" ]
|
|
}
|