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

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

Issue 7055003: Last gyp patch for cross-platform Unix support (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Created 9 years, 7 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 | Annotate | Revision Log
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 'target_defaults': { 9 'target_defaults': {
10 'defines': [ 10 'defines': [
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 ['OS=="linux"', { 65 ['OS=="linux"', {
66 'defines': [ 66 'defines': [
67 'LINUX', 67 'LINUX',
68 ], 68 ],
69 }], 69 }],
70 ['OS=="mac"', { 70 ['OS=="mac"', {
71 'defines': [ 71 'defines': [
72 'OSX', 72 'OSX',
73 ], 73 ],
74 }], 74 }],
75 ['OS=="linux" or OS=="mac" or OS=="freebsd" or OS=="openbsd"', { 75 ['os_posix == 1', {
76 'defines': [ 76 'defines': [
77 'POSIX', 77 'POSIX',
78 ], 78 ],
79 }], 79 }],
80 ['OS=="openbsd" or OS=="freebsd"', { 80 ['OS=="openbsd" or OS=="freebsd"', {
81 'defines': [ 81 'defines': [
82 'BSD', 82 'BSD',
83 ], 83 ],
84 }], 84 }],
85 ['no_libjingle_logging==1', { 85 ['no_libjingle_logging==1', {
(...skipping 23 matching lines...) Expand all
109 ['OS=="linux"', { 109 ['OS=="linux"', {
110 'defines': [ 110 'defines': [
111 'LINUX', 111 'LINUX',
112 ], 112 ],
113 }], 113 }],
114 ['OS=="mac"', { 114 ['OS=="mac"', {
115 'defines': [ 115 'defines': [
116 'OSX', 116 'OSX',
117 ], 117 ],
118 }], 118 }],
119 ['OS=="linux" or OS=="mac" or OS=="freebsd" or OS=="openbsd"', { 119 ['os_posix == 1', {
120 'defines': [ 120 'defines': [
121 'POSIX', 121 'POSIX',
122 ], 122 ],
123 }], 123 }],
124 ['OS=="openbsd" or OS=="freebsd"', { 124 ['OS=="openbsd" or OS=="freebsd"', {
125 'defines': [ 125 'defines': [
126 'BSD', 126 'BSD',
127 ], 127 ],
128 }], 128 }],
129 ], 129 ],
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
317 'source/talk/base/win32filesystem.h', 317 'source/talk/base/win32filesystem.h',
318 'source/talk/base/win32window.h', 318 'source/talk/base/win32window.h',
319 'source/talk/base/win32window.cc', 319 'source/talk/base/win32window.cc',
320 'source/talk/base/win32securityerrors.cc', 320 'source/talk/base/win32securityerrors.cc',
321 'source/talk/base/winfirewall.cc', 321 'source/talk/base/winfirewall.cc',
322 'source/talk/base/winfirewall.h', 322 'source/talk/base/winfirewall.h',
323 'source/talk/base/winping.cc', 323 'source/talk/base/winping.cc',
324 'source/talk/base/winping.h', 324 'source/talk/base/winping.h',
325 ], 325 ],
326 }], 326 }],
327 ['OS=="linux" or OS=="mac" or OS=="freebsd" or OS=="openbsd"', { 327 ['os_posix == 1', {
328 'sources': [ 328 'sources': [
329 'source/talk/base/sslstreamadapter.cc', 329 'source/talk/base/sslstreamadapter.cc',
330 'source/talk/base/sslstreamadapter.h', 330 'source/talk/base/sslstreamadapter.h',
331 'source/talk/base/unixfilesystem.cc', 331 'source/talk/base/unixfilesystem.cc',
332 'source/talk/base/unixfilesystem.h', 332 'source/talk/base/unixfilesystem.h',
333 ], 333 ],
334 }], 334 }],
335 ['OS=="linux"', { 335 ['OS=="linux"', {
336 'sources': [ 336 'sources': [
337 'source/talk/base/linux.cc', 337 'source/talk/base/linux.cc',
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
422 ], 422 ],
423 }, 423 },
424 ], 424 ],
425 } 425 }
426 426
427 # Local Variables: 427 # Local Variables:
428 # tab-width:2 428 # tab-width:2
429 # indent-tabs-mode:nil 429 # indent-tabs-mode:nil
430 # End: 430 # End:
431 # vim: set expandtab tabstop=2 shiftwidth=2: 431 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698