| 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 590 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 601 test("media_unittests") { | 601 test("media_unittests") { |
| 602 sources = [ | 602 sources = [ |
| 603 "capture/content/animated_content_sampler_unittest.cc", | 603 "capture/content/animated_content_sampler_unittest.cc", |
| 604 "capture/content/capture_resolution_chooser_unittest.cc", | 604 "capture/content/capture_resolution_chooser_unittest.cc", |
| 605 "capture/content/feedback_signal_accumulator_unittest.cc", | 605 "capture/content/feedback_signal_accumulator_unittest.cc", |
| 606 "capture/content/smooth_event_sampler_unittest.cc", | 606 "capture/content/smooth_event_sampler_unittest.cc", |
| 607 "capture/content/video_capture_oracle_unittest.cc", | 607 "capture/content/video_capture_oracle_unittest.cc", |
| 608 "capture/video/fake_video_capture_device_unittest.cc", | 608 "capture/video/fake_video_capture_device_unittest.cc", |
| 609 "capture/video/video_capture_device_unittest.cc", | 609 "capture/video/video_capture_device_unittest.cc", |
| 610 "cdm/aes_decryptor_unittest.cc", | 610 "cdm/aes_decryptor_unittest.cc", |
| 611 "cdm/cdm_adapter_unittest.cc", |
| 611 "cdm/json_web_key_unittest.cc", | 612 "cdm/json_web_key_unittest.cc", |
| 612 "filters/audio_clock_unittest.cc", | 613 "filters/audio_clock_unittest.cc", |
| 613 "filters/audio_decoder_selector_unittest.cc", | 614 "filters/audio_decoder_selector_unittest.cc", |
| 614 "filters/audio_renderer_algorithm_unittest.cc", | 615 "filters/audio_renderer_algorithm_unittest.cc", |
| 615 "filters/chunk_demuxer_unittest.cc", | 616 "filters/chunk_demuxer_unittest.cc", |
| 616 "filters/decrypting_audio_decoder_unittest.cc", | 617 "filters/decrypting_audio_decoder_unittest.cc", |
| 617 "filters/decrypting_demuxer_stream_unittest.cc", | 618 "filters/decrypting_demuxer_stream_unittest.cc", |
| 618 "filters/decrypting_video_decoder_unittest.cc", | 619 "filters/decrypting_video_decoder_unittest.cc", |
| 619 "filters/fake_video_decoder.cc", | 620 "filters/fake_video_decoder.cc", |
| 620 "filters/fake_video_decoder.h", | 621 "filters/fake_video_decoder.h", |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 666 ":media", | 667 ":media", |
| 667 ":test_support", | 668 ":test_support", |
| 668 "//base/allocator", | 669 "//base/allocator", |
| 669 "//base/test:test_support", | 670 "//base/test:test_support", |
| 670 "//gpu/command_buffer/common", | 671 "//gpu/command_buffer/common", |
| 671 "//gpu:test_support", | 672 "//gpu:test_support", |
| 672 "//media/audio:unittests", | 673 "//media/audio:unittests", |
| 673 "//media/audio:test_support", | 674 "//media/audio:test_support", |
| 674 "//media/base:unittests", | 675 "//media/base:unittests", |
| 675 "//media/base:test_support", | 676 "//media/base:test_support", |
| 677 "//media/cdm/ppapi:clearkeycdm", |
| 676 "//media/test:pipeline_integration_tests", | 678 "//media/test:pipeline_integration_tests", |
| 677 "//skia", # Direct dependency required to inherit config. | 679 "//skia", # Direct dependency required to inherit config. |
| 678 "//testing/gmock", | 680 "//testing/gmock", |
| 679 "//testing/gtest", | 681 "//testing/gtest", |
| 680 "//third_party/widevine/cdm:version_h", | 682 "//third_party/widevine/cdm:version_h", |
| 681 "//ui/gfx:test_support", | 683 "//ui/gfx:test_support", |
| 682 "//url", | 684 "//url", |
| 683 ] | 685 ] |
| 684 | 686 |
| 685 if (is_android) { | 687 if (is_android) { |
| (...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 883 "//media/base:test_support", | 885 "//media/base:test_support", |
| 884 "//media/test:pipeline_integration_tests", | 886 "//media/test:pipeline_integration_tests", |
| 885 "//testing/gmock", | 887 "//testing/gmock", |
| 886 "//testing/gtest", | 888 "//testing/gtest", |
| 887 "//third_party/ffmpeg", | 889 "//third_party/ffmpeg", |
| 888 "//ui/gfx/geometry", | 890 "//ui/gfx/geometry", |
| 889 "//ui/gfx:test_support", | 891 "//ui/gfx:test_support", |
| 890 ] | 892 ] |
| 891 } | 893 } |
| 892 } | 894 } |
| OLD | NEW |