| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//media/gpu/args.gni") | 7 import("//media/gpu/args.gni") |
| 8 import("//media/media_options.gni") | 8 import("//media/media_options.gni") |
| 9 import("//testing/test.gni") | 9 import("//testing/test.gni") |
| 10 | 10 |
| (...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 191 "avda_picture_buffer_manager.h", | 191 "avda_picture_buffer_manager.h", |
| 192 "avda_shared_state.cc", | 192 "avda_shared_state.cc", |
| 193 "avda_shared_state.h", | 193 "avda_shared_state.h", |
| 194 "avda_state_provider.h", | 194 "avda_state_provider.h", |
| 195 "avda_surface_bundle.cc", | 195 "avda_surface_bundle.cc", |
| 196 "avda_surface_bundle.h", | 196 "avda_surface_bundle.h", |
| 197 "content_video_view_overlay.cc", | 197 "content_video_view_overlay.cc", |
| 198 "content_video_view_overlay.h", | 198 "content_video_view_overlay.h", |
| 199 "content_video_view_overlay_allocator.cc", | 199 "content_video_view_overlay_allocator.cc", |
| 200 "content_video_view_overlay_allocator.h", | 200 "content_video_view_overlay_allocator.h", |
| 201 "content_video_view_overlay_factory.cc", | |
| 202 "content_video_view_overlay_factory.h", | |
| 203 "surface_texture_gl_owner.cc", | 201 "surface_texture_gl_owner.cc", |
| 204 "surface_texture_gl_owner.h", | 202 "surface_texture_gl_owner.h", |
| 205 ] | 203 ] |
| 206 | 204 |
| 207 if (enable_webrtc) { | 205 if (enable_webrtc) { |
| 208 deps += [ "//third_party/libyuv" ] | 206 deps += [ "//third_party/libyuv" ] |
| 209 sources += [ | 207 sources += [ |
| 210 "android_video_encode_accelerator.cc", | 208 "android_video_encode_accelerator.cc", |
| 211 "android_video_encode_accelerator.h", | 209 "android_video_encode_accelerator.h", |
| 212 ] | 210 ] |
| (...skipping 335 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 548 "//base/test:test_support", | 546 "//base/test:test_support", |
| 549 "//gpu:test_support", | 547 "//gpu:test_support", |
| 550 "//media/gpu/ipc/common", | 548 "//media/gpu/ipc/common", |
| 551 "//media/gpu/ipc/service", | 549 "//media/gpu/ipc/service", |
| 552 "//testing/gmock", | 550 "//testing/gmock", |
| 553 "//testing/gtest", | 551 "//testing/gtest", |
| 554 "//ui/gfx:test_support", | 552 "//ui/gfx:test_support", |
| 555 "//ui/gfx/geometry", | 553 "//ui/gfx/geometry", |
| 556 ] | 554 ] |
| 557 } | 555 } |
| OLD | NEW |