mirror of
https://github.com/dart-lang/sdk
synced 2024-11-02 12:24:24 +00:00
46189bcb19
This is needed for the Flutter Engine to use a prebuilt Dart SDK as in https://github.com/flutter/engine/pull/26931. When using a prebuilt Dart SDK, the rules producing the built SDK are directed to a different location so that GN doesn't warn about multiple rules that produce the same file. TEST=locally with a flutter/engine checkout Change-Id: I4095f379c772c63f93a1c88c7f4e44804f3a6fc7 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/204760 Reviewed-by: Alexander Aprelev <aam@google.com> Commit-Queue: Zach Anderson <zra@google.com>
23 lines
633 B
Text
23 lines
633 B
Text
# Copyright (c) 2021, the Dart project authors. Please see the AUTHORS file
|
|
# for details. All rights reserved. Use of this source code is governed by a
|
|
# BSD-style license that can be found in the LICENSE file.
|
|
|
|
import("../../sdk_args.gni")
|
|
|
|
# This rule copies header files to include/
|
|
copy("copy_headers") {
|
|
visibility = [ "../../sdk:copy_headers" ]
|
|
|
|
sources = [
|
|
"dart_api.h",
|
|
"dart_api_dl.c",
|
|
"dart_api_dl.h",
|
|
"dart_native_api.h",
|
|
"dart_tools_api.h",
|
|
"dart_version.h",
|
|
"internal/dart_api_dl_impl.h",
|
|
]
|
|
|
|
outputs =
|
|
[ "$root_out_dir/$dart_sdk_output/include/{{source_target_relative}}" ]
|
|
}
|