diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-09 21:11:51 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-09 21:11:51 +0000 |
commit | 373c1069852a133d823ddb417f18beaa840664e8 (patch) | |
tree | 34571462d893810b94d4cc965b8a505653eb161b /content/content_utility.gypi | |
parent | db6831ad3a6ba65d881bedd504c92b219c8524da (diff) | |
download | chromium_src-373c1069852a133d823ddb417f18beaa840664e8.zip chromium_src-373c1069852a133d823ddb417f18beaa840664e8.tar.gz chromium_src-373c1069852a133d823ddb417f18beaa840664e8.tar.bz2 |
Move UtilityProcessHost to content and move the message sending/dispatching to the clients. This allows the content layer to use the class.
BUG=76697
Review URL: http://codereview.chromium.org/6995095
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@88586 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/content_utility.gypi')
-rw-r--r-- | content/content_utility.gypi | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/content/content_utility.gypi b/content/content_utility.gypi new file mode 100644 index 0000000..99c861a --- /dev/null +++ b/content/content_utility.gypi @@ -0,0 +1,35 @@ +# Copyright (c) 2011 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +{ + 'targets': [ + { + 'target_name': 'content_utility', + 'type': 'static_library', + 'dependencies': [ + 'content_common', + '../base/base.gyp:base', + ], + 'sources': [ + 'utility/content_utility_client.cc', + 'utility/content_utility_client.h', + 'utility/utility_main.cc', + 'utility/utility_thread.cc', + 'utility/utility_thread.h', + ], + 'include_dirs': [ + '..', + ], + 'conditions': [ + ['OS=="mac"', { + 'link_settings': { + 'mac_bundle_resources': [ + 'utility/utility.sb', + ], + }, + }], + ], + }, + ], +} |