OLD | NEW |
1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2014 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 { | 9 { |
10 'includes': [ '../build/common.gypi', ], | 10 'includes': [ '../build/common.gypi', ], |
(...skipping 17 matching lines...) Expand all Loading... |
28 # The subset of rtc_base approved for use outside of libjingle. | 28 # The subset of rtc_base approved for use outside of libjingle. |
29 'target_name': 'rtc_base_approved', | 29 'target_name': 'rtc_base_approved', |
30 'type': 'static_library', | 30 'type': 'static_library', |
31 'sources': [ | 31 'sources': [ |
32 '../overrides/webrtc/base/basictypes.h', | 32 '../overrides/webrtc/base/basictypes.h', |
33 '../overrides/webrtc/base/constructormagic.h', | 33 '../overrides/webrtc/base/constructormagic.h', |
34 'atomicops.h', | 34 'atomicops.h', |
35 'basictypes.h', | 35 'basictypes.h', |
36 'bitbuffer.cc', | 36 'bitbuffer.cc', |
37 'bitbuffer.h', | 37 'bitbuffer.h', |
| 38 'bucketratetracker.cc', |
| 39 'bucketratetracker.h', |
38 'buffer.cc', | 40 'buffer.cc', |
39 'buffer.h', | 41 'buffer.h', |
40 'bufferqueue.cc', | 42 'bufferqueue.cc', |
41 'bufferqueue.h', | 43 'bufferqueue.h', |
42 'bytebuffer.cc', | 44 'bytebuffer.cc', |
43 'bytebuffer.h', | 45 'bytebuffer.h', |
44 'byteorder.h', | 46 'byteorder.h', |
45 'checks.cc', | 47 'checks.cc', |
46 'checks.h', | 48 'checks.h', |
47 'constructormagic.h', | 49 'constructormagic.h', |
(...skipping 691 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
739 ['OS!="linux" and OS!="android"', { | 741 ['OS!="linux" and OS!="android"', { |
740 'sources!': [ | 742 'sources!': [ |
741 'linux.cc', | 743 'linux.cc', |
742 'linux.h', | 744 'linux.h', |
743 ], | 745 ], |
744 }], | 746 }], |
745 ], | 747 ], |
746 }, | 748 }, |
747 ], | 749 ], |
748 } | 750 } |
OLD | NEW |