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

Side by Side Diff: third_party/libjingle/libjingle.gyp

Issue 1862443003: Remove use of _USE_32BIT_TIME_T (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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
« no previous file with comments | « third_party/libjingle/BUILD.gn ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'includes': [ 6 'includes': [
7 '../../build/win_precompile.gypi', 7 '../../build/win_precompile.gypi',
8 ], 8 ],
9 # Most of these settings have been split according to their scope into 9 # Most of these settings have been split according to their scope into
10 # :jingle_unexported_configs and :jingle_public_config in the GN build. 10 # :jingle_unexported_configs and :jingle_public_config in the GN build.
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
144 'clang_warning_flags_unset': [ 144 'clang_warning_flags_unset': [
145 # Don't warn about string->bool used in asserts. 145 # Don't warn about string->bool used in asserts.
146 '-Wstring-conversion', 146 '-Wstring-conversion',
147 ], 147 ],
148 }, 148 },
149 'conditions': [ 149 'conditions': [
150 ['OS=="win"', { 150 ['OS=="win"', {
151 'include_dirs': [ 151 'include_dirs': [
152 '../third_party/platformsdk_win7/files/Include', 152 '../third_party/platformsdk_win7/files/Include',
153 ], 153 ],
154 'conditions' : [
155 ['target_arch == "ia32"', {
156 'defines': [
157 '_USE_32BIT_TIME_T',
158 ],
159 }],
160 ],
161 }], 154 }],
162 ['OS=="linux"', { 155 ['OS=="linux"', {
163 'defines': [ 156 'defines': [
164 'LINUX', 157 'LINUX',
165 'WEBRTC_LINUX', 158 'WEBRTC_LINUX',
166 ], 159 ],
167 }], 160 }],
168 ['OS=="mac"', { 161 ['OS=="mac"', {
169 'defines': [ 162 'defines': [
170 'OSX', 163 'OSX',
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after
388 ], 381 ],
389 'dependencies': [ 382 'dependencies': [
390 '<(DEPTH)/third_party/webrtc/modules/modules.gyp:audio_processing', 383 '<(DEPTH)/third_party/webrtc/modules/modules.gyp:audio_processing',
391 'libjingle_webrtc_common', 384 'libjingle_webrtc_common',
392 ], 385 ],
393 }, 386 },
394 ], 387 ],
395 }], 388 }],
396 ], 389 ],
397 } 390 }
OLDNEW
« no previous file with comments | « third_party/libjingle/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698