OLD | NEW |
1 #!/usr/bin/python | 1 #!/usr/bin/python |
2 # Copyright 2014 The Chromium Authors. All rights reserved. | 2 # Copyright 2014 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 """Performs pull of google-input-tools from local clone of GitHub repository.""" | 6 """Performs pull of google-input-tools from local clone of GitHub repository.""" |
7 | 7 |
8 import json | 8 import json |
9 import logging | 9 import logging |
10 import optparse | 10 import optparse |
(...skipping 27 matching lines...) Expand all Loading... |
38 'i18n.input.chrome.inputview.content.util', | 38 'i18n.input.chrome.inputview.content.util', |
39 'i18n.input.chrome.inputview.EmojiType', | 39 'i18n.input.chrome.inputview.EmojiType', |
40 'i18n.input.chrome.inputview.layouts.CompactSpaceRow', | 40 'i18n.input.chrome.inputview.layouts.CompactSpaceRow', |
41 'i18n.input.chrome.inputview.layouts.RowsOf101', | 41 'i18n.input.chrome.inputview.layouts.RowsOf101', |
42 'i18n.input.chrome.inputview.layouts.RowsOf102', | 42 'i18n.input.chrome.inputview.layouts.RowsOf102', |
43 'i18n.input.chrome.inputview.layouts.RowsOfCompact', | 43 'i18n.input.chrome.inputview.layouts.RowsOfCompact', |
44 'i18n.input.chrome.inputview.layouts.RowsOfJP', | 44 'i18n.input.chrome.inputview.layouts.RowsOfJP', |
45 'i18n.input.chrome.inputview.layouts.RowsOfNumberpad', | 45 'i18n.input.chrome.inputview.layouts.RowsOfNumberpad', |
46 'i18n.input.chrome.inputview.layouts.SpaceRow', | 46 'i18n.input.chrome.inputview.layouts.SpaceRow', |
47 'i18n.input.chrome.inputview.layouts.util', | 47 'i18n.input.chrome.inputview.layouts.util', |
| 48 'i18n.input.chrome.inputview.layouts.material.CompactSpaceRow', |
| 49 'i18n.input.chrome.inputview.layouts.material.RowsOf101', |
| 50 'i18n.input.chrome.inputview.layouts.material.RowsOf102', |
| 51 'i18n.input.chrome.inputview.layouts.material.RowsOfCompact', |
| 52 'i18n.input.chrome.inputview.layouts.material.RowsOfJP', |
| 53 'i18n.input.chrome.inputview.layouts.material.RowsOfNumberpad', |
| 54 'i18n.input.chrome.inputview.layouts.material.SpaceRow', |
| 55 'i18n.input.chrome.inputview.layouts.material.util', |
48 'i18n.input.hwt.util' | 56 'i18n.input.hwt.util' |
49 ] | 57 ] |
50 | 58 |
51 # Any additional required files. | 59 # Any additional required files. |
52 extras = [ | 60 extras = [ |
53 'common.css', | 61 'common.css', |
54 'emoji.css' | 62 'emoji.css' |
55 ] | 63 ] |
56 | 64 |
57 | 65 |
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
315 | 323 |
316 # Copy extra support files. | 324 # Copy extra support files. |
317 for name in extras: | 325 for name in extras: |
318 source = os.path.join(input_path, 'chrome', 'os', 'inputview', name) | 326 source = os.path.join(input_path, 'chrome', 'os', 'inputview', name) |
319 target = os.path.join('src', 'chrome', 'os', 'inputview', name) | 327 target = os.path.join('src', 'chrome', 'os', 'inputview', name) |
320 copy_file(source, target) | 328 copy_file(source, target) |
321 | 329 |
322 | 330 |
323 if __name__ == '__main__': | 331 if __name__ == '__main__': |
324 main() | 332 main() |
OLD | NEW |