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

Side by Side Diff: talk/libjingle.gyp

Issue 1561073005: Fix clang warning in peerconnection_jni.cc (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 11 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 | « talk/app/webrtc/java/jni/peerconnection_jni.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 'app/webrtc/java/jni/jni_helpers.cc', 55 'app/webrtc/java/jni/jni_helpers.cc',
56 'app/webrtc/java/jni/jni_helpers.h', 56 'app/webrtc/java/jni/jni_helpers.h',
57 'app/webrtc/java/jni/native_handle_impl.cc', 57 'app/webrtc/java/jni/native_handle_impl.cc',
58 'app/webrtc/java/jni/native_handle_impl.h', 58 'app/webrtc/java/jni/native_handle_impl.h',
59 'app/webrtc/java/jni/peerconnection_jni.cc', 59 'app/webrtc/java/jni/peerconnection_jni.cc',
60 ], 60 ],
61 'include_dirs': [ 61 'include_dirs': [
62 '<(libyuv_dir)/include', 62 '<(libyuv_dir)/include',
63 ], 63 ],
64 'conditions': [ 64 'conditions': [
65 ['clang==1', {
66 'cflags': [
67 # Disabled due to failing when compiled with -Wall, see
68 # https://bugs.chromium.org/p/webrtc/issues/detail?id=5399
69 '-Wno-overloaded-virtual',
70 ],
71 }],
72 ['OS=="linux"', { 65 ['OS=="linux"', {
73 'defines': [ 66 'defines': [
74 'HAVE_GTK', 67 'HAVE_GTK',
75 ], 68 ],
76 'include_dirs': [ 69 'include_dirs': [
77 '<(java_home)/include', 70 '<(java_home)/include',
78 '<(java_home)/include/linux', 71 '<(java_home)/include/linux',
79 ], 72 ],
80 'conditions': [ 73 'conditions': [
81 ['use_gtk==1', { 74 ['use_gtk==1', {
(...skipping 724 matching lines...) Expand 10 before | Expand all | Expand 10 after
806 ['OS=="android" and build_with_chromium==0', { 799 ['OS=="android" and build_with_chromium==0', {
807 'sources': [ 800 'sources': [
808 'app/webrtc/androidvideocapturer.h', 801 'app/webrtc/androidvideocapturer.h',
809 'app/webrtc/androidvideocapturer.cc', 802 'app/webrtc/androidvideocapturer.cc',
810 ], 803 ],
811 }], 804 }],
812 ], 805 ],
813 }, # target libjingle_peerconnection 806 }, # target libjingle_peerconnection
814 ], 807 ],
815 } 808 }
OLDNEW
« no previous file with comments | « talk/app/webrtc/java/jni/peerconnection_jni.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698