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

Side by Side Diff: third_party/libxslt/libxslt.scons

Issue 14472: Initial generation of native Visual Studio solution files... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 12 years 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « third_party/libxml/libxml.scons ('k') | third_party/lzma_sdk/lzma_sdk.scons » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2008, Google Inc. 1 # Copyright 2008, Google Inc.
2 # All rights reserved. 2 # All rights reserved.
3 # 3 #
4 # Redistribution and use in source and binary forms, with or without 4 # Redistribution and use in source and binary forms, with or without
5 # modification, are permitted provided that the following conditions are 5 # modification, are permitted provided that the following conditions are
6 # met: 6 # met:
7 # 7 #
8 # * Redistributions of source code must retain the above copyright 8 # * Redistributions of source code must retain the above copyright
9 # notice, this list of conditions and the following disclaimer. 9 # notice, this list of conditions and the following disclaimer.
10 # * Redistributions in binary form must reproduce the above 10 # * Redistributions in binary form must reproduce the above
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 'libxslt/security.c', 80 'libxslt/security.c',
81 'libxslt/templates.c', 81 'libxslt/templates.c',
82 'libxslt/transform.c', 82 'libxslt/transform.c',
83 'libxslt/variables.c', 83 'libxslt/variables.c',
84 'libxslt/xslt.c', 84 'libxslt/xslt.c',
85 'libxslt/xsltutils.c', 85 'libxslt/xsltutils.c',
86 ] 86 ]
87 87
88 env.ChromeStaticLibrary('libxslt', input_files) 88 env.ChromeStaticLibrary('libxslt', input_files)
89 89
90 env.ChromeMSVSProject('$LIBXSLT_DIR/build/libxslt.vcproj',
91 dependencies = [
92 '$LIBXSLT_DIR/build/libxslt_config.vcproj',
93 '$LIBXML_DIR/build/libxml.vcproj',
94 ],
95 guid='{FC0E1FD0-5DD7-4041-A1C9-CD3C376E4EED}')
96
97 env.ChromeMSVSProject('$LIBXSLT_DIR/build/libxslt_config.vcproj',
98 guid='{4BD929D4-494B-4EE8-91F6-FD0277A51D2B}')
99
90 100
91 if env.Bit('windows'): 101 if env.Bit('windows'):
92 config_files = [ 102 config_files = [
93 # The configure.js script must be first in this list; the 103 # The configure.js script must be first in this list; the
94 # env.Command() call below executes the first list element. 104 # env.Command() call below executes the first list element.
95 105
96 'win32/configure.js', 106 'win32/configure.js',
97 'win32/Makefile.msvc', 107 'win32/Makefile.msvc',
98 108
99 'config.h.in', 109 'config.h.in',
(...skipping 25 matching lines...) Expand all
125 'config.h', 135 'config.h',
126 'xslt-config', 136 'xslt-config',
127 'libexslt/exsltconfig.h', 137 'libexslt/exsltconfig.h',
128 'libxslt/xsltconfig.h', 138 'libxslt/xsltconfig.h',
129 'libxslt/xsltwin32config.h', 139 'libxslt/xsltwin32config.h',
130 ] 140 ]
131 for cf in config_files: 141 for cf in config_files:
132 result = env.Command('scons/' + cf, 'linux/' + cf, 142 result = env.Command('scons/' + cf, 'linux/' + cf,
133 Copy('$TARGET', '$SOURCE')) 143 Copy('$TARGET', '$SOURCE'))
134 144
OLDNEW
« no previous file with comments | « third_party/libxml/libxml.scons ('k') | third_party/lzma_sdk/lzma_sdk.scons » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698