| OLD | NEW |
| 1 # Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 __doc__ = """ | 5 __doc__ = """ |
| 6 Configuration for building googleurl.lib / libgoogleurl.a. | 6 Configuration for building googleurl.lib / libgoogleurl.a. |
| 7 """ | 7 """ |
| 8 | 8 |
| 9 Import('env') | 9 Import('env') |
| 10 | 10 |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 'src/url_canon_path.cc', | 39 'src/url_canon_path.cc', |
| 40 'src/url_canon_pathurl.cc', | 40 'src/url_canon_pathurl.cc', |
| 41 'src/url_canon_query.cc', | 41 'src/url_canon_query.cc', |
| 42 'src/url_canon_relative.cc', | 42 'src/url_canon_relative.cc', |
| 43 'src/url_canon_stdurl.cc', | 43 'src/url_canon_stdurl.cc', |
| 44 'src/url_parse.cc', | 44 'src/url_parse.cc', |
| 45 'src/url_parse_file.cc', | 45 'src/url_parse_file.cc', |
| 46 'src/url_util.cc', | 46 'src/url_util.cc', |
| 47 ] | 47 ] |
| 48 | 48 |
| 49 env.ChromeStaticLibrary('googleurl', input_files) | 49 env.ChromeLibrary('googleurl', input_files) |
| 50 | 50 |
| 51 env.ChromeMSVSProject('$GOOGLEURL_DIR/build/googleurl.vcproj', | 51 env.ChromeMSVSProject('$GOOGLEURL_DIR/build/googleurl.vcproj', |
| 52 guid='{EF5E94AB-B646-4E5B-A058-52EF07B8351C}') | 52 guid='{EF5E94AB-B646-4E5B-A058-52EF07B8351C}') |
| OLD | NEW |