| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |