| 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. It should theoretically be in the | 5 # This file contains UI-related build flags. It should theoretically be in the |
| 6 # src/ui directory and only things that depend on the ui module should get the | 6 # src/ui directory and only things that depend on the ui module should get the |
| 7 # definitions. | 7 # definitions. |
| 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. | 10 # e.g. base, so they need to be global. |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 # Enables proprietary codecs and demuxers; e.g. H264, MOV, AAC, and MP3. | 40 # Enables proprietary codecs and demuxers; e.g. H264, MOV, AAC, and MP3. |
| 41 proprietary_codecs = false | 41 proprietary_codecs = false |
| 42 } | 42 } |
| 43 | 43 |
| 44 # Additional dependent variables ----------------------------------------------- | 44 # Additional dependent variables ----------------------------------------------- |
| 45 | 45 |
| 46 # Set the version of CLD. | 46 # Set the version of CLD. |
| 47 # 0: Don't specify the version. This option is for the Finch testing. | 47 # 0: Don't specify the version. This option is for the Finch testing. |
| 48 # 1: Use only CLD1. | 48 # 1: Use only CLD1. |
| 49 # 2: Use only CLD2. | 49 # 2: Use only CLD2. |
| 50 if (is_android || is_ios) { | 50 if (is_android) { |
| 51 cld_version = 1 | 51 cld_version = 1 |
| 52 } else { | 52 } else { |
| 53 cld_version = 2 | 53 cld_version = 2 |
| 54 } | 54 } |
| 55 | 55 |
| 56 # libudev usage. This currently only affects the content layer. | 56 # libudev usage. This currently only affects the content layer. |
| 57 use_udev = is_linux | 57 use_udev = is_linux |
| 58 | 58 |
| 59 # Enable the spell checker. | 59 # Enable the spell checker. |
| 60 enable_spellcheck = !is_android | 60 enable_spellcheck = !is_android |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 # ChromeVox, which can then be enabled via a command-line switch. | 152 # ChromeVox, which can then be enabled via a command-line switch. |
| 153 enable_chromevox_next = false | 153 enable_chromevox_next = false |
| 154 | 154 |
| 155 # Use brlapi from brltty for braille display support. | 155 # Use brlapi from brltty for braille display support. |
| 156 use_brlapi = is_chromeos | 156 use_brlapi = is_chromeos |
| 157 | 157 |
| 158 # Option controlling the use of GConf (the classic GNOME configuration | 158 # Option controlling the use of GConf (the classic GNOME configuration |
| 159 # system). | 159 # system). |
| 160 # TODO(GYP) also require !embedded to enable. | 160 # TODO(GYP) also require !embedded to enable. |
| 161 use_gconf = is_linux && !is_chromeos | 161 use_gconf = is_linux && !is_chromeos |
| OLD | NEW |