| 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 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 261 configs += [ ":base_config" ] | 261 configs += [ ":base_config" ] |
| 262 | 262 |
| 263 if (media_use_ffmpeg) { | 263 if (media_use_ffmpeg) { |
| 264 if (!is_android) { | 264 if (!is_android) { |
| 265 sources += [ | 265 sources += [ |
| 266 "audio_video_metadata_extractor.cc", | 266 "audio_video_metadata_extractor.cc", |
| 267 "audio_video_metadata_extractor.h", | 267 "audio_video_metadata_extractor.h", |
| 268 "media_file_checker.cc", | 268 "media_file_checker.cc", |
| 269 "media_file_checker.h", | 269 "media_file_checker.h", |
| 270 ] | 270 ] |
| 271 deps += [ "//media:filters_common" ] |
| 271 } | 272 } |
| 272 | 273 |
| 273 deps += [ "//third_party/ffmpeg" ] | 274 deps += [ "//third_party/ffmpeg" ] |
| 274 } | 275 } |
| 275 | 276 |
| 276 if (is_android) { | 277 if (is_android) { |
| 277 public_deps = [ | 278 public_deps = [ |
| 278 "//media/base/android", | 279 "//media/base/android", |
| 279 "//media/base/android:media_jni_headers", | 280 "//media/base/android:media_jni_headers", |
| 280 ] | 281 ] |
| (...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 600 | 601 |
| 601 fuzzer_test("media_container_names_fuzzer") { | 602 fuzzer_test("media_container_names_fuzzer") { |
| 602 sources = [ | 603 sources = [ |
| 603 "container_names_fuzzertest.cc", | 604 "container_names_fuzzertest.cc", |
| 604 ] | 605 ] |
| 605 deps = [ | 606 deps = [ |
| 606 "//base", | 607 "//base", |
| 607 "//media", | 608 "//media", |
| 608 ] | 609 ] |
| 609 } | 610 } |
| OLD | NEW |