| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 # Override to dynamically link the cras (ChromeOS audio) library. | 8 # Override to dynamically link the cras (ChromeOS audio) library. |
| 9 'use_cras%': 0, | 9 'use_cras%': 0, |
| 10 # Option e.g. for Linux distributions to link pulseaudio directly | 10 # Option e.g. for Linux distributions to link pulseaudio directly |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 'includes': [ | 51 'includes': [ |
| 52 'capture.gypi', | 52 'capture.gypi', |
| 53 'media_cdm.gypi', | 53 'media_cdm.gypi', |
| 54 'media_variables.gypi', | 54 'media_variables.gypi', |
| 55 ], | 55 ], |
| 56 'targets': [ | 56 'targets': [ |
| 57 { | 57 { |
| 58 # GN version: //media:media_features | 58 # GN version: //media:media_features |
| 59 'target_name': 'media_features', | 59 'target_name': 'media_features', |
| 60 'includes': [ '../build/buildflag_header.gypi' ], | 60 'includes': [ '../build/buildflag_header.gypi' ], |
| 61 'hard_dependency': 1, |
| 61 'variables': { | 62 'variables': { |
| 62 'buildflag_header_path': 'media/media_features.h', | 63 'buildflag_header_path': 'media/media_features.h', |
| 63 'buildflag_flags': [ | 64 'buildflag_flags': [ |
| 64 "ENABLE_AC3_EAC3_AUDIO_DEMUXING=<(enable_ac3_eac3_audio_demuxing)", | 65 "ENABLE_AC3_EAC3_AUDIO_DEMUXING=<(enable_ac3_eac3_audio_demuxing)", |
| 65 "ENABLE_HEVC_DEMUXING=<(enable_hevc_demuxing)", | 66 "ENABLE_HEVC_DEMUXING=<(enable_hevc_demuxing)", |
| 66 "ENABLE_MSE_MPEG2TS_STREAM_PARSER=<(enable_mse_mpeg2ts_stream_parser)"
, | 67 "ENABLE_MSE_MPEG2TS_STREAM_PARSER=<(enable_mse_mpeg2ts_stream_parser)"
, |
| 67 "ENABLE_MP4_VP9_DEMUXING=0", | 68 "ENABLE_MP4_VP9_DEMUXING=0", |
| 68 ], | 69 ], |
| 69 }, | 70 }, |
| 70 }, | 71 }, |
| (...skipping 12 matching lines...) Expand all Loading... |
| 83 '../third_party/libwebm/libwebm.gyp:libwebm', | 84 '../third_party/libwebm/libwebm.gyp:libwebm', |
| 84 '../third_party/libyuv/libyuv.gyp:libyuv', | 85 '../third_party/libyuv/libyuv.gyp:libyuv', |
| 85 '../third_party/opus/opus.gyp:opus', | 86 '../third_party/opus/opus.gyp:opus', |
| 86 '../ui/display/display.gyp:display', | 87 '../ui/display/display.gyp:display', |
| 87 '../ui/events/events.gyp:events_base', | 88 '../ui/events/events.gyp:events_base', |
| 88 '../ui/gfx/gfx.gyp:gfx', | 89 '../ui/gfx/gfx.gyp:gfx', |
| 89 '../ui/gfx/gfx.gyp:gfx_geometry', | 90 '../ui/gfx/gfx.gyp:gfx_geometry', |
| 90 '../url/url.gyp:url_lib', | 91 '../url/url.gyp:url_lib', |
| 91 'shared_memory_support', | 92 'shared_memory_support', |
| 92 ], | 93 ], |
| 94 'hard_dependency': 1, |
| 93 'export_dependent_settings': [ | 95 'export_dependent_settings': [ |
| 94 '../third_party/libwebm/libwebm.gyp:libwebm', | 96 '../third_party/libwebm/libwebm.gyp:libwebm', |
| 95 '../third_party/opus/opus.gyp:opus', | 97 '../third_party/opus/opus.gyp:opus', |
| 98 'media_features', |
| 96 ], | 99 ], |
| 97 'defines': [ | 100 'defines': [ |
| 98 'MEDIA_IMPLEMENTATION', | 101 'MEDIA_IMPLEMENTATION', |
| 99 ], | 102 ], |
| 100 'include_dirs': [ | 103 'include_dirs': [ |
| 101 '..', | 104 '..', |
| 102 ], | 105 ], |
| 103 'includes': [ | 106 'includes': [ |
| 104 'capture.gypi', | 107 'capture.gypi', |
| 105 ], | 108 ], |
| (...skipping 2176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2282 'dependencies': [ | 2285 'dependencies': [ |
| 2283 '../build/linux/system.gyp:libdrm', | 2286 '../build/linux/system.gyp:libdrm', |
| 2284 ] | 2287 ] |
| 2285 }], | 2288 }], |
| 2286 ], | 2289 ], |
| 2287 } | 2290 } |
| 2288 ] | 2291 ] |
| 2289 }], | 2292 }], |
| 2290 ], | 2293 ], |
| 2291 } | 2294 } |
| OLD | NEW |