| 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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 '../overrides/webrtc/base/basictypes.h', | 96 '../overrides/webrtc/base/basictypes.h', |
| 97 '../overrides/webrtc/base/constructormagic.h', | 97 '../overrides/webrtc/base/constructormagic.h', |
| 98 ], | 98 ], |
| 99 }], | 99 }], |
| 100 ], | 100 ], |
| 101 }, | 101 }, |
| 102 { | 102 { |
| 103 'target_name': 'rtc_base', | 103 'target_name': 'rtc_base', |
| 104 'type': 'static_library', | 104 'type': 'static_library', |
| 105 'dependencies': [ | 105 'dependencies': [ |
| 106 '<(webrtc_root)/../talk/libjingle.gyp:libjingle_dtls', |
| 106 '<(webrtc_root)/common.gyp:webrtc_common', | 107 '<(webrtc_root)/common.gyp:webrtc_common', |
| 107 'rtc_base_approved', | 108 'rtc_base_approved', |
| 108 ], | 109 ], |
| 109 'defines': [ | 110 'defines': [ |
| 110 'FEATURE_ENABLE_SSL', | 111 'FEATURE_ENABLE_SSL', |
| 111 'LOGGING=1', | 112 'LOGGING=1', |
| 112 ], | 113 ], |
| 113 'sources': [ | 114 'sources': [ |
| 114 'arraysize.h', | 115 'arraysize.h', |
| 115 'asyncfile.cc', | 116 'asyncfile.cc', |
| (...skipping 623 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 739 ['OS!="linux" and OS!="android"', { | 740 ['OS!="linux" and OS!="android"', { |
| 740 'sources!': [ | 741 'sources!': [ |
| 741 'linux.cc', | 742 'linux.cc', |
| 742 'linux.h', | 743 'linux.h', |
| 743 ], | 744 ], |
| 744 }], | 745 }], |
| 745 ], | 746 ], |
| 746 }, | 747 }, |
| 747 ], | 748 ], |
| 748 } | 749 } |
| OLD | NEW |