| 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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 'libxslt/pattern.c', | 78 'libxslt/pattern.c', |
| 79 'libxslt/preproc.c', | 79 'libxslt/preproc.c', |
| 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.ChromeLibrary('libxslt', input_files) |
| 89 | 89 |
| 90 env.ChromeMSVSProject('$LIBXSLT_DIR/build/libxslt.vcproj', | 90 env.ChromeMSVSProject('$LIBXSLT_DIR/build/libxslt.vcproj', |
| 91 dependencies = [ | 91 dependencies = [ |
| 92 '$LIBXSLT_DIR/build/libxslt_config.vcproj', | 92 '$LIBXSLT_DIR/build/libxslt_config.vcproj', |
| 93 '$LIBXML_DIR/build/libxml.vcproj', | 93 '$LIBXML_DIR/build/libxml.vcproj', |
| 94 ], | 94 ], |
| 95 guid='{FC0E1FD0-5DD7-4041-A1C9-CD3C376E4EED}') | 95 guid='{FC0E1FD0-5DD7-4041-A1C9-CD3C376E4EED}') |
| 96 | 96 |
| 97 env.ChromeMSVSProject('$LIBXSLT_DIR/build/libxslt_config.vcproj', | 97 env.ChromeMSVSProject('$LIBXSLT_DIR/build/libxslt_config.vcproj', |
| 98 guid='{4BD929D4-494B-4EE8-91F6-FD0277A51D2B}') | 98 guid='{4BD929D4-494B-4EE8-91F6-FD0277A51D2B}') |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 'config.h', | 135 'config.h', |
| 136 'xslt-config', | 136 'xslt-config', |
| 137 'libexslt/exsltconfig.h', | 137 'libexslt/exsltconfig.h', |
| 138 'libxslt/xsltconfig.h', | 138 'libxslt/xsltconfig.h', |
| 139 'libxslt/xsltwin32config.h', | 139 'libxslt/xsltwin32config.h', |
| 140 ] | 140 ] |
| 141 for cf in config_files: | 141 for cf in config_files: |
| 142 result = env.Command('scons/' + cf, 'linux/' + cf, | 142 result = env.Command('scons/' + cf, 'linux/' + cf, |
| 143 Copy('$TARGET', '$SOURCE')) | 143 Copy('$TARGET', '$SOURCE')) |
| 144 | 144 |
| OLD | NEW |