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

Side by Side Diff: jingle/jingle.gyp

Issue 12465002: Refactor libjingle.gyp: (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address comments Created 7 years, 9 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) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'chromium_code': 1, 7 'chromium_code': 1,
8 }, # variables 8 }, # variables
9 'conditions': [ 9 'conditions': [
10 ['enable_webrtc==1 or OS!="android"', { 10 ['enable_webrtc==1 or OS!="android"', {
(...skipping 21 matching lines...) Expand all
32 'glue/utils.cc', 32 'glue/utils.cc',
33 'glue/utils.h', 33 'glue/utils.h',
34 'glue/xmpp_client_socket_factory.cc', 34 'glue/xmpp_client_socket_factory.cc',
35 'glue/xmpp_client_socket_factory.h', 35 'glue/xmpp_client_socket_factory.h',
36 ], 36 ],
37 'dependencies': [ 37 'dependencies': [
38 '../base/base.gyp:base', 38 '../base/base.gyp:base',
39 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn amic_annotations', 39 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn amic_annotations',
40 '../net/net.gyp:net', 40 '../net/net.gyp:net',
41 '../third_party/libjingle/libjingle.gyp:libjingle', 41 '../third_party/libjingle/libjingle.gyp:libjingle',
42 '../third_party/libjingle/libjingle.gyp:libjingle_p2p',
43 ], 42 ],
44 'export_dependent_settings': [ 43 'export_dependent_settings': [
45 '../third_party/libjingle/libjingle.gyp:libjingle', 44 '../third_party/libjingle/libjingle.gyp:libjingle',
46 '../third_party/libjingle/libjingle.gyp:libjingle_p2p',
47 ], 45 ],
48 }, 46 },
49 # A library for sending and receiving peer-issued notifications. 47 # A library for sending and receiving peer-issued notifications.
50 # 48 #
51 # TODO(akalin): Separate out the XMPP stuff from this library into 49 # TODO(akalin): Separate out the XMPP stuff from this library into
52 # its own library. 50 # its own library.
53 { 51 {
54 'target_name': 'notifier', 52 'target_name': 'notifier',
55 'type': 'static_library', 53 'type': 'static_library',
56 'sources': [ 54 'sources': [
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
242 ], 240 ],
243 }, 241 },
244 { 242 {
245 'target_name': 'notifier_test_util', 243 'target_name': 'notifier_test_util',
246 'type': 'none', 244 'type': 'none',
247 }, 245 },
248 ], 246 ],
249 }], 247 }],
250 ], 248 ],
251 } 249 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698