| 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 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 277 "//media/audio", | 277 "//media/audio", |
| 278 "//media/formats", | 278 "//media/formats", |
| 279 "//ui/gfx:color_space", | 279 "//ui/gfx:color_space", |
| 280 ] | 280 ] |
| 281 | 281 |
| 282 include_dirs = [ "." ] | 282 include_dirs = [ "." ] |
| 283 if (media_use_ffmpeg) { | 283 if (media_use_ffmpeg) { |
| 284 public_deps += [ "//media/ffmpeg" ] | 284 public_deps += [ "//media/ffmpeg" ] |
| 285 deps += [ | 285 deps += [ |
| 286 "//third_party/ffmpeg", | 286 "//third_party/ffmpeg", |
| 287 "//third_party/ffmpeg:ffmpeg_features", |
| 287 "//third_party/opus", | 288 "//third_party/opus", |
| 288 ] | 289 ] |
| 289 sources += [ | 290 sources += [ |
| 290 "filters/audio_file_reader.cc", | 291 "filters/audio_file_reader.cc", |
| 291 "filters/audio_file_reader.h", | 292 "filters/audio_file_reader.h", |
| 292 "filters/blocking_url_protocol.cc", | 293 "filters/blocking_url_protocol.cc", |
| 293 "filters/ffmpeg_audio_decoder.cc", | 294 "filters/ffmpeg_audio_decoder.cc", |
| 294 "filters/ffmpeg_audio_decoder.h", | 295 "filters/ffmpeg_audio_decoder.h", |
| 295 "filters/ffmpeg_bitstream_converter.h", | 296 "filters/ffmpeg_bitstream_converter.h", |
| 296 "filters/ffmpeg_demuxer.cc", | 297 "filters/ffmpeg_demuxer.cc", |
| (...skipping 567 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 864 fuzzer_test("media_mp4_avcc_parser_fuzzer") { | 865 fuzzer_test("media_mp4_avcc_parser_fuzzer") { |
| 865 sources = [ | 866 sources = [ |
| 866 "formats/mp4/mp4_avcc_parser_fuzzer.cc", | 867 "formats/mp4/mp4_avcc_parser_fuzzer.cc", |
| 867 ] | 868 ] |
| 868 deps = [ | 869 deps = [ |
| 869 ":media", | 870 ":media", |
| 870 "//base", | 871 "//base", |
| 871 ] | 872 ] |
| 872 } | 873 } |
| 873 } | 874 } |
| OLD | NEW |