Kaushik Iska b94e759b25
Expose the Flutter engine, Dart and Skia versions to Dart. (#7634)
- Moved versions from shell to common
- versions singleton contains all the required versions.
2019-01-30 16:22:45 -08:00

21 lines
456 B
Plaintext

# 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("version.gni")
source_set("version") {
sources = [
"version.cc",
"version.h",
]
defines = [
"FLUTTER_ENGINE_VERSION=\"$engine_version\"",
"SKIA_VERSION=\"$skia_version\"",
"DART_VERSION=\"$dart_version\"",
]
public_configs = [ "$flutter_root:config" ]
}