| 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 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 171 "pipeline_impl.cc", | 171 "pipeline_impl.cc", |
| 172 "pipeline_impl.h", | 172 "pipeline_impl.h", |
| 173 "pipeline_metadata.h", | 173 "pipeline_metadata.h", |
| 174 "pipeline_status.h", | 174 "pipeline_status.h", |
| 175 "player_tracker.cc", | 175 "player_tracker.cc", |
| 176 "player_tracker.h", | 176 "player_tracker.h", |
| 177 "ranges.cc", | 177 "ranges.cc", |
| 178 "ranges.h", | 178 "ranges.h", |
| 179 "renderer.cc", | 179 "renderer.cc", |
| 180 "renderer.h", | 180 "renderer.h", |
| 181 "renderer_client.h", |
| 181 "renderer_factory.cc", | 182 "renderer_factory.cc", |
| 182 "renderer_factory.h", | 183 "renderer_factory.h", |
| 183 "sample_format.cc", | 184 "sample_format.cc", |
| 184 "sample_format.h", | 185 "sample_format.h", |
| 185 "seekable_buffer.cc", | 186 "seekable_buffer.cc", |
| 186 "seekable_buffer.h", | 187 "seekable_buffer.h", |
| 187 "serial_runner.cc", | 188 "serial_runner.cc", |
| 188 "serial_runner.h", | 189 "serial_runner.h", |
| 189 "simd/convert_rgb_to_yuv.h", | 190 "simd/convert_rgb_to_yuv.h", |
| 190 "simd/convert_rgb_to_yuv_c.cc", | 191 "simd/convert_rgb_to_yuv_c.cc", |
| (...skipping 405 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 596 | 597 |
| 597 fuzzer_test("media_container_names_fuzzer") { | 598 fuzzer_test("media_container_names_fuzzer") { |
| 598 sources = [ | 599 sources = [ |
| 599 "container_names_fuzzertest.cc", | 600 "container_names_fuzzertest.cc", |
| 600 ] | 601 ] |
| 601 deps = [ | 602 deps = [ |
| 602 "//base", | 603 "//base", |
| 603 "//media", | 604 "//media", |
| 604 ] | 605 ] |
| 605 } | 606 } |
| OLD | NEW |