| 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 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 199 "simd/convert_yuv_to_rgb.h", | 199 "simd/convert_yuv_to_rgb.h", |
| 200 "simd/convert_yuv_to_rgb_c.cc", | 200 "simd/convert_yuv_to_rgb_c.cc", |
| 201 "simd/filter_yuv.h", | 201 "simd/filter_yuv.h", |
| 202 "simd/filter_yuv_c.cc", | 202 "simd/filter_yuv_c.cc", |
| 203 "sinc_resampler.cc", | 203 "sinc_resampler.cc", |
| 204 "sinc_resampler.h", | 204 "sinc_resampler.h", |
| 205 "stream_parser.cc", | 205 "stream_parser.cc", |
| 206 "stream_parser.h", | 206 "stream_parser.h", |
| 207 "stream_parser_buffer.cc", | 207 "stream_parser_buffer.cc", |
| 208 "stream_parser_buffer.h", | 208 "stream_parser_buffer.h", |
| 209 "subsample_entry.h", |
| 209 "surface_manager.h", | 210 "surface_manager.h", |
| 210 "text_cue.cc", | 211 "text_cue.cc", |
| 211 "text_cue.h", | 212 "text_cue.h", |
| 212 "text_ranges.cc", | 213 "text_ranges.cc", |
| 213 "text_ranges.h", | 214 "text_ranges.h", |
| 214 "text_renderer.cc", | 215 "text_renderer.cc", |
| 215 "text_renderer.h", | 216 "text_renderer.h", |
| 216 "text_track.h", | 217 "text_track.h", |
| 217 "text_track_config.cc", | 218 "text_track_config.cc", |
| 218 "text_track_config.h", | 219 "text_track_config.h", |
| (...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 473 ] | 474 ] |
| 474 configs += [ | 475 configs += [ |
| 475 "//build/config/compiler:no_size_t_to_int_warning", | 476 "//build/config/compiler:no_size_t_to_int_warning", |
| 476 "//media:media_config", | 477 "//media:media_config", |
| 477 ] | 478 ] |
| 478 deps = [ | 479 deps = [ |
| 479 ":test_support", | 480 ":test_support", |
| 480 "//base/test:test_support", | 481 "//base/test:test_support", |
| 481 "//gpu/command_buffer/common", | 482 "//gpu/command_buffer/common", |
| 482 "//media", | 483 "//media", |
| 484 "//media/base/android:anywhere_unittests", |
| 483 "//skia", | 485 "//skia", |
| 484 "//testing/gmock", | 486 "//testing/gmock", |
| 485 "//testing/gtest", | 487 "//testing/gtest", |
| 486 ] | 488 ] |
| 487 | 489 |
| 488 # Even if FFmpeg is enabled on Android we don't want these. | 490 # Even if FFmpeg is enabled on Android we don't want these. |
| 489 # TODO(watk): Refactor tests that could be made to run on Android. | 491 # TODO(watk): Refactor tests that could be made to run on Android. |
| 490 if (media_use_ffmpeg && !is_android) { | 492 if (media_use_ffmpeg && !is_android) { |
| 491 sources += [ | 493 sources += [ |
| 492 "audio_video_metadata_extractor_unittest.cc", | 494 "audio_video_metadata_extractor_unittest.cc", |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 607 | 609 |
| 608 fuzzer_test("media_container_names_fuzzer") { | 610 fuzzer_test("media_container_names_fuzzer") { |
| 609 sources = [ | 611 sources = [ |
| 610 "container_names_fuzzertest.cc", | 612 "container_names_fuzzertest.cc", |
| 611 ] | 613 ] |
| 612 deps = [ | 614 deps = [ |
| 613 "//base", | 615 "//base", |
| 614 "//media", | 616 "//media", |
| 615 ] | 617 ] |
| 616 } | 618 } |
| OLD | NEW |