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 'conditions': [ |
| 127 ['build_with_chromium==0', { |
| 128 'dependencies': [ |
| 129 'cpu_features_webrtc.gyp:cpu_features_linux', |
| 130 ], |
| 131 }], |
| 132 ], |
126 'link_settings': { | 133 'link_settings': { |
127 'libraries': [ '-lrt', ], | 134 'libraries': [ '-lrt', ], |
128 }, | 135 }, |
129 }], | 136 }], |
130 ['OS=="mac"', { | 137 ['OS=="mac"', { |
131 'link_settings': { | 138 'link_settings': { |
132 'libraries': [ '$(SDKROOT)/System/Library/Frameworks/ApplicationServ
ices.framework', ], | 139 'libraries': [ '$(SDKROOT)/System/Library/Frameworks/ApplicationServ
ices.framework', ], |
133 }, | 140 }, |
134 'sources!': [ | 141 'sources!': [ |
135 'source/atomic32_posix.cc', | 142 'source/atomic32_posix.cc', |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
183 'type': 'static_library', | 190 'type': 'static_library', |
184 'dependencies': [ | 191 'dependencies': [ |
185 'system_wrappers', | 192 'system_wrappers', |
186 'field_trial_default', | 193 'field_trial_default', |
187 'metrics_default', | 194 'metrics_default', |
188 ] | 195 ] |
189 }, | 196 }, |
190 ], # targets | 197 ], # targets |
191 } | 198 } |
192 | 199 |
OLD | NEW |