blob: 92baff2a9b6eea1bcfaa53a9e70b4857b68cea77 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# Copyright 2016 The Chromium 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/chromeos/ui_mode.gni")
import("//build/config/features.gni")
import("//build/config/linux/pkg_config.gni")
import("//build/config/ui.gni")
# CrOS doesn't install GTK or any gnome packages.
assert(!is_chromeos)
# These packages should _only_ be expected when building for a target.
assert(current_toolchain == default_toolchain)
if (use_atk) {
assert(use_glib, "use_atk=true requires that use_glib=true")
}
pkg_config("atk") {
packages = [
"atk",
"atk-bridge-2.0",
]
atk_lib_dir = exec_script(pkg_config_script,
pkg_config_args + [
"--libdir",
"atk",
],
"string")
defines = [
"ATK_LIB_DIR=\"$atk_lib_dir\"",
"USE_ATK_BRIDGE",
]
}
|