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

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

Issue 8825009: define OPENBSD and FREEBSD for libjingle in addition to BSD (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 9 years 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 | « no previous file | 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) 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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 ['os_posix == 1', { 87 ['os_posix == 1', {
88 'defines': [ 88 'defines': [
89 'POSIX', 89 'POSIX',
90 ], 90 ],
91 }], 91 }],
92 ['os_bsd==1', { 92 ['os_bsd==1', {
93 'defines': [ 93 'defines': [
94 'BSD', 94 'BSD',
95 ], 95 ],
96 }], 96 }],
97 ['OS=="openbsd"', {
98 'defines': [
99 'OPENBSD',
100 ],
101 }],
102 ['OS=="freebsd"', {
103 'defines': [
104 'FREEBSD',
105 ],
106 }],
97 ['no_libjingle_logging==1', { 107 ['no_libjingle_logging==1', {
98 'defines': [ 108 'defines': [
99 'NO_LIBJINGLE_LOGGING', 109 'NO_LIBJINGLE_LOGGING',
100 ], 110 ],
101 }], 111 }],
102 ], 112 ],
103 }, 113 },
104 'all_dependent_settings': { 114 'all_dependent_settings': {
105 'configurations': { 115 'configurations': {
106 'Debug': { 116 'Debug': {
(...skipping 24 matching lines...) Expand all
131 ['os_posix == 1', { 141 ['os_posix == 1', {
132 'defines': [ 142 'defines': [
133 'POSIX', 143 'POSIX',
134 ], 144 ],
135 }], 145 }],
136 ['os_bsd==1', { 146 ['os_bsd==1', {
137 'defines': [ 147 'defines': [
138 'BSD', 148 'BSD',
139 ], 149 ],
140 }], 150 }],
151 ['OS=="openbsd"', {
152 'defines': [
153 'OPENBSD',
154 ],
155 }],
156 ['OS=="freebsd"', {
157 'defines': [
158 'FREEBSD',
159 ],
160 }],
141 ], 161 ],
142 }, 162 },
143 'targets': [ 163 'targets': [
144 { 164 {
145 'target_name': 'libjingle', 165 'target_name': 'libjingle',
146 'type': 'static_library', 166 'type': 'static_library',
147 'sources': [ 167 'sources': [
148 'overrides/talk/base/basictypes.h', 168 'overrides/talk/base/basictypes.h',
149 'overrides/talk/base/constructormagic.h', 169 'overrides/talk/base/constructormagic.h',
150 170
(...skipping 375 matching lines...) Expand 10 before | Expand all | Expand 10 after
526 '<(DEPTH)/third_party/webrtc/modules/modules.gyp:video_render_module', 546 '<(DEPTH)/third_party/webrtc/modules/modules.gyp:video_render_module',
527 '<(DEPTH)/third_party/webrtc/video_engine/video_engine.gyp:video_engine_ core', 547 '<(DEPTH)/third_party/webrtc/video_engine/video_engine.gyp:video_engine_ core',
528 '<(DEPTH)/third_party/webrtc/voice_engine/voice_engine.gyp:voice_engine_ core', 548 '<(DEPTH)/third_party/webrtc/voice_engine/voice_engine.gyp:voice_engine_ core',
529 '<(DEPTH)/third_party/webrtc/system_wrappers/source/system_wrappers.gyp: system_wrappers', 549 '<(DEPTH)/third_party/webrtc/system_wrappers/source/system_wrappers.gyp: system_wrappers',
530 'libjingle', 550 'libjingle',
531 'libjingle_p2p', 551 'libjingle_p2p',
532 ], 552 ],
533 }, # target libjingle_peerconnection 553 }, # target libjingle_peerconnection
534 ], 554 ],
535 } 555 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698