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

Side by Side Diff: content/content_utility.gypi

Issue 6995095: Move UtilityProcessHost to content and move the message sending/dispatching to the clients. This... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 6 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
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 {
6 'targets': [
7 {
8 'target_name': 'content_utility',
9 'type': 'static_library',
10 'dependencies': [
11 'content_common',
12 '../base/base.gyp:base',
13 ],
14 'sources': [
15 'utility/content_utility_client.cc',
16 'utility/content_utility_client.h',
17 'utility/utility_main.cc',
18 'utility/utility_thread.cc',
19 'utility/utility_thread.h',
20 ],
21 'include_dirs': [
22 '..',
23 ],
24 'conditions': [
25 ['OS=="mac"', {
26 'link_settings': {
27 'mac_bundle_resources': [
28 'utility/utility.sb',
29 ],
30 },
31 }],
32 ],
33 },
34 ],
35 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698