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

Side by Side Diff: talk/libjingle.gyp

Issue 1357923002: wip Move SurfaceTexture.updateTexImage() from video renderers into MediaCodecVideoDecoder (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 5 years, 3 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 # 1 #
2 # libjingle 2 # libjingle
3 # Copyright 2012 Google Inc. 3 # Copyright 2012 Google Inc.
4 # 4 #
5 # Redistribution and use in source and binary forms, with or without 5 # Redistribution and use in source and binary forms, with or without
6 # modification, are permitted provided that the following conditions are met: 6 # modification, are permitted provided that the following conditions are met:
7 # 7 #
8 # 1. Redistributions of source code must retain the above copyright notice, 8 # 1. Redistributions of source code must retain the above copyright notice,
9 # this list of conditions and the following disclaimer. 9 # this list of conditions and the following disclaimer.
10 # 2. Redistributions in binary form must reproduce the above copyright notice, 10 # 2. Redistributions in binary form must reproduce the above copyright notice,
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 'target_name': 'libjingle_peerconnection_so', 46 'target_name': 'libjingle_peerconnection_so',
47 'type': 'shared_library', 47 'type': 'shared_library',
48 'dependencies': [ 48 'dependencies': [
49 'libjingle_peerconnection', 49 'libjingle_peerconnection',
50 ], 50 ],
51 'sources': [ 51 'sources': [
52 'app/webrtc/java/jni/classreferenceholder.cc', 52 'app/webrtc/java/jni/classreferenceholder.cc',
53 'app/webrtc/java/jni/classreferenceholder.h', 53 'app/webrtc/java/jni/classreferenceholder.h',
54 'app/webrtc/java/jni/jni_helpers.cc', 54 'app/webrtc/java/jni/jni_helpers.cc',
55 'app/webrtc/java/jni/jni_helpers.h', 55 'app/webrtc/java/jni/jni_helpers.h',
56 'app/webrtc/java/jni/native_handle_impl.cc',
56 'app/webrtc/java/jni/native_handle_impl.h', 57 'app/webrtc/java/jni/native_handle_impl.h',
57 'app/webrtc/java/jni/peerconnection_jni.cc', 58 'app/webrtc/java/jni/peerconnection_jni.cc',
58 ], 59 ],
59 'include_dirs': [ 60 'include_dirs': [
60 '<(libyuv_dir)/include', 61 '<(libyuv_dir)/include',
61 ], 62 ],
62 'conditions': [ 63 'conditions': [
63 ['build_icu==1', { 64 ['build_icu==1', {
64 'dependencies': [ 65 'dependencies': [
65 '<(DEPTH)/third_party/icu/icu.gyp:icuuc', 66 '<(DEPTH)/third_party/icu/icu.gyp:icuuc',
(...skipping 714 matching lines...) Expand 10 before | Expand all | Expand 10 after
780 ['OS=="android" and build_with_chromium==0', { 781 ['OS=="android" and build_with_chromium==0', {
781 'sources': [ 782 'sources': [
782 'app/webrtc/androidvideocapturer.h', 783 'app/webrtc/androidvideocapturer.h',
783 'app/webrtc/androidvideocapturer.cc', 784 'app/webrtc/androidvideocapturer.cc',
784 ], 785 ],
785 }], 786 }],
786 ], 787 ],
787 }, # target libjingle_peerconnection 788 }, # target libjingle_peerconnection
788 ], 789 ],
789 } 790 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698