blob: bd014e4f8ef500f4a0b8ee129265dddb3a3646cb [file]
# Copyright 2020 The Fuchsia 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("//build/config.gni")
# Packages a Session Framework configuration for the session_manager package.
# The configuration will be located at session_managers's /config/data/startup.config.
# Including this rule in a product definition will automatically launch
# Session Framework with a root session, defined as the `session_url` in the json configuration.
#
# Parameters
# config
# The JSON configuration file for the Session Framework.
template("session_config") {
config_data(target_name) {
for_pkg = "session_manager"
sources = [ invoker.config ]
outputs = [ "startup.config" ]
}
}