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

Unified Diff: sdch/SConscript

Issue 40101: Check in a generated config.h file for SDCH on Linux (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 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 | « no previous file | sdch/linux/config.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdch/SConscript
===================================================================
--- sdch/SConscript (revision 10847)
+++ sdch/SConscript (working copy)
@@ -15,6 +15,9 @@
if env.Bit('windows'):
cpppath.append('$OPEN_VCDIFF_DIR/vsprojects')
+if env.Bit('linux'):
+ cpppath.append('linux')
+
env.Prepend(CPPPATH = cpppath)
input_files = ChromeFileList([
@@ -144,10 +147,14 @@
# varlist['DEFINES'] below makes the target config.h file depend
# on the list of definitions in the passed-in $DEFINES variable.
- env.Command('$OPEN_VCDIFF_DIR/src/config.h',
- '$OPEN_VCDIFF_DIR/src/config.h.in',
- Action(AutoConfig, varlist=['DEFINES']),
- DEFINES=defines)
+ #
+ # Comment this out so we use the checked-in config.h in the
+ # linux subdirectory, but leave it here in case we need
+ # to ressurect this.
+ #env.Command('$OPEN_VCDIFF_DIR/src/config.h',
+ # '$OPEN_VCDIFF_DIR/src/config.h.in',
+ # Action(AutoConfig, varlist=['DEFINES']),
+ # DEFINES=defines)
p = env.ChromeMSVSProject('sdch.vcproj',
« no previous file with comments | « no previous file | sdch/linux/config.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698