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

Side by Side Diff: media/base/BUILD.gn

Issue 2672313006: media: Remove the unused NdkMediaCodecBridge (Closed)
Patch Set: Created 3 years, 10 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/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 450 matching lines...) Expand 10 before | Expand all | Expand 10 after
461 ] 461 ]
462 configs += [ 462 configs += [
463 "//build/config/compiler:no_size_t_to_int_warning", 463 "//build/config/compiler:no_size_t_to_int_warning",
464 "//media:media_config", 464 "//media:media_config",
465 ] 465 ]
466 deps = [ 466 deps = [
467 ":test_support", 467 ":test_support",
468 "//base/test:test_support", 468 "//base/test:test_support",
469 "//gpu/command_buffer/common", 469 "//gpu/command_buffer/common",
470 "//media", 470 "//media",
471 "//media/base/android:anywhere_unit_tests",
472 "//ppapi/features", 471 "//ppapi/features",
473 "//skia", 472 "//skia",
474 "//testing/gmock", 473 "//testing/gmock",
475 "//testing/gtest", 474 "//testing/gtest",
476 ] 475 ]
477 476
478 # Even if FFmpeg is enabled on Android we don't want these. 477 # Even if FFmpeg is enabled on Android we don't want these.
479 # TODO(watk): Refactor tests that could be made to run on Android. 478 # TODO(watk): Refactor tests that could be made to run on Android.
480 if (media_use_ffmpeg && !is_android) { 479 if (media_use_ffmpeg && !is_android) {
481 sources += [ 480 sources += [
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
619 618
620 fuzzer_test("media_container_names_fuzzer") { 619 fuzzer_test("media_container_names_fuzzer") {
621 sources = [ 620 sources = [
622 "container_names_fuzzertest.cc", 621 "container_names_fuzzertest.cc",
623 ] 622 ]
624 deps = [ 623 deps = [
625 "//base", 624 "//base",
626 "//media", 625 "//media",
627 ] 626 ]
628 } 627 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698