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

Unified Diff: chrome/chrome_browser.gypi

Issue 14617003: Make chrome.exe rendezvous with existing chrome process earlier. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add profile dir to whitelist Created 7 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
Index: chrome/chrome_browser.gypi
diff --git a/chrome/chrome_browser.gypi b/chrome/chrome_browser.gypi
index 8daf9b256015392d18bbf78dc4c5081cbe1184c3..9562aa5a31417cae888e4d35b8d4c03f9af51824 100644
--- a/chrome/chrome_browser.gypi
+++ b/chrome/chrome_browser.gypi
@@ -1354,10 +1354,6 @@
'browser/policy/policy_loader_win.h',
'browser/policy/policy_map.cc',
'browser/policy/policy_map.h',
- 'browser/policy/policy_path_parser.h',
- 'browser/policy/policy_path_parser_linux.cc',
- 'browser/policy/policy_path_parser_mac.mm',
- 'browser/policy/policy_path_parser_win.cc',
'browser/policy/policy_service.cc',
'browser/policy/policy_service.h',
'browser/policy/policy_service_impl.cc',
@@ -2240,6 +2236,7 @@
'dependencies': [
'apps',
'browser/performance_monitor/performance_monitor.gyp:performance_monitor',
+ 'browser/policy/policy.gyp:policy_path_parser',
'browser_extensions',
'common/extensions/api/api.gyp:api',
'debugger',
@@ -2855,6 +2852,7 @@
'<(DEPTH)/third_party/wtl/include',
],
'dependencies': [
+ 'chrome_process_finder',
'installer_util_strings',
'../google_update/google_update.gyp:google_update',
'../third_party/iaccessible2/iaccessible2.gyp:iaccessible2',
@@ -3151,5 +3149,27 @@
],
},
],
+ ['OS=="win"', {
grt (UTC plus 2) 2013/05/09 16:10:44 my gut tells me this belongs in its own .gypi file
koz (OOO until 15th September) 2013/05/10 01:46:48 Done.
+ 'targets': [
+ {
+ 'target_name': 'chrome_process_finder',
+ 'type': 'static_library',
+ 'include_dirs': [
+ '..',
+ ],
+ 'dependencies': [
+ '<(DEPTH)/chrome/browser/policy/policy.gyp:policy_path_parser',
+ '<(DEPTH)/chrome/chrome.gyp:metro_utils',
+ '<(DEPTH)/chrome/common_constants.gyp:common_constants',
+ '<(DEPTH)/net/net.gyp:net',
+ ],
+ 'sources': [
+ 'browser/chrome_process_finder_win.cc',
+ 'browser/chrome_process_finder_win.h',
+ ],
+ },
+ ],
+ },
+ ],
],
}

Powered by Google App Engine
This is Rietveld 408576698