1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
5 import("//build/config/linux/pkg_config.gni")
7 assert(is_linux, "This file should only be referenced on Linux")
9 # Depend on //build/config/linux/gtk to use GTK.
11 # GN doesn't check visibility for configs so we give this an obviously internal
12 # name to discourage random targets from accidentally depending on this and
13 # bypassing the GTK target's visibility.
14 pkg_config("gtk_internal_config") {
15 # Gtk requires gmodule, but it does not list it as a dependency in some
16 # misconfigured systems.
24 # Basically no parts of Chrome should depend on GTK. To prevent accidents, the
25 # parts that explicitly need GTK are whitelisted on this target.
28 "//chrome/browser/ui/libgtk2ui",
31 direct_dependent_configs = [ ":gtk_internal_config" ]
34 # Depend on "gtkprint" to get this.
35 pkg_config("gtkprint_internal_config") {
36 packages = [ "gtk+-unix-print-2.0" ]
40 visibility = [ "//chrome/browser/ui/libgtk2ui" ]
41 direct_dependent_configs = [ ":gtkprint_internal_config" ]