OLD | NEW |
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 # Copyright 2016 The Chromium Authors. All rights reserved. | 2 # Copyright 2016 The Chromium Authors. All rights reserved. |
3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
5 | 5 |
6 """ | 6 """ |
7 Replaces GN files in tree with files from here that | 7 Replaces GN files in tree with files from here that |
8 make the build use system libraries. | 8 make the build use system libraries. |
9 """ | 9 """ |
10 | 10 |
11 from __future__ import print_function | 11 from __future__ import print_function |
12 | 12 |
13 import argparse | 13 import argparse |
14 import os | 14 import os |
15 import shutil | 15 import shutil |
16 import sys | 16 import sys |
17 | 17 |
18 | 18 |
19 REPLACEMENTS = { | 19 REPLACEMENTS = { |
| 20 'ffmpeg': 'third_party/ffmpeg/BUILD.gn', |
20 'flac': 'third_party/flac/BUILD.gn', | 21 'flac': 'third_party/flac/BUILD.gn', |
21 'harfbuzz-ng': 'third_party/harfbuzz-ng/BUILD.gn', | 22 'harfbuzz-ng': 'third_party/harfbuzz-ng/BUILD.gn', |
| 23 'libevent': 'base/third_party/libevent/BUILD.gn', |
22 'libwebp': 'third_party/libwebp/BUILD.gn', | 24 'libwebp': 'third_party/libwebp/BUILD.gn', |
23 'libxml': 'third_party/libxml/BUILD.gn', | 25 'libxml': 'third_party/libxml/BUILD.gn', |
| 26 'libxslt': 'third_party/libxslt/BUILD.gn', |
| 27 'snappy': 'third_party/snappy/BUILD.gn', |
| 28 'yasm': 'third_party/yasm/yasm_assemble.gni', |
24 'zlib': 'third_party/zlib/BUILD.gn', | 29 'zlib': 'third_party/zlib/BUILD.gn', |
25 } | 30 } |
26 | 31 |
27 | 32 |
28 def DoMain(argv): | 33 def DoMain(argv): |
29 my_dirname = os.path.dirname(__file__) | 34 my_dirname = os.path.dirname(__file__) |
30 source_tree_root = os.path.abspath( | 35 source_tree_root = os.path.abspath( |
31 os.path.join(my_dirname, '..', '..', '..')) | 36 os.path.join(my_dirname, '..', '..', '..')) |
32 | 37 |
33 parser = argparse.ArgumentParser() | 38 parser = argparse.ArgumentParser() |
(...skipping 26 matching lines...) Expand all Loading... |
60 if unhandled_libraries: | 65 if unhandled_libraries: |
61 print('Unrecognized system libraries requested: %s' % ', '.join( | 66 print('Unrecognized system libraries requested: %s' % ', '.join( |
62 sorted(unhandled_libraries)), file=sys.stderr) | 67 sorted(unhandled_libraries)), file=sys.stderr) |
63 return 1 | 68 return 1 |
64 | 69 |
65 return 0 | 70 return 0 |
66 | 71 |
67 | 72 |
68 if __name__ == '__main__': | 73 if __name__ == '__main__': |
69 sys.exit(DoMain(sys.argv[1:])) | 74 sys.exit(DoMain(sys.argv[1:])) |
OLD | NEW |