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

Side by Side Diff: content/content_common.gypi

Issue 6598053: P2P Sockets host implementation. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Addressed all comments Created 9 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) 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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'content_common', 8 'target_name': 'content_common',
9 'type': '<(library)', 9 'type': '<(library)',
10 'dependencies': [ 10 'dependencies': [
11 '../ipc/ipc.gyp:ipc', 11 '../ipc/ipc.gyp:ipc',
12 ], 12 ],
13 'include_dirs': [ 13 'include_dirs': [
14 '..', 14 '..',
15 ], 15 ],
16 'sources': [ 16 'sources': [
17 "common/p2p_messages.cc",
18 "common/p2p_messages.h",
19 "common/p2p_sockets.h",
17 ], 20 ],
18 'conditions': [ 21 'conditions': [
19 ['OS=="win"', { 22 ['OS=="win"', {
20 'msvs_guid': '062E9260-304A-4657-A74C-0D3AA1A0A0A4', 23 'msvs_guid': '062E9260-304A-4657-A74C-0D3AA1A0A0A4',
21 }], 24 }],
22 ], 25 ],
23 }, 26 },
24 ], 27 ],
25 } 28 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698