| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 'variables': { | 6 'variables': { |
| 7 'no_libjingle_logging%': 0, | 7 'no_libjingle_logging%': 0, |
| 8 }, | 8 }, |
| 9 'includes': [ | 9 'includes': [ |
| 10 '../../build/win_precompile.gypi', | 10 '../../build/win_precompile.gypi', |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 ['OS=="mac"', { | 82 ['OS=="mac"', { |
| 83 'defines': [ | 83 'defines': [ |
| 84 'OSX', | 84 'OSX', |
| 85 ], | 85 ], |
| 86 }], | 86 }], |
| 87 ['os_posix == 1', { | 87 ['os_posix == 1', { |
| 88 'defines': [ | 88 'defines': [ |
| 89 'POSIX', | 89 'POSIX', |
| 90 ], | 90 ], |
| 91 }], | 91 }], |
| 92 ['OS=="openbsd" or OS=="freebsd"', { | 92 ['os_bsd==1', { |
| 93 'defines': [ | 93 'defines': [ |
| 94 'BSD', | 94 'BSD', |
| 95 ], | 95 ], |
| 96 }], | 96 }], |
| 97 ['no_libjingle_logging==1', { | 97 ['no_libjingle_logging==1', { |
| 98 'defines': [ | 98 'defines': [ |
| 99 'NO_LIBJINGLE_LOGGING', | 99 'NO_LIBJINGLE_LOGGING', |
| 100 ], | 100 ], |
| 101 }], | 101 }], |
| 102 ], | 102 ], |
| (...skipping 23 matching lines...) Expand all Loading... |
| 126 ['OS=="mac"', { | 126 ['OS=="mac"', { |
| 127 'defines': [ | 127 'defines': [ |
| 128 'OSX', | 128 'OSX', |
| 129 ], | 129 ], |
| 130 }], | 130 }], |
| 131 ['os_posix == 1', { | 131 ['os_posix == 1', { |
| 132 'defines': [ | 132 'defines': [ |
| 133 'POSIX', | 133 'POSIX', |
| 134 ], | 134 ], |
| 135 }], | 135 }], |
| 136 ['OS=="openbsd" or OS=="freebsd"', { | 136 ['os_bsd==1', { |
| 137 'defines': [ | 137 'defines': [ |
| 138 'BSD', | 138 'BSD', |
| 139 ], | 139 ], |
| 140 }], | 140 }], |
| 141 ], | 141 ], |
| 142 }, | 142 }, |
| 143 'targets': [ | 143 'targets': [ |
| 144 { | 144 { |
| 145 'target_name': 'libjingle', | 145 'target_name': 'libjingle', |
| 146 'type': 'static_library', | 146 'type': 'static_library', |
| (...skipping 373 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 520 '<(DEPTH)/third_party/webrtc/modules/modules.gyp:video_render_module', | 520 '<(DEPTH)/third_party/webrtc/modules/modules.gyp:video_render_module', |
| 521 '<(DEPTH)/third_party/webrtc/video_engine/video_engine.gyp:video_engine_
core', | 521 '<(DEPTH)/third_party/webrtc/video_engine/video_engine.gyp:video_engine_
core', |
| 522 '<(DEPTH)/third_party/webrtc/voice_engine/voice_engine.gyp:voice_engine_
core', | 522 '<(DEPTH)/third_party/webrtc/voice_engine/voice_engine.gyp:voice_engine_
core', |
| 523 '<(DEPTH)/third_party/webrtc/system_wrappers/source/system_wrappers.gyp:
system_wrappers', | 523 '<(DEPTH)/third_party/webrtc/system_wrappers/source/system_wrappers.gyp:
system_wrappers', |
| 524 'libjingle', | 524 'libjingle', |
| 525 'libjingle_p2p', | 525 'libjingle_p2p', |
| 526 ], | 526 ], |
| 527 }, # target libjingle_peerconnection | 527 }, # target libjingle_peerconnection |
| 528 ], | 528 ], |
| 529 } | 529 } |
| OLD | NEW |