| 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/config/android/config.gni") | 5 import("//build/config/android/config.gni") |
| 6 import("//build/config/arm.gni") | 6 import("//build/config/arm.gni") |
| 7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
| 8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
| 9 import("//build/config/linux/pkg_config.gni") | 9 import("//build/config/linux/pkg_config.gni") |
| 10 import("//media/media_options.gni") | 10 import("//media/media_options.gni") |
| (...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 297 configs += [ ":base_config" ] | 297 configs += [ ":base_config" ] |
| 298 | 298 |
| 299 if (media_use_ffmpeg) { | 299 if (media_use_ffmpeg) { |
| 300 if (!is_android) { | 300 if (!is_android) { |
| 301 sources += [ | 301 sources += [ |
| 302 "audio_video_metadata_extractor.cc", | 302 "audio_video_metadata_extractor.cc", |
| 303 "audio_video_metadata_extractor.h", | 303 "audio_video_metadata_extractor.h", |
| 304 "media_file_checker.cc", | 304 "media_file_checker.cc", |
| 305 "media_file_checker.h", | 305 "media_file_checker.h", |
| 306 ] | 306 ] |
| 307 deps += [ "//media:filters_common" ] | 307 deps += [ "//media/filters:filters_common" ] |
| 308 } | 308 } |
| 309 | 309 |
| 310 deps += [ "//third_party/ffmpeg" ] | 310 deps += [ "//third_party/ffmpeg" ] |
| 311 } | 311 } |
| 312 | 312 |
| 313 if (media_use_libvpx) { |
| 314 deps += [ "//third_party/libvpx" ] |
| 315 } |
| 316 |
| 313 if (is_android) { | 317 if (is_android) { |
| 314 public_deps += [ | 318 public_deps += [ |
| 315 "//media/base/android", | 319 "//media/base/android", |
| 316 "//media/base/android:media_jni_headers", | 320 "//media/base/android:media_jni_headers", |
| 317 ] | 321 ] |
| 318 allow_circular_includes_from += [ "//media/base/android" ] | 322 allow_circular_includes_from += [ "//media/base/android" ] |
| 319 } | 323 } |
| 320 | 324 |
| 321 if (is_linux && use_x11) { | 325 if (is_linux && use_x11) { |
| 322 configs += [ | 326 configs += [ |
| (...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 572 | 576 |
| 573 fuzzer_test("media_container_names_fuzzer") { | 577 fuzzer_test("media_container_names_fuzzer") { |
| 574 sources = [ | 578 sources = [ |
| 575 "container_names_fuzzertest.cc", | 579 "container_names_fuzzertest.cc", |
| 576 ] | 580 ] |
| 577 deps = [ | 581 deps = [ |
| 578 "//base", | 582 "//base", |
| 579 "//media", | 583 "//media", |
| 580 ] | 584 ] |
| 581 } | 585 } |
| OLD | NEW |