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

Side by Side Diff: talk/libjingle.gyp

Issue 1383563003: jni/native_handle_impl.h: Move implementation into .cc file (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@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 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 721 matching lines...) Expand 10 before | Expand all | Expand 10 after
787 ['OS=="android" and build_with_chromium==0', { 788 ['OS=="android" and build_with_chromium==0', {
788 'sources': [ 789 'sources': [
789 'app/webrtc/androidvideocapturer.h', 790 'app/webrtc/androidvideocapturer.h',
790 'app/webrtc/androidvideocapturer.cc', 791 'app/webrtc/androidvideocapturer.cc',
791 ], 792 ],
792 }], 793 }],
793 ], 794 ],
794 }, # target libjingle_peerconnection 795 }, # target libjingle_peerconnection
795 ], 796 ],
796 } 797 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698