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

Unified Diff: google_update/google_update.gyp

Issue 9371010: Make google_update.gyp write shared files to SHARED_INTERMEDIATE_DIR (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Update DEPS Created 8 years, 10 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_frame/update_launcher.cc ('k') | google_update/ondemand_updates.vcproj » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: google_update/google_update.gyp
diff --git a/google_update/google_update.gyp b/google_update/google_update.gyp
index da262a484f28aced4cd3a6e075be85dfd1452fba..c28bba3d72ccd8413a514b7e76083135e208a943 100644
--- a/google_update/google_update.gyp
+++ b/google_update/google_update.gyp
@@ -6,16 +6,20 @@
'targets': [
{
'target_name': 'google_update',
- 'type': 'none',
+ 'type': 'static_library',
'sources': [
'google_update_idl.idl',
- '<(INTERMEDIATE_DIR)/google_update_idl_i.c',
- '<(INTERMEDIATE_DIR)/google_update_idl_p.c',
+ '<(SHARED_INTERMEDIATE_DIR)/google_update/google_update_idl.h',
+ '<(SHARED_INTERMEDIATE_DIR)/google_update/google_update_idl_i.c',
],
+ 'msvs_settings': {
+ 'VCMIDLTool': {
+ 'OutputDirectory': '<(SHARED_INTERMEDIATE_DIR)/google_update',
+ },
+ },
'direct_dependent_settings': {
'include_dirs': [
- # Bit of a hack to work around the built in vstudio rule.
- '<(INTERMEDIATE_DIR)/../google_update',
+ '<(SHARED_INTERMEDIATE_DIR)',
],
},
},
« no previous file with comments | « chrome_frame/update_launcher.cc ('k') | google_update/ondemand_updates.vcproj » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698