mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
Instead of requiring a system-level GLFW, build it from source and statically link it into the Linux shell.
14 lines
306 B
Plaintext
14 lines
306 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.
|
|
|
|
import("//build/config/linux/pkg_config.gni")
|
|
|
|
pkg_config("gtk3") {
|
|
packages = [ "gtk+-3.0" ]
|
|
}
|
|
|
|
pkg_config("x11") {
|
|
packages = [ "x11" ]
|
|
}
|