| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 import("//build/config/linux/pkg_config.gni") | 5 import("//build/config/linux/pkg_config.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 | 7 |
| 8 group("linux") { | 8 group("linux") { |
| 9 visibility = [ "//:optimize_gn_gen" ] | 9 visibility = [ "//:optimize_gn_gen" ] |
| 10 } | 10 } |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 } | 85 } |
| 86 | 86 |
| 87 if (use_glib) { | 87 if (use_glib) { |
| 88 pkg_config("glib") { | 88 pkg_config("glib") { |
| 89 packages = [ | 89 packages = [ |
| 90 "glib-2.0", | 90 "glib-2.0", |
| 91 "gmodule-2.0", | 91 "gmodule-2.0", |
| 92 "gobject-2.0", | 92 "gobject-2.0", |
| 93 "gthread-2.0", | 93 "gthread-2.0", |
| 94 ] | 94 ] |
| 95 defines = [ |
| 96 "GLIB_VERSION_MAX_ALLOWED=GLIB_VERSION_2_32", |
| 97 "GLIB_VERSION_MIN_REQUIRED=GLIB_VERSION_2_26", |
| 98 ] |
| 95 } | 99 } |
| 96 } | 100 } |
| OLD | NEW |