| 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 449 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 460 "seekable_buffer_unittest.cc", | 460 "seekable_buffer_unittest.cc", |
| 461 "serial_runner_unittest.cc", | 461 "serial_runner_unittest.cc", |
| 462 "silent_sink_suspender_unittest.cc", | 462 "silent_sink_suspender_unittest.cc", |
| 463 "sinc_resampler_unittest.cc", | 463 "sinc_resampler_unittest.cc", |
| 464 "stream_parser_unittest.cc", | 464 "stream_parser_unittest.cc", |
| 465 "text_ranges_unittest.cc", | 465 "text_ranges_unittest.cc", |
| 466 "text_renderer_unittest.cc", | 466 "text_renderer_unittest.cc", |
| 467 "time_delta_interpolator_unittest.cc", | 467 "time_delta_interpolator_unittest.cc", |
| 468 "vector_math_unittest.cc", | 468 "vector_math_unittest.cc", |
| 469 "video_codecs_unittest.cc", | 469 "video_codecs_unittest.cc", |
| 470 "video_color_space_unittest.cc", |
| 470 "video_decoder_config_unittest.cc", | 471 "video_decoder_config_unittest.cc", |
| 471 "video_frame_pool_unittest.cc", | 472 "video_frame_pool_unittest.cc", |
| 472 "video_frame_unittest.cc", | 473 "video_frame_unittest.cc", |
| 473 "video_util_unittest.cc", | 474 "video_util_unittest.cc", |
| 474 "wall_clock_time_source_unittest.cc", | 475 "wall_clock_time_source_unittest.cc", |
| 475 ] | 476 ] |
| 476 configs += [ | 477 configs += [ |
| 477 "//build/config/compiler:no_size_t_to_int_warning", | 478 "//build/config/compiler:no_size_t_to_int_warning", |
| 478 "//media:media_config", | 479 "//media:media_config", |
| 479 ] | 480 ] |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 564 | 565 |
| 565 fuzzer_test("media_container_names_fuzzer") { | 566 fuzzer_test("media_container_names_fuzzer") { |
| 566 sources = [ | 567 sources = [ |
| 567 "container_names_fuzzertest.cc", | 568 "container_names_fuzzertest.cc", |
| 568 ] | 569 ] |
| 569 deps = [ | 570 deps = [ |
| 570 "//base", | 571 "//base", |
| 571 "//media", | 572 "//media", |
| 572 ] | 573 ] |
| 573 } | 574 } |
| OLD | NEW |