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 declare_args() { | 5 declare_args() { |
6 # Allows distributions to link pulseaudio directly (DT_NEEDED) instead of | 6 # Allows distributions to link pulseaudio directly (DT_NEEDED) instead of |
7 # using dlopen. This helps with automated detection of ABI mismatches and | 7 # using dlopen. This helps with automated detection of ABI mismatches and |
8 # prevents silent errors. | 8 # prevents silent errors. |
9 link_pulseaudio = false | 9 link_pulseaudio = false |
10 | 10 |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 # Enables browser side Content Decryption Modules. Required for embedders | 48 # Enables browser side Content Decryption Modules. Required for embedders |
49 # (e.g. Android and ChromeCast) that use a browser side CDM. | 49 # (e.g. Android and ChromeCast) that use a browser side CDM. |
50 enable_browser_cdms = is_android | 50 enable_browser_cdms = is_android |
51 | 51 |
52 # Experiment to enable mojo based media renderer: http://crbug.com/431776 | 52 # Experiment to enable mojo based media renderer: http://crbug.com/431776 |
53 enable_media_mojo_renderer = false | 53 enable_media_mojo_renderer = false |
54 | 54 |
55 # TODO(GYP): This should be a platform define. | 55 # TODO(GYP): This should be a platform define. |
56 is_openbsd = false | 56 is_openbsd = false |
57 | 57 |
58 # Override to omit code that depends on the X11, font, and graphics libraries. | 58 # Override to omit code that depends on the X11 and fontconfig libraries. |
59 is_ensemble = false | 59 is_ensemble = false |
60 } | 60 } |
OLD | NEW |