| 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 431 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 442 ] | 442 ] |
| 443 configs += [ | 443 configs += [ |
| 444 "//build/config/compiler:no_size_t_to_int_warning", | 444 "//build/config/compiler:no_size_t_to_int_warning", |
| 445 "//media:media_config", | 445 "//media:media_config", |
| 446 ] | 446 ] |
| 447 deps = [ | 447 deps = [ |
| 448 ":test_support", | 448 ":test_support", |
| 449 "//base/test:test_support", | 449 "//base/test:test_support", |
| 450 "//gpu/command_buffer/common", | 450 "//gpu/command_buffer/common", |
| 451 "//media", | 451 "//media", |
| 452 "//media/base/android:anywhere_unit_tests", | |
| 453 "//ppapi/features", | 452 "//ppapi/features", |
| 454 "//skia", | 453 "//skia", |
| 455 "//testing/gmock", | 454 "//testing/gmock", |
| 456 "//testing/gtest", | 455 "//testing/gtest", |
| 457 "//third_party/libyuv", | 456 "//third_party/libyuv", |
| 458 ] | 457 ] |
| 459 | 458 |
| 460 # Even if FFmpeg is enabled on Android we don't want these. | 459 # Even if FFmpeg is enabled on Android we don't want these. |
| 461 # TODO(watk): Refactor tests that could be made to run on Android. | 460 # TODO(watk): Refactor tests that could be made to run on Android. |
| 462 if (media_use_ffmpeg && !is_android) { | 461 if (media_use_ffmpeg && !is_android) { |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 532 | 531 |
| 533 fuzzer_test("media_container_names_fuzzer") { | 532 fuzzer_test("media_container_names_fuzzer") { |
| 534 sources = [ | 533 sources = [ |
| 535 "container_names_fuzzertest.cc", | 534 "container_names_fuzzertest.cc", |
| 536 ] | 535 ] |
| 537 deps = [ | 536 deps = [ |
| 538 "//base", | 537 "//base", |
| 539 "//media", | 538 "//media", |
| 540 ] | 539 ] |
| 541 } | 540 } |
| OLD | NEW |