| 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 338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 349 "filters/decrypting_audio_decoder.cc", | 349 "filters/decrypting_audio_decoder.cc", |
| 350 "filters/decrypting_audio_decoder.h", | 350 "filters/decrypting_audio_decoder.h", |
| 351 "filters/decrypting_video_decoder.cc", | 351 "filters/decrypting_video_decoder.cc", |
| 352 "filters/decrypting_video_decoder.h", | 352 "filters/decrypting_video_decoder.h", |
| 353 ] | 353 ] |
| 354 deps += [ | 354 deps += [ |
| 355 "//media/base/android", | 355 "//media/base/android", |
| 356 "//media/base/android:media_jni_headers", | 356 "//media/base/android:media_jni_headers", |
| 357 ] | 357 ] |
| 358 | 358 |
| 359 # Only 64 bit builds are using android-21 NDK library, check common.gypi | 359 # Only 64 bit builds are using the android-21 NDK library. |
| 360 if (current_cpu == "arm64" || current_cpu == "x64" || | 360 if (current_cpu == "arm64" || current_cpu == "x64" || |
| 361 current_cpu == "mips64el") { | 361 current_cpu == "mips64el") { |
| 362 sources += [ | 362 sources += [ |
| 363 "base/android/ndk_media_codec_bridge.cc", | 363 "base/android/ndk_media_codec_bridge.cc", |
| 364 "base/android/ndk_media_codec_bridge.h", | 364 "base/android/ndk_media_codec_bridge.h", |
| 365 "base/android/ndk_media_codec_wrapper.cc", | 365 "base/android/ndk_media_codec_wrapper.cc", |
| 366 ] | 366 ] |
| 367 } | 367 } |
| 368 allow_circular_includes_from = [ "//media/base/android" ] | 368 allow_circular_includes_from = [ "//media/base/android" ] |
| 369 } | 369 } |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 485 "//media/audio", | 485 "//media/audio", |
| 486 "//media/base", | 486 "//media/base", |
| 487 "//third_party/opus", | 487 "//third_party/opus", |
| 488 ] | 488 ] |
| 489 | 489 |
| 490 deps += [ | 490 deps += [ |
| 491 "//base", | 491 "//base", |
| 492 "//base:i18n", | 492 "//base:i18n", |
| 493 "//base/third_party/dynamic_annotations", | 493 "//base/third_party/dynamic_annotations", |
| 494 "//crypto", | 494 "//crypto", |
| 495 "//crypto:platform", # TODO(ajwong): This used to be provided by crypto.gyp
via export_dependent_settings | 495 "//crypto:platform", |
| 496 "//gpu/command_buffer/client:gles2_interface", | 496 "//gpu/command_buffer/client:gles2_interface", |
| 497 "//gpu/command_buffer/common", | 497 "//gpu/command_buffer/common", |
| 498 "//skia", | 498 "//skia", |
| 499 "//third_party/libwebm", | 499 "//third_party/libwebm", |
| 500 "//third_party/libyuv", | 500 "//third_party/libyuv", |
| 501 "//ui/events:events_base", | 501 "//ui/events:events_base", |
| 502 "//ui/gfx", | 502 "//ui/gfx", |
| 503 "//ui/gfx/geometry", | 503 "//ui/gfx/geometry", |
| 504 "//ui/gl:gl", | 504 "//ui/gl:gl", |
| 505 "//url", | 505 "//url", |
| (...skipping 379 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 885 sources = [ | 885 sources = [ |
| 886 "filters/vpx_video_decoder_fuzzertest.cc", | 886 "filters/vpx_video_decoder_fuzzertest.cc", |
| 887 ] | 887 ] |
| 888 deps = [ | 888 deps = [ |
| 889 ":media", | 889 ":media", |
| 890 "//base", | 890 "//base", |
| 891 ] | 891 ] |
| 892 libfuzzer_options = [ "max_len = 400000" ] | 892 libfuzzer_options = [ "max_len = 400000" ] |
| 893 seed_corpus = "//media/test/data" | 893 seed_corpus = "//media/test/data" |
| 894 } | 894 } |
| OLD | NEW |