| 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 # Note: this setting is ignored if is_chrome_branded. | 55 # Note: this setting is ignored if is_chrome_branded. |
| 56 fieldtrial_testing_like_official_build = is_chrome_branded | 56 fieldtrial_testing_like_official_build = is_chrome_branded |
| 57 | 57 |
| 58 # libudev usage. This currently only affects the content layer. | 58 # libudev usage. This currently only affects the content layer. |
| 59 use_udev = is_linux && !is_chromecast | 59 use_udev = is_linux && !is_chromecast |
| 60 | 60 |
| 61 use_dbus = is_linux && !is_chromecast | 61 use_dbus = is_linux && !is_chromecast |
| 62 | 62 |
| 63 # Option controlling the use of GConf (the classic GNOME configuration | 63 # Option controlling the use of GConf (the classic GNOME configuration |
| 64 # system). | 64 # system). |
| 65 use_gconf = is_linux && !is_chromeos && !is_chromecast | 65 use_gconf = is_linux && !is_chromeos && !is_chromecast && |
| 66 current_toolchain == default_toolchain |
| 66 | 67 |
| 67 use_gio = is_linux && !is_chromeos && !is_chromecast | 68 use_gio = is_linux && !is_chromeos && !is_chromecast |
| 68 } | 69 } |
| 69 # | 70 # |
| 70 # ============================================= | 71 # ============================================= |
| 71 # PLEASE DO NOT ADD MORE FLAGS TO THIS FILE | 72 # PLEASE DO NOT ADD MORE FLAGS TO THIS FILE |
| 72 # ============================================= | 73 # ============================================= |
| 73 # | 74 # |
| 74 # See comment at the top. | 75 # See comment at the top. |
| OLD | NEW |