Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(159)

Side by Side Diff: media/BUILD.gn

Issue 1917023003: ScreenCapture for Android phase1, part I (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: correct RGBA frame convert-scale error and rebase Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 599 matching lines...) Expand 10 before | Expand all | Expand 10 after
610 data_deps = [] 610 data_deps = []
611 611
612 if (is_android) { 612 if (is_android) {
613 sources -= [ 613 sources -= [
614 "filters/decrypting_audio_decoder_unittest.cc", 614 "filters/decrypting_audio_decoder_unittest.cc",
615 "filters/decrypting_video_decoder_unittest.cc", 615 "filters/decrypting_video_decoder_unittest.cc",
616 ] 616 ]
617 deps += [ 617 deps += [
618 "//media/base/android:media_java", 618 "//media/base/android:media_java",
619 "//media/base/android:unittests", 619 "//media/base/android:unittests",
620 "//media/capture/content/android:screen_capture_java",
620 "//media/capture/video/android:capture_java", 621 "//media/capture/video/android:capture_java",
621 "//ui/android:ui_java", 622 "//ui/android:ui_java",
622 ] 623 ]
623 } 624 }
624 if (is_mac || is_ios) { 625 if (is_mac || is_ios) {
625 deps += [ "//media/base/mac:unittests" ] 626 deps += [ "//media/base/mac:unittests" ]
626 } 627 }
627 628
628 # If ExternalClearKey is built, we can test CdmAdapter. 629 # If ExternalClearKey is built, we can test CdmAdapter.
629 if (enable_pepper_cdms) { 630 if (enable_pepper_cdms) {
(...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after
880 sources = [ 881 sources = [
881 "filters/vpx_video_decoder_fuzzertest.cc", 882 "filters/vpx_video_decoder_fuzzertest.cc",
882 ] 883 ]
883 deps = [ 884 deps = [
884 ":media", 885 ":media",
885 "//base", 886 "//base",
886 ] 887 ]
887 libfuzzer_options = [ "max_len = 400000" ] 888 libfuzzer_options = [ "max_len = 400000" ]
888 seed_corpus = "//media/test/data" 889 seed_corpus = "//media/test/data"
889 } 890 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698