Index: build/config/linux/atk/BUILD.gn |
diff --git a/build/config/linux/atk/BUILD.gn b/build/config/linux/atk/BUILD.gn |
new file mode 100644 |
index 0000000000000000000000000000000000000000..96bf8c0a5f88c5828d8b4fca3ad8e9fa4959aaa2 |
--- /dev/null |
+++ b/build/config/linux/atk/BUILD.gn |
@@ -0,0 +1,40 @@ |
+# 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/features.gni") |
+import("//build/config/linux/pkg_config.gni") |
+ |
+# CrOS doesn't install GTK, gconf or any gnome packages. |
+assert(!is_chromeos && use_gconf) |
+ |
+# These packages should _only_ be expected when building for a target. |
+# If these extra checks are not run, gconf is required when building host |
+# tools for a CrOS build. |
+assert(current_toolchain == default_toolchain) |
+ |
+pkg_config("atk") { |
+ packages = [ "atk" ] |
+ atk_lib_dir = exec_script(pkg_config_script, |
+ pkg_config_args + [ |
+ "--libdir", |
+ "atk", |
+ ], |
+ "string") |
+ defines = [ "ATK_LIB_DIR=\"$atk_lib_dir\"" ] |
+} |
+ |
+# gn orders flags on a target before flags from configs. The default config |
+# adds -Wall, and these flags have to be after -Wall -- so they need to |
+# come from a config and can't be on the target directly. |
+config("warnings") { |
+ cflags = [ |
+ # glib uses the pre-c++11 typedef-as-static_assert hack. |
+ "-Wno-unused-local-typedef", |
+ |
+ # G_DEFINE_TYPE automatically generates a *get_instance_private |
+ # inline function after glib 2.37. That's unused. Prevent to |
+ # complain about it. |
+ "-Wno-unused-function", |
+ ] |
+} |