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/linux/pkg_config.gni") | 8 import("//build/config/linux/pkg_config.gni") |
9 import("//build/config/ui.gni") | 9 import("//build/config/ui.gni") |
10 import("//media/media_options.gni") | 10 import("//media/media_options.gni") |
(...skipping 548 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
559 "//media/test:pipeline_integration_tests", | 559 "//media/test:pipeline_integration_tests", |
560 "//skia", # Direct dependency required to inherit config. | 560 "//skia", # Direct dependency required to inherit config. |
561 "//testing/gmock", | 561 "//testing/gmock", |
562 "//testing/gtest", | 562 "//testing/gtest", |
563 "//third_party/widevine/cdm:version_h", | 563 "//third_party/widevine/cdm:version_h", |
564 "//ui/gfx:test_support", | 564 "//ui/gfx:test_support", |
565 "//url", | 565 "//url", |
566 ] | 566 ] |
567 | 567 |
568 if (is_android) { | 568 if (is_android) { |
| 569 isolate_file = "media_unittests.isolate" |
569 deps += [ | 570 deps += [ |
570 "//media/base/android", | 571 "//media/base/android", |
571 # TODO(GYP) | 572 # TODO(GYP) |
572 #"//testing/android/native_test:native_test_native_code" | 573 #"//testing/android/native_test:native_test_native_code" |
573 ] | 574 ] |
574 } | 575 } |
575 | 576 |
576 if (media_use_ffmpeg) { | 577 if (media_use_ffmpeg) { |
577 sources += [ | 578 sources += [ |
578 "ffmpeg/ffmpeg_common_unittest.cc", | 579 "ffmpeg/ffmpeg_common_unittest.cc", |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
650 "//media/base:test_support", | 651 "//media/base:test_support", |
651 "//media/test:pipeline_integration_perftests", | 652 "//media/test:pipeline_integration_perftests", |
652 "//testing/gmock", | 653 "//testing/gmock", |
653 "//testing/gtest", | 654 "//testing/gtest", |
654 "//testing/perf", | 655 "//testing/perf", |
655 "//third_party/widevine/cdm:version_h", | 656 "//third_party/widevine/cdm:version_h", |
656 "//ui/gfx:test_support", | 657 "//ui/gfx:test_support", |
657 ] | 658 ] |
658 if (is_android) { | 659 if (is_android) { |
659 deps += [ "//ui/gl" ] | 660 deps += [ "//ui/gl" ] |
| 661 isolate_file = "media_perftests.isolate" |
660 } | 662 } |
661 if (media_use_ffmpeg) { | 663 if (media_use_ffmpeg) { |
662 deps += [ "//third_party/ffmpeg" ] # Direct dependency required to inherit
config. | 664 deps += [ "//third_party/ffmpeg" ] # Direct dependency required to inherit
config. |
663 } | 665 } |
664 } | 666 } |
665 | 667 |
666 # For running the subset of media_unittests that might require audio hardware | 668 # For running the subset of media_unittests that might require audio hardware |
667 # separately on GPU bots. media_unittests includes these too. | 669 # separately on GPU bots. media_unittests includes these too. |
668 test("audio_unittests") { | 670 test("audio_unittests") { |
669 sources = [ | 671 sources = [ |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
735 "//media/base:test_support", | 737 "//media/base:test_support", |
736 "//media/test:pipeline_integration_tests", | 738 "//media/test:pipeline_integration_tests", |
737 "//testing/gmock", | 739 "//testing/gmock", |
738 "//testing/gtest", | 740 "//testing/gtest", |
739 "//third_party/ffmpeg", | 741 "//third_party/ffmpeg", |
740 "//ui/gfx/geometry", | 742 "//ui/gfx/geometry", |
741 "//ui/gfx:test_support", | 743 "//ui/gfx:test_support", |
742 ] | 744 ] |
743 } | 745 } |
744 } | 746 } |
OLD | NEW |