Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1038)

Side by Side Diff: build/config/ui.gni

Issue 2510193002: Move use_xkbcommon from build to ui/base (Closed)
Patch Set: Typo Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | components/exo/wayland/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 # ============================================= 5 # =============================================
6 # PLEASE DO NOT ADD MORE FLAGS TO THIS FILE 6 # PLEASE DO NOT ADD MORE FLAGS TO THIS FILE
7 # ============================================= 7 # =============================================
8 # 8 #
9 # These flags are effectively global. Your feature flag should go near the 9 # These flags are effectively global. Your feature flag should go near the
10 # code it controls. Most of these items are here now because they control 10 # code it controls. Most of these items are here now because they control
(...skipping 25 matching lines...) Expand all
36 # True means the UI is built using the "views" framework. 36 # True means the UI is built using the "views" framework.
37 toolkit_views = 37 toolkit_views =
38 (is_mac || is_win || is_chromeos || use_aura) && !is_chromecast 38 (is_mac || is_win || is_chromeos || use_aura) && !is_chromecast
39 39
40 # Whether the entire browser uses toolkit-views on Mac instead of Cocoa. 40 # Whether the entire browser uses toolkit-views on Mac instead of Cocoa.
41 mac_views_browser = false 41 mac_views_browser = false
42 42
43 # Whether we should use GTKv3 instead of GTKv2. 43 # Whether we should use GTKv3 instead of GTKv2.
44 use_gtk3 = false 44 use_gtk3 = false
45 45
46 # Optional system libraries.
47 use_xkbcommon = false
48
49 # Whether we should use glib, a low level C utility library. 46 # Whether we should use glib, a low level C utility library.
50 use_glib = is_linux 47 use_glib = is_linux
51 48
52 # Indicates if Wayland display server support is enabled. 49 # Indicates if Wayland display server support is enabled.
53 enable_wayland_server = is_chromeos 50 enable_wayland_server = is_chromeos
54 51
55 # Enable experimental vulkan backend. 52 # Enable experimental vulkan backend.
56 enable_vulkan = false 53 enable_vulkan = false
57 } 54 }
58 55
(...skipping 21 matching lines...) Expand all
80 use_pango = false 77 use_pango = false
81 } 78 }
82 79
83 # Whether to use atk, the Accessibility ToolKit library 80 # Whether to use atk, the Accessibility ToolKit library
84 use_atk = is_desktop_linux && use_x11 81 use_atk = is_desktop_linux && use_x11
85 # ============================================= 82 # =============================================
86 # PLEASE DO NOT ADD MORE FLAGS TO THIS FILE 83 # PLEASE DO NOT ADD MORE FLAGS TO THIS FILE
87 # ============================================= 84 # =============================================
88 # 85 #
89 # See comment at the top. 86 # See comment at the top.
OLDNEW
« no previous file with comments | « no previous file | components/exo/wayland/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698