| 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 # This file contains UI-related build flags (see features.gni for Chrome | 5 # This file contains UI-related build flags (see features.gni for Chrome |
| 6 # feature-related ones). These should theoretically be moved to the ui | 6 # feature-related ones). These should theoretically be moved to the ui |
| 7 # directory. | 7 # directory. |
| 8 # | 8 # |
| 9 # However, today we have many "bad" dependencies on some of these flags from, | 9 # However, today we have many "bad" dependencies on some of these flags from, |
| 10 # e.g. base, so they need to be global to match the GYP configuration. Also, | 10 # e.g. base, so they need to be global to match the GYP configuration. Also, |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 # that does not require X11. Enabling this feature disables use of glib, x11, | 26 # that does not require X11. Enabling this feature disables use of glib, x11, |
| 27 # Pango, and Cairo. Default to false on non-Chromecast builds. | 27 # Pango, and Cairo. Default to false on non-Chromecast builds. |
| 28 use_ozone = (is_chromecast || is_headless) && !is_android | 28 use_ozone = (is_chromecast || is_headless) && !is_android |
| 29 | 29 |
| 30 # Indicates if Aura is enabled. Aura is a low-level windowing library, sort | 30 # Indicates if Aura is enabled. Aura is a low-level windowing library, sort |
| 31 # of a replacement for GDI or GTK. | 31 # of a replacement for GDI or GTK. |
| 32 use_aura = is_win || is_linux || is_chromecast | 32 use_aura = is_win || is_linux || is_chromecast |
| 33 | 33 |
| 34 # True means the UI is built using the "views" framework. | 34 # True means the UI is built using the "views" framework. |
| 35 toolkit_views = | 35 toolkit_views = |
| 36 (is_mac || is_win || is_chromeos || use_aura) && !is_chromecast | 36 (is_mac || is_win || is_chromeos || use_aura) && !is_chromecast && !is_hea
dless |
| 37 | 37 |
| 38 # Whether the entire browser uses toolkit-views on Mac instead of Cocoa. | 38 # Whether the entire browser uses toolkit-views on Mac instead of Cocoa. |
| 39 mac_views_browser = false | 39 mac_views_browser = false |
| 40 | 40 |
| 41 # Whether we should use GTKv3 instead of GTKv2. | 41 # Whether we should use GTKv3 instead of GTKv2. |
| 42 use_gtk3 = false | 42 use_gtk3 = false |
| 43 | 43 |
| 44 # Optional system libraries. | 44 # Optional system libraries. |
| 45 use_xkbcommon = false | 45 use_xkbcommon = false |
| 46 | 46 |
| (...skipping 28 matching lines...) Expand all Loading... |
| 75 } | 75 } |
| 76 | 76 |
| 77 # Whether to use atk, the Accessibility ToolKit library | 77 # Whether to use atk, the Accessibility ToolKit library |
| 78 use_atk = is_desktop_linux && use_x11 | 78 use_atk = is_desktop_linux && use_x11 |
| 79 | 79 |
| 80 use_clipboard_aurax11 = is_linux && use_aura && use_x11 | 80 use_clipboard_aurax11 = is_linux && use_aura && use_x11 |
| 81 | 81 |
| 82 enable_hidpi = is_mac || is_win || is_linux | 82 enable_hidpi = is_mac || is_win || is_linux |
| 83 | 83 |
| 84 enable_topchrome_md = is_chromeos || is_win || is_linux | 84 enable_topchrome_md = is_chromeos || is_win || is_linux |
| OLD | NEW |