Index: chrome/chrome.gyp |
diff --git a/chrome/chrome.gyp b/chrome/chrome.gyp |
index c9986e18bf93c56f3f5024b58a5ae48f71c30f16..0e77f218012d20b62fb018c4974afa3cfd79752b 100644 |
--- a/chrome/chrome.gyp |
+++ b/chrome/chrome.gyp |
@@ -157,16 +157,19 @@ |
'chrome_dll', |
'infoplist_strings_tool', |
], |
+ 'defines': [ |
+ 'HELPER_EXECUTABLE' |
+ ], |
'sources': [ |
- # chrome_exe_main_mac.cc's main() is the entry point for |
+ # chrome_exe_main_mac.c's main() is the entry point for |
# the "chrome" (browser app) target. All it does is jump |
# to chrome_dll's ChromeMain. This is appropriate for |
# helper processes too, because the logic to discriminate |
# between process types at run time is actually directed |
# by the --type command line argument processed by |
- # ChromeMain. Sharing chrome_exe_main_mac.cc with the |
+ # ChromeMain. Sharing chrome_exe_main_mac.c with the |
# browser app will suffice for now. |
- 'app/chrome_exe_main_mac.cc', |
+ 'app/chrome_exe_main_mac.c', |
Mark Mentovai
2015/10/22 23:15:12
Depend on the version_header target
Greg K
2015/10/23 19:12:49
Done.
|
'app/helper-Info.plist', |
], |
# TODO(mark): Come up with a fancier way to do this. It should only |