| 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/ui.gni") | 7 import("//build/config/ui.gni") |
| 8 import("//build/config/linux/pkg_config.gni") | 8 import("//build/config/linux/pkg_config.gni") |
| 9 import("//media/media_options.gni") | 9 import("//media/media_options.gni") |
| 10 | 10 |
| (...skipping 601 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 612 deps += [ "//ui/gl" ] | 612 deps += [ "//ui/gl" ] |
| 613 } | 613 } |
| 614 if (media_use_ffmpeg) { | 614 if (media_use_ffmpeg) { |
| 615 deps += [ | 615 deps += [ |
| 616 "//third_party/ffmpeg", # Direct dependency required to inherit config. | 616 "//third_party/ffmpeg", # Direct dependency required to inherit config. |
| 617 ] | 617 ] |
| 618 } | 618 } |
| 619 } | 619 } |
| 620 | 620 |
| 621 source_set("test_support") { | 621 source_set("test_support") { |
| 622 testonly = true |
| 622 sources = [ | 623 sources = [ |
| 623 "filters/clockless_video_frame_scheduler.cc", | 624 "filters/clockless_video_frame_scheduler.cc", |
| 624 "filters/clockless_video_frame_scheduler.h", | 625 "filters/clockless_video_frame_scheduler.h", |
| 625 "filters/mock_gpu_video_accelerator_factories.cc", | 626 "filters/mock_gpu_video_accelerator_factories.cc", |
| 626 "filters/mock_gpu_video_accelerator_factories.h", | 627 "filters/mock_gpu_video_accelerator_factories.h", |
| 627 "filters/test_video_frame_scheduler.cc", | 628 "filters/test_video_frame_scheduler.cc", |
| 628 "filters/test_video_frame_scheduler.h", | 629 "filters/test_video_frame_scheduler.h", |
| 629 "video/mock_video_decode_accelerator.cc", | 630 "video/mock_video_decode_accelerator.cc", |
| 630 "video/mock_video_decode_accelerator.h", | 631 "video/mock_video_decode_accelerator.h", |
| 631 ] | 632 ] |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 746 java_cpp_template("media_android_imageformat_list") { | 747 java_cpp_template("media_android_imageformat_list") { |
| 747 sources = [ | 748 sources = [ |
| 748 "base/android/java/src/org/chromium/media/ImageFormat.template", | 749 "base/android/java/src/org/chromium/media/ImageFormat.template", |
| 749 ] | 750 ] |
| 750 inputs = [ | 751 inputs = [ |
| 751 "video/capture/android/imageformat_list.h" | 752 "video/capture/android/imageformat_list.h" |
| 752 ] | 753 ] |
| 753 package_name = "org/chromium/media" | 754 package_name = "org/chromium/media" |
| 754 } | 755 } |
| 755 } | 756 } |
| OLD | NEW |