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

Side by Side Diff: content/content_common.gypi

Issue 6612040: Move ChildProcessHost and ChildProcessInfo to content. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: 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
« no previous file with comments | « content/common/child_process_info.cc ('k') | no next file » | 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 '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 '../webkit/support/webkit_support.gyp:fileapi', 12 '../webkit/support/webkit_support.gyp:fileapi',
13 ], 13 ],
14 'include_dirs': [ 14 'include_dirs': [
15 '..', 15 '..',
16 ], 16 ],
17 'sources': [ 17 'sources': [
18 'common/child_process.cc', 18 'common/child_process.cc',
19 'common/child_process.h', 19 'common/child_process.h',
20 'common/child_process_host.cc',
21 'common/child_process_host.h',
22 'common/child_process_info.cc',
23 'common/child_process_info.h',
20 'common/child_process_messages.h', 24 'common/child_process_messages.h',
21 'common/child_thread.cc', 25 'common/child_thread.cc',
22 'common/child_thread.h', 26 'common/child_thread.h',
23 'common/common_param_traits.cc', 27 'common/common_param_traits.cc',
24 'common/common_param_traits.h', 28 'common/common_param_traits.h',
25 'common/content_message_generator.cc', 29 'common/content_message_generator.cc',
26 'common/content_message_generator.h', 30 'common/content_message_generator.h',
27 'common/content_constants.cc', 31 'common/content_constants.cc',
28 'common/content_constants.h', 32 'common/content_constants.h',
29 'common/content_paths.cc', 33 'common/content_paths.cc',
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 'common/socket_stream_messages.h', 69 'common/socket_stream_messages.h',
66 ], 70 ],
67 'conditions': [ 71 'conditions': [
68 ['OS=="win"', { 72 ['OS=="win"', {
69 'msvs_guid': '062E9260-304A-4657-A74C-0D3AA1A0A0A4', 73 'msvs_guid': '062E9260-304A-4657-A74C-0D3AA1A0A0A4',
70 }], 74 }],
71 ], 75 ],
72 }, 76 },
73 ], 77 ],
74 } 78 }
OLDNEW
« no previous file with comments | « content/common/child_process_info.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698