mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
23 lines
610 B
Plaintext
23 lines
610 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.
|
|
|
|
assert(is_win)
|
|
|
|
group("windows") {
|
|
deps = [
|
|
":flutter_windows",
|
|
"$flutter_root/shell/platform/common/cpp/client_wrapper:publish_wrapper",
|
|
"$flutter_root/shell/platform/glfw:publish_headers_glfw",
|
|
"$flutter_root/shell/platform/glfw/client_wrapper:publish_wrapper_glfw",
|
|
]
|
|
}
|
|
|
|
shared_library("flutter_windows") {
|
|
deps = [
|
|
"$flutter_root/shell/platform/glfw:flutter_glfw",
|
|
]
|
|
|
|
public_configs = [ "$flutter_root:config" ]
|
|
}
|