Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(269)

Side by Side Diff: media/BUILD.gn

Issue 2171133002: Implement opus seek preroll for MediaSourceExtensions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix opus hashes and propogate OPUS_FIXED_POINT define Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | media/filters/source_buffer_range.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 import("//build/buildflag_header.gni") 5 import("//build/buildflag_header.gni")
6 import("//build/config/android/config.gni") 6 import("//build/config/android/config.gni")
7 import("//build/config/arm.gni") 7 import("//build/config/arm.gni")
8 import("//build/config/features.gni") 8 import("//build/config/features.gni")
9 import("//build/config/linux/pkg_config.gni") 9 import("//build/config/linux/pkg_config.gni")
10 import("//build/config/ui.gni") 10 import("//build/config/ui.gni")
(...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after
280 ":filters_common", 280 ":filters_common",
281 ] 281 ]
282 282
283 include_dirs = [ "." ] 283 include_dirs = [ "." ]
284 if (media_use_ffmpeg) { 284 if (media_use_ffmpeg) {
285 public_deps += [ "//media/ffmpeg" ] 285 public_deps += [ "//media/ffmpeg" ]
286 deps += [ 286 deps += [
287 "//third_party/ffmpeg", 287 "//third_party/ffmpeg",
288 "//third_party/opus", 288 "//third_party/opus",
289 ] 289 ]
290 public_configs += [ "//third_party/opus:opus_config" ]
wolenetz 2016/12/03 00:48:36 only the tests need this, not everyone using media
chcunningham 2016/12/08 02:17:27 Done.
290 sources += [ 291 sources += [
291 "filters/audio_file_reader.cc", 292 "filters/audio_file_reader.cc",
292 "filters/audio_file_reader.h", 293 "filters/audio_file_reader.h",
293 "filters/blocking_url_protocol.cc", 294 "filters/blocking_url_protocol.cc",
294 "filters/ffmpeg_audio_decoder.cc", 295 "filters/ffmpeg_audio_decoder.cc",
295 "filters/ffmpeg_audio_decoder.h", 296 "filters/ffmpeg_audio_decoder.h",
296 "filters/ffmpeg_bitstream_converter.h", 297 "filters/ffmpeg_bitstream_converter.h",
297 "filters/ffmpeg_demuxer.cc", 298 "filters/ffmpeg_demuxer.cc",
298 "filters/ffmpeg_demuxer.h", 299 "filters/ffmpeg_demuxer.h",
299 "filters/ffmpeg_glue.cc", 300 "filters/ffmpeg_glue.cc",
(...skipping 631 matching lines...) Expand 10 before | Expand all | Expand 10 after
931 fuzzer_test("media_mp4_avcc_parser_fuzzer") { 932 fuzzer_test("media_mp4_avcc_parser_fuzzer") {
932 sources = [ 933 sources = [
933 "formats/mp4/mp4_avcc_parser_fuzzer.cc", 934 "formats/mp4/mp4_avcc_parser_fuzzer.cc",
934 ] 935 ]
935 deps = [ 936 deps = [
936 ":media", 937 ":media",
937 "//base", 938 "//base",
938 ] 939 ]
939 } 940 }
940 } 941 }
OLDNEW
« no previous file with comments | « no previous file | media/filters/source_buffer_range.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698