mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
Changes include: - File structure - Header guards - Include paths - Namespaces - Integration with the engine's GN build - Conversion from jsoncpp to rapidjson - Style and clang-format adjustment to match engine repository
23 lines
606 B
Plaintext
23 lines
606 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_linux)
|
|
|
|
group("linux") {
|
|
deps = [
|
|
":flutter_linux",
|
|
"$flutter_root/shell/platform/glfw:publish_headers_glfw",
|
|
"$flutter_root/shell/platform/common/cpp/client_wrapper:publish_wrapper",
|
|
"$flutter_root/shell/platform/glfw/client_wrapper:publish_wrapper_glfw",
|
|
]
|
|
}
|
|
|
|
shared_library("flutter_linux") {
|
|
deps = [
|
|
"$flutter_root/shell/platform/glfw:flutter_glfw",
|
|
]
|
|
|
|
public_configs = [ "$flutter_root:config" ]
|
|
}
|