Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(120)

Side by Side Diff: media/gpu/BUILD.gn

Issue 2706653002: Added SurfaceTextureGLOwner to create / own GL objects. (Closed)
Patch Set: stopped including gl_initializer.h Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | media/gpu/avda_picture_buffer_manager.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 "android_video_decode_accelerator.h", 180 "android_video_decode_accelerator.h",
181 "avda_codec_allocator.cc", 181 "avda_codec_allocator.cc",
182 "avda_codec_allocator.h", 182 "avda_codec_allocator.h",
183 "avda_codec_image.cc", 183 "avda_codec_image.cc",
184 "avda_codec_image.h", 184 "avda_codec_image.h",
185 "avda_picture_buffer_manager.cc", 185 "avda_picture_buffer_manager.cc",
186 "avda_picture_buffer_manager.h", 186 "avda_picture_buffer_manager.h",
187 "avda_shared_state.cc", 187 "avda_shared_state.cc",
188 "avda_shared_state.h", 188 "avda_shared_state.h",
189 "avda_state_provider.h", 189 "avda_state_provider.h",
190 "surface_texture_gl_owner.cc",
191 "surface_texture_gl_owner.h",
190 ] 192 ]
191 193
192 if (enable_webrtc) { 194 if (enable_webrtc) {
193 deps += [ "//third_party/libyuv" ] 195 deps += [ "//third_party/libyuv" ]
194 sources += [ 196 sources += [
195 "android_video_encode_accelerator.cc", 197 "android_video_encode_accelerator.cc",
196 "android_video_encode_accelerator.h", 198 "android_video_encode_accelerator.h",
197 ] 199 ]
198 } 200 }
199 201
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after
427 } 429 }
428 } 430 }
429 } 431 }
430 432
431 source_set("android_video_decode_accelerator_unittests") { 433 source_set("android_video_decode_accelerator_unittests") {
432 if (is_android) { 434 if (is_android) {
433 testonly = true 435 testonly = true
434 sources = [ 436 sources = [
435 "android_video_decode_accelerator_unittest.cc", 437 "android_video_decode_accelerator_unittest.cc",
436 "avda_codec_allocator_unittest.cc", 438 "avda_codec_allocator_unittest.cc",
439 "surface_texture_gl_owner_unittest.cc",
437 ] 440 ]
438 if (enable_media_codec_video_decoder) { 441 if (enable_media_codec_video_decoder) {
439 sources += [ "android/media_codec_video_decoder_unittest.cc" ] 442 sources += [ "android/media_codec_video_decoder_unittest.cc" ]
440 } 443 }
441 deps = [ 444 deps = [
442 ":gpu", 445 ":gpu",
443 "//base/test:test_support", 446 "//base/test:test_support",
444 "//gpu:test_support", 447 "//gpu:test_support",
445 "//media/base/android", 448 "//media/base/android",
446 "//testing/gmock", 449 "//testing/gmock",
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
528 "//base/test:test_support", 531 "//base/test:test_support",
529 "//gpu:test_support", 532 "//gpu:test_support",
530 "//media/gpu/ipc/common", 533 "//media/gpu/ipc/common",
531 "//media/gpu/ipc/service", 534 "//media/gpu/ipc/service",
532 "//testing/gmock", 535 "//testing/gmock",
533 "//testing/gtest", 536 "//testing/gtest",
534 "//ui/gfx:test_support", 537 "//ui/gfx:test_support",
535 "//ui/gfx/geometry", 538 "//ui/gfx/geometry",
536 ] 539 ]
537 } 540 }
OLDNEW
« no previous file with comments | « no previous file | media/gpu/avda_picture_buffer_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698