| 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 432 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 443 "pipeline_impl_unittest.cc", | 443 "pipeline_impl_unittest.cc", |
| 444 "ranges_unittest.cc", | 444 "ranges_unittest.cc", |
| 445 "seekable_buffer_unittest.cc", | 445 "seekable_buffer_unittest.cc", |
| 446 "serial_runner_unittest.cc", | 446 "serial_runner_unittest.cc", |
| 447 "silent_sink_suspender_unittest.cc", | 447 "silent_sink_suspender_unittest.cc", |
| 448 "sinc_resampler_unittest.cc", | 448 "sinc_resampler_unittest.cc", |
| 449 "stream_parser_unittest.cc", | 449 "stream_parser_unittest.cc", |
| 450 "text_ranges_unittest.cc", | 450 "text_ranges_unittest.cc", |
| 451 "text_renderer_unittest.cc", | 451 "text_renderer_unittest.cc", |
| 452 "time_delta_interpolator_unittest.cc", | 452 "time_delta_interpolator_unittest.cc", |
| 453 "user_input_monitor_unittest.cc", | |
| 454 "vector_math_unittest.cc", | 453 "vector_math_unittest.cc", |
| 455 "video_codecs_unittest.cc", | 454 "video_codecs_unittest.cc", |
| 456 "video_decoder_config_unittest.cc", | 455 "video_decoder_config_unittest.cc", |
| 457 "video_frame_pool_unittest.cc", | 456 "video_frame_pool_unittest.cc", |
| 458 "video_frame_unittest.cc", | 457 "video_frame_unittest.cc", |
| 459 "video_util_unittest.cc", | 458 "video_util_unittest.cc", |
| 460 "wall_clock_time_source_unittest.cc", | 459 "wall_clock_time_source_unittest.cc", |
| 461 "yuv_convert_unittest.cc", | 460 "yuv_convert_unittest.cc", |
| 462 ] | 461 ] |
| 463 configs += [ | 462 configs += [ |
| (...skipping 24 matching lines...) Expand all Loading... |
| 488 if (is_android) { | 487 if (is_android) { |
| 489 deps += [ | 488 deps += [ |
| 490 "//media/base/android:unit_tests", | 489 "//media/base/android:unit_tests", |
| 491 "//ui/gl", | 490 "//ui/gl", |
| 492 ] | 491 ] |
| 493 } | 492 } |
| 494 | 493 |
| 495 if (current_cpu == "x86" || current_cpu == "x64") { | 494 if (current_cpu == "x86" || current_cpu == "x64") { |
| 496 sources += [ "simd/convert_rgb_to_yuv_unittest.cc" ] | 495 sources += [ "simd/convert_rgb_to_yuv_unittest.cc" ] |
| 497 } | 496 } |
| 497 if (is_linux || is_win) { |
| 498 sources += [ "keyboard_event_counter_unittest.cc" ] |
| 499 } |
| 498 } | 500 } |
| 499 | 501 |
| 500 test("media_base_unittests") { | 502 test("media_base_unittests") { |
| 501 deps = [ | 503 deps = [ |
| 502 ":unit_tests", | 504 ":unit_tests", |
| 503 "//media/test:run_all_unittests", | 505 "//media/test:run_all_unittests", |
| 504 ] | 506 ] |
| 505 | 507 |
| 506 if (is_android) { | 508 if (is_android) { |
| 507 deps += [ | 509 deps += [ |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 617 | 619 |
| 618 fuzzer_test("media_container_names_fuzzer") { | 620 fuzzer_test("media_container_names_fuzzer") { |
| 619 sources = [ | 621 sources = [ |
| 620 "container_names_fuzzertest.cc", | 622 "container_names_fuzzertest.cc", |
| 621 ] | 623 ] |
| 622 deps = [ | 624 deps = [ |
| 623 "//base", | 625 "//base", |
| 624 "//media", | 626 "//media", |
| 625 ] | 627 ] |
| 626 } | 628 } |
| OLD | NEW |