| 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 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 295 configs += [ ":base_config" ] | 295 configs += [ ":base_config" ] |
| 296 | 296 |
| 297 if (media_use_ffmpeg) { | 297 if (media_use_ffmpeg) { |
| 298 if (!is_android) { | 298 if (!is_android) { |
| 299 sources += [ | 299 sources += [ |
| 300 "audio_video_metadata_extractor.cc", | 300 "audio_video_metadata_extractor.cc", |
| 301 "audio_video_metadata_extractor.h", | 301 "audio_video_metadata_extractor.h", |
| 302 "media_file_checker.cc", | 302 "media_file_checker.cc", |
| 303 "media_file_checker.h", | 303 "media_file_checker.h", |
| 304 ] | 304 ] |
| 305 deps += [ "//media:filters_common" ] | 305 deps += [ "//media/filters:filters_common" ] |
| 306 } | 306 } |
| 307 | 307 |
| 308 deps += [ "//third_party/ffmpeg" ] | 308 deps += [ "//third_party/ffmpeg" ] |
| 309 } | 309 } |
| 310 | 310 |
| 311 if (is_android) { | 311 if (is_android) { |
| 312 public_deps += [ | 312 public_deps += [ |
| 313 "//media/base/android", | 313 "//media/base/android", |
| 314 "//media/base/android:media_jni_headers", | 314 "//media/base/android:media_jni_headers", |
| 315 ] | 315 ] |
| (...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 570 | 570 |
| 571 fuzzer_test("media_container_names_fuzzer") { | 571 fuzzer_test("media_container_names_fuzzer") { |
| 572 sources = [ | 572 sources = [ |
| 573 "container_names_fuzzertest.cc", | 573 "container_names_fuzzertest.cc", |
| 574 ] | 574 ] |
| 575 deps = [ | 575 deps = [ |
| 576 "//base", | 576 "//base", |
| 577 "//media", | 577 "//media", |
| 578 ] | 578 ] |
| 579 } | 579 } |
| OLD | NEW |