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

Unified Diff: chrome/chrome.gyp

Issue 2001009: Created a new process type called the service process to host background task... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/app/dummy_main_functions.cc ('k') | chrome/common/chrome_switches.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/chrome.gyp
===================================================================
--- chrome/chrome.gyp (revision 46945)
+++ chrome/chrome.gyp (working copy)
@@ -30,6 +30,7 @@
'utility',
'profile_import',
'worker',
+ 'service',
'../printing/printing.gyp:printing',
'../webkit/webkit.gyp:inspector_resources',
],
@@ -974,6 +975,35 @@
}],
],
},
+ {
+ 'target_name': 'service',
+ 'type': '<(library)',
+ 'msvs_guid': '2DA87614-55C5-4E56-A17E-0CD099786197',
+ 'dependencies': [
+ '../base/base.gyp:base',
+ ],
+ 'sources': [
+ 'service/service_main.cc',
+ 'service/service_process.cc',
+ 'service/service_process.h',
+ 'service/cloud_print/cloud_print_proxy.cc',
+ 'service/cloud_print/cloud_print_proxy.h',
+ 'service/gaia/service_gaia_authenticator.cc',
+ 'service/gaia/service_gaia_authenticator.h',
+ 'service/net/service_url_request_context.cc',
+ 'service/net/service_url_request_context.h',
+ ],
+ 'include_dirs': [
+ '..',
+ ],
+ 'conditions': [
+ ['OS=="linux"', {
+ 'dependencies': [
+ '../build/linux/system.gyp:gtk',
+ ],
+ }],
+ ],
+ },
],
'conditions': [
['OS=="mac"',
« no previous file with comments | « chrome/app/dummy_main_functions.cc ('k') | chrome/common/chrome_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698