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

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

Issue 225001: Use base/logging from chrome/browser/sync. Add a macro to libjingle's (Closed)
Patch Set: Added README.chromium Created 11 years, 2 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
OLDNEW
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 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/common.gypi', 7 '../../build/common.gypi',
8 ], 8 ],
9 'target_defaults': { 9 'target_defaults': {
10 'defines': [ 10 'defines': [
11 'FEATURE_ENABLE_SSL', 11 'FEATURE_ENABLE_SSL',
12 'FEATURE_ENABLE_VOICEMAIL', # TODO(ncarter): Do we really need this? 12 'FEATURE_ENABLE_VOICEMAIL', # TODO(ncarter): Do we really need this?
13 '_USE_32BIT_TIME_T', 13 '_USE_32BIT_TIME_T',
14 'SAFE_TO_DEFINE_TALK_BASE_LOGGING_MACROS',
14 ], 15 ],
15 'include_dirs': [ 16 'include_dirs': [
16 './overrides', 17 './overrides',
17 './files', 18 './files',
18 ], 19 ],
19 'dependencies': [ 20 'dependencies': [
20 '../expat/expat.gyp:expat', 21 '../expat/expat.gyp:expat',
21 '../../base/base.gyp:base', 22 '../../base/base.gyp:base',
22 ], 23 ],
23 'direct_dependent_settings': { 24 'direct_dependent_settings': {
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after
234 'files/talk/xmpp/xmppengineimpl.cc', 235 'files/talk/xmpp/xmppengineimpl.cc',
235 'files/talk/xmpp/xmppengineimpl.h', 236 'files/talk/xmpp/xmppengineimpl.h',
236 'files/talk/xmpp/xmppengineimpl_iq.cc', 237 'files/talk/xmpp/xmppengineimpl_iq.cc',
237 'files/talk/xmpp/xmppengineimpl_iq.h', 238 'files/talk/xmpp/xmppengineimpl_iq.h',
238 'files/talk/xmpp/xmpplogintask.cc', 239 'files/talk/xmpp/xmpplogintask.cc',
239 'files/talk/xmpp/xmpplogintask.h', 240 'files/talk/xmpp/xmpplogintask.h',
240 'files/talk/xmpp/xmppstanzaparser.cc', 241 'files/talk/xmpp/xmppstanzaparser.cc',
241 'files/talk/xmpp/xmppstanzaparser.h', 242 'files/talk/xmpp/xmppstanzaparser.h',
242 'files/talk/xmpp/xmpptask.cc', 243 'files/talk/xmpp/xmpptask.cc',
243 'files/talk/xmpp/xmpptask.h', 244 'files/talk/xmpp/xmpptask.h',
244 'overrides/base/basictypes.h', 245 'overrides/talk/base/basictypes.h',
245 'overrides/base/constructormagic.h', 246 'overrides/talk/base/constructormagic.h',
246 'overrides/base/scoped_ptr.h', 247 'overrides/talk/base/scoped_ptr.h',
247 'overrides/config.h', 248 'overrides/config.h',
248 ], 249 ],
249 'conditions': [ 250 'conditions': [
250 ['OS=="win"', { 251 ['OS=="win"', {
251 'sources': [ 252 'sources': [
252 'files/talk/base/convert.h', # win32 only 253 'files/talk/base/convert.h', # win32 only
253 'files/talk/base/diskcache_win32.cc', # win32 only 254 'files/talk/base/diskcache_win32.cc', # win32 only
254 'files/talk/base/diskcache_win32.h', # win32 only 255 'files/talk/base/diskcache_win32.h', # win32 only
255 'files/talk/base/schanneladapter.cc', 256 'files/talk/base/schanneladapter.cc',
256 'files/talk/base/schanneladapter.h', 257 'files/talk/base/schanneladapter.h',
257 'files/talk/base/win32.h', 258 'files/talk/base/win32.h',
258 'files/talk/base/win32filesystem.cc', 259 'files/talk/base/win32filesystem.cc',
259 'files/talk/base/win32filesystem.h', 260 'files/talk/base/win32filesystem.h',
260 'files/talk/base/win32socketserver.cc', 261 'files/talk/base/win32socketserver.cc',
261 'files/talk/base/win32socketserver.h', 262 'files/talk/base/win32socketserver.h',
262 'files/talk/base/win32window.h', 263 'files/talk/base/win32window.h',
263 'files/talk/base/winfirewall.cc', 264 'files/talk/base/winfirewall.cc',
264 'files/talk/base/winfirewall.h', 265 'files/talk/base/winfirewall.h',
265 'files/talk/base/winping.cc', 266 'files/talk/base/winping.cc',
266 'files/talk/base/winping.h', 267 'files/talk/base/winping.h',
267 ], 268 ],
268 }], 269 }],
269 ], 270 ],
270 }, 271 },
271 ], 272 ],
272 } 273 }
273 274
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698