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

Unified Diff: chrome/chrome_exe.gypi

Issue 1402353011: Expose a function to get the path to a DLL. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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
« chrome/app/main_dll_loader_win.h ('K') | « chrome/app/main_dll_loader_win.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/chrome_exe.gypi
diff --git a/chrome/chrome_exe.gypi b/chrome/chrome_exe.gypi
index 89fbe4394afee14738e39c9d219e6d76e96cb82f..74552466c6c7d6676efc4d47edbfc19b68c43767 100644
--- a/chrome/chrome_exe.gypi
+++ b/chrome/chrome_exe.gypi
@@ -67,8 +67,8 @@
'app/chrome_watcher_client_win.h',
'app/chrome_watcher_command_line_win.cc',
'app/chrome_watcher_command_line_win.h',
- 'app/client_util.cc',
- 'app/client_util.h',
+ 'app/main_dll_loader_win.cc',
+ 'app/main_dll_loader_win.h',
'app/kasko_client.cc',
'app/kasko_client.h',
'app/signature_validator_win.cc',
@@ -408,6 +408,7 @@
'chrome_nacl_win64',
'chrome_process_finder',
'chrome_version_resources',
+ 'client_util',
'installer_util',
'image_pre_reader',
'../base/base.gyp:base',
@@ -497,10 +498,6 @@
],
},
],
- }, { # 'OS!="win"
- 'sources!': [
- 'app/client_util.cc',
- ],
}],
['OS=="win" and component=="shared_library"', {
'defines': ['COMPILE_CONTENT_STATICALLY'],
@@ -522,6 +519,17 @@
'../base/base.gyp:base',
],
},
+ {
+ 'target_name': 'client_util',
grt (UTC plus 2) 2015/10/29 18:51:50 rather than introduce a new target, how about putt
fdoray 2015/10/30 14:45:45 Done.
+ 'type': 'static_library',
+ 'sources': [
+ 'app/client_util.cc',
+ 'app/client_util.h',
+ ],
+ 'dependencies': [
+ '../base/base.gyp:base',
+ ],
+ },
],
'conditions': [
['disable_nacl!=1 and target_arch=="ia32"', {
« chrome/app/main_dll_loader_win.h ('K') | « chrome/app/main_dll_loader_win.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698