mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
Desktop embedding dependencies can trigger gn-generation-time requiremenets; e.g., the Linux embeddings have pkg-config dependencies. This can be problematic in some build environments, such as building flutter_engine.so with a custom sysroot where those higher-level dependencies aren't available. This flag allows generating build files that don't have those dependencies.
9 lines
298 B
Plaintext
9 lines
298 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.
|
|
|
|
declare_args() {
|
|
# Whether or not to include desktop embedding targets in the build.
|
|
enable_desktop_embeddings = !is_fuchsia_host
|
|
}
|