OLD | NEW |
---|---|
1 # Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2012 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 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
116 }, { # OS!="android" | 116 }, { # OS!="android" |
117 'sources!': [ | 117 'sources!': [ |
118 'include/logcat_trace_context.h', | 118 'include/logcat_trace_context.h', |
119 'source/logcat_trace_context.cc', | 119 'source/logcat_trace_context.cc', |
120 ], | 120 ], |
121 }], | 121 }], |
122 ['OS=="linux"', { | 122 ['OS=="linux"', { |
123 'defines': [ | 123 'defines': [ |
124 'WEBRTC_THREAD_RR', | 124 'WEBRTC_THREAD_RR', |
125 ], | 125 ], |
126 'dependencies': [ | |
127 'cpu_features_webrtc.gyp:cpu_features_linux', | |
kjellander_webrtc
2016/03/30 19:11:17
I'm not sure if this will compile fine with Chromi
| |
128 ], | |
126 'link_settings': { | 129 'link_settings': { |
127 'libraries': [ '-lrt', ], | 130 'libraries': [ '-lrt', ], |
128 }, | 131 }, |
129 }], | 132 }], |
130 ['OS=="mac"', { | 133 ['OS=="mac"', { |
131 'link_settings': { | 134 'link_settings': { |
132 'libraries': [ '$(SDKROOT)/System/Library/Frameworks/ApplicationServ ices.framework', ], | 135 'libraries': [ '$(SDKROOT)/System/Library/Frameworks/ApplicationServ ices.framework', ], |
133 }, | 136 }, |
134 'sources!': [ | 137 'sources!': [ |
135 'source/atomic32_posix.cc', | 138 'source/atomic32_posix.cc', |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
183 'type': 'static_library', | 186 'type': 'static_library', |
184 'dependencies': [ | 187 'dependencies': [ |
185 'system_wrappers', | 188 'system_wrappers', |
186 'field_trial_default', | 189 'field_trial_default', |
187 'metrics_default', | 190 'metrics_default', |
188 ] | 191 ] |
189 }, | 192 }, |
190 ], # targets | 193 ], # targets |
191 } | 194 } |
192 | 195 |
OLD | NEW |