OLD | NEW |
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 Loading... |
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 Loading... |
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 |
OLD | NEW |