Remove PerformanceMonitor strings
[chromium-blink-merge.git] / media / media_variables.gypi
blobb203ca09d67e6f2f2d403919a5f1a2d94364b699
1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
5 # Common media variables.
7   'variables': {
8     'conditions': [
9       ['OS == "android" or OS == "ios"', {
10         # Android and iOS don't use FFmpeg, libvpx nor libwebm by default.
11         # Set media_use_ffmpeg=1 for Android builds to compile experimental
12         # support for FFmpeg and the desktop media pipeline.
13         'media_use_ffmpeg%': 0,
14         'media_use_libvpx%': 0,
15         'media_use_libwebm%': 0,
16       }, {
17         'media_use_ffmpeg%': 1,
18         'media_use_libvpx%': 1,
19         'media_use_libwebm%': 1,
20       }],
21     ],
22   },