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 # If debug_devtools is set to true, JavaScript files for DevTools are stored | 40 # If debug_devtools is set to true, JavaScript files for DevTools are stored |
41 # as is and loaded from disk. Otherwise, a concatenated file is stored in | 41 # as is and loaded from disk. Otherwise, a concatenated file is stored in |
42 # resources.pak. It is still possible to load JS files from disk by passing | 42 # resources.pak. It is still possible to load JS files from disk by passing |
43 # --debug-devtools cmdline switch. | 43 # --debug-devtools cmdline switch. |
44 debug_devtools = false | 44 debug_devtools = false |
45 | 45 |
46 # Enables WebRTC. | 46 # Enables WebRTC. |
47 # TODO(GYP) make mac and android work. | 47 # TODO(GYP) make mac and android work. |
48 enable_webrtc = !is_ios && !is_mac && !is_android | 48 enable_webrtc = !is_ios && !is_mac && !is_android |
49 | 49 |
| 50 # Enables the Media Router. |
| 51 enable_media_router = !is_ios && !is_android |
| 52 |
50 # Enables proprietary codecs and demuxers; e.g. H264, MOV, AAC, and MP3. | 53 # Enables proprietary codecs and demuxers; e.g. H264, MOV, AAC, and MP3. |
51 proprietary_codecs = false | 54 proprietary_codecs = false |
52 | 55 |
53 enable_configuration_policy = true | 56 enable_configuration_policy = true |
54 | 57 |
55 # Enables support for background apps. | 58 # Enables support for background apps. |
56 enable_background = !is_ios && !is_android | 59 enable_background = !is_ios && !is_android |
57 | 60 |
58 enable_captive_portal_detection = !is_android && !is_ios | 61 enable_captive_portal_detection = !is_android && !is_ios |
59 | 62 |
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
177 # TODO(GYP) also require !embedded to enable. | 180 # TODO(GYP) also require !embedded to enable. |
178 use_gconf = is_linux && !is_chromeos | 181 use_gconf = is_linux && !is_chromeos |
179 | 182 |
180 # Hangout services is an extension that adds extra features to Hangouts. | 183 # Hangout services is an extension that adds extra features to Hangouts. |
181 # For official GYP builds, this flag is set, it will likely need to be | 184 # For official GYP builds, this flag is set, it will likely need to be |
182 # parameterized in the future for a similar use. | 185 # parameterized in the future for a similar use. |
183 enable_hangout_services_extension = false | 186 enable_hangout_services_extension = false |
184 | 187 |
185 # Whether to back up data before sync. | 188 # Whether to back up data before sync. |
186 enable_pre_sync_backup = is_win || is_mac || (is_linux && !is_chromeos) | 189 enable_pre_sync_backup = is_win || is_mac || (is_linux && !is_chromeos) |
OLD | NEW |