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

Side by Side Diff: third_party/google_input_tools/update.py

Issue 1033773002: Fixes grit not pulling in material design files. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix >80 line length Created 5 years, 9 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/google_input_tools/inputview.gypi ('k') | ui/keyboard/keyboard_resources.grd » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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()
OLDNEW
« no previous file with comments | « third_party/google_input_tools/inputview.gypi ('k') | ui/keyboard/keyboard_resources.grd » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698