| 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 367 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 378 sources -= [ | 378 sources -= [ |
| 379 "filters/decrypting_audio_decoder.cc", | 379 "filters/decrypting_audio_decoder.cc", |
| 380 "filters/decrypting_audio_decoder.h", | 380 "filters/decrypting_audio_decoder.h", |
| 381 "filters/decrypting_video_decoder.cc", | 381 "filters/decrypting_video_decoder.cc", |
| 382 "filters/decrypting_video_decoder.h", | 382 "filters/decrypting_video_decoder.h", |
| 383 ] | 383 ] |
| 384 deps += [ | 384 deps += [ |
| 385 "//media/base/android", | 385 "//media/base/android", |
| 386 "//media/base/android:media_jni_headers", | 386 "//media/base/android:media_jni_headers", |
| 387 ] | 387 ] |
| 388 | |
| 389 # Only 64 bit builds are using the android-21 NDK library. | |
| 390 if (current_cpu == "arm64" || current_cpu == "x64" || | |
| 391 current_cpu == "mips64el") { | |
| 392 sources += [ | |
| 393 "base/android/ndk_media_codec_bridge.cc", | |
| 394 "base/android/ndk_media_codec_bridge.h", | |
| 395 "base/android/ndk_media_codec_wrapper.cc", | |
| 396 ] | |
| 397 } | |
| 398 allow_circular_includes_from = [ "//media/base/android" ] | 388 allow_circular_includes_from = [ "//media/base/android" ] |
| 399 } | 389 } |
| 400 | 390 |
| 401 if (current_cpu != "arm" && is_chromeos) { | 391 if (current_cpu != "arm" && is_chromeos) { |
| 402 sources += [ | 392 sources += [ |
| 403 "filters/h264_bitstream_buffer.cc", | 393 "filters/h264_bitstream_buffer.cc", |
| 404 "filters/h264_bitstream_buffer.h", | 394 "filters/h264_bitstream_buffer.h", |
| 405 ] | 395 ] |
| 406 } | 396 } |
| 407 | 397 |
| (...skipping 561 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 969 fuzzer_test("media_mp4_avcc_parser_fuzzer") { | 959 fuzzer_test("media_mp4_avcc_parser_fuzzer") { |
| 970 sources = [ | 960 sources = [ |
| 971 "formats/mp4/mp4_avcc_parser_fuzzer.cc", | 961 "formats/mp4/mp4_avcc_parser_fuzzer.cc", |
| 972 ] | 962 ] |
| 973 deps = [ | 963 deps = [ |
| 974 ":media", | 964 ":media", |
| 975 "//base", | 965 "//base", |
| 976 ] | 966 ] |
| 977 } | 967 } |
| 978 } | 968 } |
| OLD | NEW |