Chromium Code Reviews| 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 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 Loading... | |
| 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 Loading... | |
| 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 } |
| OLD | NEW |