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

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

Issue 7051014: Globally replace <(library) with static_library (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
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
« no previous file with comments | « third_party/libevent/libevent.gyp ('k') | third_party/libjpeg/libjpeg.gyp » ('j') | 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 'target_defaults': { 9 'target_defaults': {
10 'defines': [ 10 'defines': [
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 ],
130 }, 130 },
131 'targets': [ 131 'targets': [
132 { 132 {
133 'target_name': 'libjingle', 133 'target_name': 'libjingle',
134 'type': '<(library)', 134 'type': 'static_library',
135 'sources': [ 135 'sources': [
136 'overrides/talk/base/basictypes.h', 136 'overrides/talk/base/basictypes.h',
137 'overrides/talk/base/constructormagic.h', 137 'overrides/talk/base/constructormagic.h',
138 138
139 # Need to override logging.h because we need 139 # Need to override logging.h because we need
140 # SAFE_TO_DEFINE_TALK_BASE_LOGGING_MACROS to work. 140 # SAFE_TO_DEFINE_TALK_BASE_LOGGING_MACROS to work.
141 # TODO(sergeyu): push SAFE_TO_DEFINE_TALK_BASE_LOGGING_MACROS to 141 # TODO(sergeyu): push SAFE_TO_DEFINE_TALK_BASE_LOGGING_MACROS to
142 # libjingle and remove this override. 142 # libjingle and remove this override.
143 'overrides/talk/base/logging.h', 143 'overrides/talk/base/logging.h',
144 144
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after
347 ], 347 ],
348 }], 348 }],
349 ], 349 ],
350 }, 350 },
351 # This has to be is a separate project due to a bug in MSVS: 351 # This has to be is a separate project due to a bug in MSVS:
352 # https://connect.microsoft.com/VisualStudio/feedback/details/368272/duplica te-cpp-filename-in-c-project-visual-studio-2008 352 # https://connect.microsoft.com/VisualStudio/feedback/details/368272/duplica te-cpp-filename-in-c-project-visual-studio-2008
353 # We have two files named "constants.cc" and MSVS doesn't handle this 353 # We have two files named "constants.cc" and MSVS doesn't handle this
354 # properly. 354 # properly.
355 { 355 {
356 'target_name': 'libjingle_p2p', 356 'target_name': 'libjingle_p2p',
357 'type': '<(library)', 357 'type': 'static_library',
358 'sources': [ 358 'sources': [
359 'source/talk/p2p/base/candidate.h', 359 'source/talk/p2p/base/candidate.h',
360 'source/talk/p2p/base/common.h', 360 'source/talk/p2p/base/common.h',
361 'source/talk/p2p/base/constants.cc', 361 'source/talk/p2p/base/constants.cc',
362 'source/talk/p2p/base/constants.h', 362 'source/talk/p2p/base/constants.h',
363 'source/talk/p2p/base/p2ptransport.cc', 363 'source/talk/p2p/base/p2ptransport.cc',
364 'source/talk/p2p/base/p2ptransport.h', 364 'source/talk/p2p/base/p2ptransport.h',
365 'source/talk/p2p/base/p2ptransportchannel.cc', 365 'source/talk/p2p/base/p2ptransportchannel.cc',
366 'source/talk/p2p/base/p2ptransportchannel.h', 366 'source/talk/p2p/base/p2ptransportchannel.h',
367 'source/talk/p2p/base/port.cc', 367 'source/talk/p2p/base/port.cc',
(...skipping 54 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
« no previous file with comments | « third_party/libevent/libevent.gyp ('k') | third_party/libjpeg/libjpeg.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698