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

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

Issue 16477: Mass convert ChromeStaticLibrary -> ChromeLibrary, including pulling the (Closed)
Patch Set: Created 11 years, 12 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 unified diff | Download patch
« 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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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
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