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

Side by Side Diff: talk/libjingle.gyp

Issue 1391703003: Create network change notifier. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@master
Patch Set: Created 5 years, 2 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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 'use_native_jni_exports': 1, 96 'use_native_jni_exports': 1,
97 }, 97 },
98 }], 98 }],
99 ['OS=="android" and build_with_chromium==0', { 99 ['OS=="android" and build_with_chromium==0', {
100 'sources': [ 100 'sources': [
101 'app/webrtc/java/jni/androidmediacodeccommon.h', 101 'app/webrtc/java/jni/androidmediacodeccommon.h',
102 'app/webrtc/java/jni/androidmediadecoder_jni.cc', 102 'app/webrtc/java/jni/androidmediadecoder_jni.cc',
103 'app/webrtc/java/jni/androidmediadecoder_jni.h', 103 'app/webrtc/java/jni/androidmediadecoder_jni.h',
104 'app/webrtc/java/jni/androidmediaencoder_jni.cc', 104 'app/webrtc/java/jni/androidmediaencoder_jni.cc',
105 'app/webrtc/java/jni/androidmediaencoder_jni.h', 105 'app/webrtc/java/jni/androidmediaencoder_jni.h',
106 'app/webrtc/java/jni/androidnetworkmonitor_jni.cc',
107 'app/webrtc/java/jni/androidnetworkmonitor_jni.h',
106 'app/webrtc/java/jni/surfacetexturehelper_jni.cc', 108 'app/webrtc/java/jni/surfacetexturehelper_jni.cc',
107 'app/webrtc/java/jni/surfacetexturehelper_jni.h', 109 'app/webrtc/java/jni/surfacetexturehelper_jni.h',
108 ] 110 ]
109 }], 111 }],
110 ], 112 ],
111 }, 113 },
112 { 114 {
113 'target_name': 'libjingle_peerconnection_jar', 115 'target_name': 'libjingle_peerconnection_jar',
114 'type': 'none', 116 'type': 'none',
115 'actions': [ 117 'actions': [
(...skipping 30 matching lines...) Expand all
146 ], 148 ],
147 'android_java_files': [ 149 'android_java_files': [
148 'app/webrtc/java/android/org/webrtc/Camera2Enumerator.java', 150 'app/webrtc/java/android/org/webrtc/Camera2Enumerator.java',
149 'app/webrtc/java/android/org/webrtc/CameraEnumerationAndroid.j ava', 151 'app/webrtc/java/android/org/webrtc/CameraEnumerationAndroid.j ava',
150 'app/webrtc/java/android/org/webrtc/CameraEnumerator.java', 152 'app/webrtc/java/android/org/webrtc/CameraEnumerator.java',
151 'app/webrtc/java/android/org/webrtc/EglBase.java', 153 'app/webrtc/java/android/org/webrtc/EglBase.java',
152 'app/webrtc/java/android/org/webrtc/GlRectDrawer.java', 154 'app/webrtc/java/android/org/webrtc/GlRectDrawer.java',
153 'app/webrtc/java/android/org/webrtc/GlShader.java', 155 'app/webrtc/java/android/org/webrtc/GlShader.java',
154 'app/webrtc/java/android/org/webrtc/GlUtil.java', 156 'app/webrtc/java/android/org/webrtc/GlUtil.java',
155 'app/webrtc/java/android/org/webrtc/GlTextureFrameBuffer.java' , 157 'app/webrtc/java/android/org/webrtc/GlTextureFrameBuffer.java' ,
158 'app/webrtc/java/android/org/webrtc/NetworkMonitor.java',
159 'app/webrtc/java/android/org/webrtc/NetworkMonitorAutoDetect.j ava',
156 'app/webrtc/java/android/org/webrtc/RendererCommon.java', 160 'app/webrtc/java/android/org/webrtc/RendererCommon.java',
157 'app/webrtc/java/android/org/webrtc/SurfaceTextureHelper.java' , 161 'app/webrtc/java/android/org/webrtc/SurfaceTextureHelper.java' ,
158 'app/webrtc/java/android/org/webrtc/SurfaceViewRenderer.java', 162 'app/webrtc/java/android/org/webrtc/SurfaceViewRenderer.java',
159 'app/webrtc/java/android/org/webrtc/ThreadUtils.java', 163 'app/webrtc/java/android/org/webrtc/ThreadUtils.java',
160 'app/webrtc/java/android/org/webrtc/VideoCapturerAndroid.java' , 164 'app/webrtc/java/android/org/webrtc/VideoCapturerAndroid.java' ,
161 'app/webrtc/java/android/org/webrtc/VideoRendererGui.java', 165 'app/webrtc/java/android/org/webrtc/VideoRendererGui.java',
162 'app/webrtc/java/src/org/webrtc/MediaCodecVideoDecoder.java', 166 'app/webrtc/java/src/org/webrtc/MediaCodecVideoDecoder.java',
163 'app/webrtc/java/src/org/webrtc/MediaCodecVideoEncoder.java', 167 'app/webrtc/java/src/org/webrtc/MediaCodecVideoEncoder.java',
164 '<(webrtc_modules_dir)/video_render/android/java/src/org/webrt c/videoengine/ViEAndroidGLES20.java', 168 '<(webrtc_modules_dir)/video_render/android/java/src/org/webrt c/videoengine/ViEAndroidGLES20.java',
165 '<(webrtc_modules_dir)/video_render/android/java/src/org/webrt c/videoengine/ViERenderer.java', 169 '<(webrtc_modules_dir)/video_render/android/java/src/org/webrt c/videoengine/ViERenderer.java',
(...skipping 622 matching lines...) Expand 10 before | Expand all | Expand 10 after
788 ['OS=="android" and build_with_chromium==0', { 792 ['OS=="android" and build_with_chromium==0', {
789 'sources': [ 793 'sources': [
790 'app/webrtc/androidvideocapturer.h', 794 'app/webrtc/androidvideocapturer.h',
791 'app/webrtc/androidvideocapturer.cc', 795 'app/webrtc/androidvideocapturer.cc',
792 ], 796 ],
793 }], 797 }],
794 ], 798 ],
795 }, # target libjingle_peerconnection 799 }, # target libjingle_peerconnection
796 ], 800 ],
797 } 801 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698