From 9cabbaf78c3a3bbcb52c0ae6fbb06afd98224bf1 Mon Sep 17 00:00:00 2001 From: "sadrul@chromium.org" Date: Tue, 20 Sep 2011 20:29:52 +0000 Subject: aura: Explicitly disable GTK. Explicitly disable GTK by setting TOOLKIT_USES_GTK. This is the first in a series of changes required to have chrome on aura build and link without GTK. This CL makes base/ build without GTK. Subsequent CLs will do this for other components. BUG=97131 TEST=none Review URL: http://codereview.chromium.org/7904034 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@102005 0039d316-1c4b-4281-b951-d872f2087c98 --- build/build_config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'build/build_config.h') diff --git a/build/build_config.h b/build/build_config.h index 5c09d45..0a42a47 100644 --- a/build/build_config.h +++ b/build/build_config.h @@ -45,7 +45,7 @@ // A flag derived from the above flags, used to cover GTK code in // both TOOLKIT_GTK and TOOLKIT_VIEWS. -#if defined(TOOLKIT_GTK) || (defined(TOOLKIT_VIEWS) && !defined(OS_WIN)) +#if defined(TOOLKIT_GTK) || (defined(TOOLKIT_VIEWS) && !defined(OS_WIN) && !defined(USE_AURA)) #define TOOLKIT_USES_GTK 1 #endif -- cgit v1.1