diff options
author | mpcomplete@google.com <mpcomplete@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-15 22:23:43 +0000 |
---|---|---|
committer | mpcomplete@google.com <mpcomplete@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-15 22:23:43 +0000 |
commit | 1fca149ca717c64ae05edb534a61a909dc0a6d11 (patch) | |
tree | 6972a9efe49eba842a77cdeb98be8ac2caba8d27 /chrome/chrome.gyp | |
parent | 20a85780ae0ae9b8467b10146044fec8c1144e77 (diff) | |
download | chromium_src-1fca149ca717c64ae05edb534a61a909dc0a6d11.zip chromium_src-1fca149ca717c64ae05edb534a61a909dc0a6d11.tar.gz chromium_src-1fca149ca717c64ae05edb534a61a909dc0a6d11.tar.bz2 |
Introducing the Utility process, which handles the unpacking and verification
of extension packages.
This is a first pass. In the second pass, I will add support for transcoding
the manifest and any images in the browser process.
BUG=11680
Review URL: http://codereview.chromium.org/114027
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16198 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/chrome.gyp')
-rw-r--r-- | chrome/chrome.gyp | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/chrome/chrome.gyp b/chrome/chrome.gyp index a8f6947..6f948c4 100644 --- a/chrome/chrome.gyp +++ b/chrome/chrome.gyp @@ -332,6 +332,8 @@ ], 'sources': [ # All .cc, .h, and .mm files under chrome/common except for tests. + 'common/extensions/extension_unpacker.cc', + 'common/extensions/extension_unpacker.h', 'common/extensions/url_pattern.cc', 'common/extensions/url_pattern.h', 'common/extensions/user_script.cc', @@ -1385,6 +1387,8 @@ 'browser/toolbar_model.h', 'browser/user_data_manager.cc', 'browser/user_data_manager.h', + 'browser/utility_process_host.cc', + 'browser/utility_process_host.h', 'browser/view_ids.h', 'browser/views/about_chrome_view.cc', 'browser/views/about_chrome_view.h', @@ -1924,6 +1928,38 @@ ], }, { + 'target_name': 'utility', + 'type': '<(library)', + 'dependencies': [ + '../base/base.gyp:base', + '../skia/skia.gyp:skia', + ], + 'sources': [ + 'tools/build/win/precompiled.cc', + 'tools/build/win/precompiled.h', + + 'utility/utility_main.cc', + 'utility/utility_thread.cc', + 'utility/utility_thread.h', + ], + 'include_dirs': [ + '..', + ], + 'configurations': { + 'Debug': { + 'msvs_precompiled_header': 'tools/build/win/precompiled.h', + 'msvs_precompiled_source': 'tools/build/win/precompiled.cc', + }, + }, + 'conditions': [ + ['OS=="linux"', { + 'dependencies': [ + '../build/linux/system.gyp:gtk', + ], + }], + ], + }, + { 'target_name': 'app', 'type': 'executable', 'mac_bundle': 1, @@ -1931,6 +1967,7 @@ 'common', 'browser', 'renderer', + 'utility', '../printing/printing.gyp:printing', '../webkit/webkit.gyp:inspector_resources', ], @@ -2675,6 +2712,7 @@ 'browser', 'common', 'renderer', + 'utility', 'chrome_resources', 'chrome_strings', 'test_support_unit', |