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

Side by Side Diff: media/BUILD.gn

Issue 1140113002: Implement screen capture for android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add ScreenCaptureMachineAndroid which inherited from content::VideoCaptureMachine Created 5 years, 7 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
OLDNEW
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/linux/pkg_config.gni") 8 import("//build/config/linux/pkg_config.gni")
9 import("//build/config/ui.gni") 9 import("//build/config/ui.gni")
10 import("//media/media_options.gni") 10 import("//media/media_options.gni")
(...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after
307 if (media_use_libvpx) { 307 if (media_use_libvpx) {
308 sources += [ 308 sources += [
309 "filters/vpx_video_decoder.cc", 309 "filters/vpx_video_decoder.cc",
310 "filters/vpx_video_decoder.h", 310 "filters/vpx_video_decoder.h",
311 ] 311 ]
312 deps += [ "//third_party/libvpx" ] 312 deps += [ "//third_party/libvpx" ]
313 } 313 }
314 314
315 if (is_android) { 315 if (is_android) {
316 sources += [ 316 sources += [
317 "screen_capture/android/screen_capture_device_android.cc",
318 "screen_capture/android/screen_capture_device_android.h",
319 "screen_capture/android/screen_capture_factory_android.cc",
320 "screen_capture/android/screen_capture_factory_android.h",
321 "screen_capture/android/screen_capture_machine_android.cc",
322 "screen_capture/android/screen_capture_machine_android.h",
317 "video/capture/android/video_capture_device_android.cc", 323 "video/capture/android/video_capture_device_android.cc",
318 "video/capture/android/video_capture_device_android.h", 324 "video/capture/android/video_capture_device_android.h",
319 "video/capture/android/video_capture_device_factory_android.cc", 325 "video/capture/android/video_capture_device_factory_android.cc",
320 "video/capture/android/video_capture_device_factory_android.h", 326 "video/capture/android/video_capture_device_factory_android.h",
321 ] 327 ]
322 deps += [ 328 deps += [
323 "//media/base/android", 329 "//media/base/android",
324 "//media/base/android:media_jni_headers", 330 "//media/base/android:media_jni_headers",
331 "//media/base/android:screen_capture_jni_headers",
325 "//media/base/android:video_capture_jni_headers", 332 "//media/base/android:video_capture_jni_headers",
326 ] 333 ]
327 allow_circular_includes_from = [ "//media/base/android" ] 334 allow_circular_includes_from = [ "//media/base/android" ]
328 } else { 335 } else {
329 sources += [ 336 sources += [
330 "filters/opus_audio_decoder.cc", 337 "filters/opus_audio_decoder.cc",
331 "filters/opus_audio_decoder.h", 338 "filters/opus_audio_decoder.h",
332 "renderers/default_renderer_factory.cc", 339 "renderers/default_renderer_factory.cc",
333 "renderers/default_renderer_factory.h", 340 "renderers/default_renderer_factory.h",
334 ] 341 ]
(...skipping 401 matching lines...) Expand 10 before | Expand all | Expand 10 after
736 "//media/base:test_support", 743 "//media/base:test_support",
737 "//media/test:pipeline_integration_tests", 744 "//media/test:pipeline_integration_tests",
738 "//testing/gmock", 745 "//testing/gmock",
739 "//testing/gtest", 746 "//testing/gtest",
740 "//third_party/ffmpeg", 747 "//third_party/ffmpeg",
741 "//ui/gfx/geometry", 748 "//ui/gfx/geometry",
742 "//ui/gfx:test_support", 749 "//ui/gfx:test_support",
743 ] 750 ]
744 } 751 }
745 } 752 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698