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

Side by Side Diff: webrtc/api/BUILD.gn

Issue 2456873002: Android EglRenderer: Add Bitmap frame listener functionality (Closed)
Patch Set: Move notifyCallbacks outside rending time measurement period. Created 4 years, 1 month 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 | webrtc/api/android/java/src/org/webrtc/EglRenderer.java » ('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 (c) 2015 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2015 The WebRTC project authors. All Rights Reserved.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license 3 # Use of this source code is governed by a BSD-style license
4 # that can be found in the LICENSE file in the root of the source 4 # that can be found in the LICENSE file in the root of the source
5 # tree. An additional intellectual property rights grant can be found 5 # tree. An additional intellectual property rights grant can be found
6 # in the file PATENTS. All contributing project authors may 6 # in the file PATENTS. All contributing project authors may
7 # be found in the AUTHORS file in the root of the source tree. 7 # be found in the AUTHORS file in the root of the source tree.
8 8
9 import("../build/webrtc.gni") 9 import("../build/webrtc.gni")
10 if (is_android) { 10 if (is_android) {
(...skipping 449 matching lines...) Expand 10 before | Expand all | Expand 10 after
460 if (is_android) { 460 if (is_android) {
461 instrumentation_test_apk("libjingle_peerconnection_android_unittest") { 461 instrumentation_test_apk("libjingle_peerconnection_android_unittest") {
462 apk_name = "libjingle_peerconnection_android_unittest" 462 apk_name = "libjingle_peerconnection_android_unittest"
463 android_manifest = "androidtests/AndroidManifest.xml" 463 android_manifest = "androidtests/AndroidManifest.xml"
464 464
465 java_files = [ 465 java_files = [
466 "androidtests/src/org/webrtc/Camera1CapturerUsingByteBufferTest.java", 466 "androidtests/src/org/webrtc/Camera1CapturerUsingByteBufferTest.java",
467 "androidtests/src/org/webrtc/Camera1CapturerUsingTextureTest.java", 467 "androidtests/src/org/webrtc/Camera1CapturerUsingTextureTest.java",
468 "androidtests/src/org/webrtc/Camera2CapturerTest.java", 468 "androidtests/src/org/webrtc/Camera2CapturerTest.java",
469 "androidtests/src/org/webrtc/CameraVideoCapturerTestFixtures.java", 469 "androidtests/src/org/webrtc/CameraVideoCapturerTestFixtures.java",
470 "androidtests/src/org/webrtc/EglRendererTest.java",
470 "androidtests/src/org/webrtc/GlRectDrawerTest.java", 471 "androidtests/src/org/webrtc/GlRectDrawerTest.java",
471 "androidtests/src/org/webrtc/MediaCodecVideoEncoderTest.java", 472 "androidtests/src/org/webrtc/MediaCodecVideoEncoderTest.java",
472 "androidtests/src/org/webrtc/NetworkMonitorTest.java", 473 "androidtests/src/org/webrtc/NetworkMonitorTest.java",
473 "androidtests/src/org/webrtc/PeerConnectionTest.java", 474 "androidtests/src/org/webrtc/PeerConnectionTest.java",
474 "androidtests/src/org/webrtc/RendererCommonTest.java", 475 "androidtests/src/org/webrtc/RendererCommonTest.java",
475 "androidtests/src/org/webrtc/SurfaceTextureHelperTest.java", 476 "androidtests/src/org/webrtc/SurfaceTextureHelperTest.java",
476 "androidtests/src/org/webrtc/SurfaceViewRendererOnMeasureTest.java", 477 "androidtests/src/org/webrtc/SurfaceViewRendererOnMeasureTest.java",
477 ] 478 ]
478 479
479 deps = [ 480 deps = [
480 ":libjingle_peerconnection_android_unittest_resources", 481 ":libjingle_peerconnection_android_unittest_resources",
481 ":libjingle_peerconnection_java", 482 ":libjingle_peerconnection_java",
482 "../base:base_java", 483 "../base:base_java",
483 "//base:base_java", 484 "//base:base_java",
484 ] 485 ]
485 486
486 shared_libraries = [ ":libjingle_peerconnection_so" ] 487 shared_libraries = [ ":libjingle_peerconnection_so" ]
487 } 488 }
488 489
489 android_resources("libjingle_peerconnection_android_unittest_resources") { 490 android_resources("libjingle_peerconnection_android_unittest_resources") {
490 resource_dirs = [ "androidtests/res" ] 491 resource_dirs = [ "androidtests/res" ]
491 custom_package = "org.webrtc" 492 custom_package = "org.webrtc"
492 } 493 }
493 } 494 }
494 } 495 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/api/android/java/src/org/webrtc/EglRenderer.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698