| 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 22 matching lines...) Expand all Loading... |
| 33 # of a replacement for GDI or GTK. | 33 # of a replacement for GDI or GTK. |
| 34 use_aura = is_win || is_linux | 34 use_aura = is_win || is_linux |
| 35 | 35 |
| 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. | |
| 44 use_gtk3 = false | |
| 45 | |
| 46 # Whether we should use glib, a low level C utility library. | 43 # Whether we should use glib, a low level C utility library. |
| 47 use_glib = is_linux | 44 use_glib = is_linux |
| 48 | 45 |
| 49 # Indicates if Wayland display server support is enabled. | 46 # Indicates if Wayland display server support is enabled. |
| 50 enable_wayland_server = is_chromeos | 47 enable_wayland_server = is_chromeos |
| 51 | 48 |
| 52 # Enable experimental vulkan backend. | 49 # Enable experimental vulkan backend. |
| 53 enable_vulkan = false | 50 enable_vulkan = false |
| 54 } | 51 } |
| 55 | 52 |
| (...skipping 21 matching lines...) Expand all Loading... |
| 77 use_pango = false | 74 use_pango = false |
| 78 } | 75 } |
| 79 | 76 |
| 80 # Whether to use atk, the Accessibility ToolKit library | 77 # Whether to use atk, the Accessibility ToolKit library |
| 81 use_atk = is_desktop_linux && use_x11 | 78 use_atk = is_desktop_linux && use_x11 |
| 82 # ============================================= | 79 # ============================================= |
| 83 # PLEASE DO NOT ADD MORE FLAGS TO THIS FILE | 80 # PLEASE DO NOT ADD MORE FLAGS TO THIS FILE |
| 84 # ============================================= | 81 # ============================================= |
| 85 # | 82 # |
| 86 # See comment at the top. | 83 # See comment at the top. |
| OLD | NEW |