| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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. |
| OLD | NEW |