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

Side by Side Diff: experimental/mojo/generate.py

Issue 1644043003: SkMojo: test linking Skia against the Mojo SDK (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: fix Created 4 years, 10 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 | « experimental/mojo/SkMojo.mojom ('k') | gyp/common_variables.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #!/usr/bin/python
2
3 # Copyright 2016 Google Inc.
4 #
5 # Use of this source code is governed by a BSD-style license that can be
6 # found in the LICENSE file.
7
8 import hashlib
9 import os
10 import subprocess
11 import urllib2
12 import stat
13
14 THIS_DIR = os.path.abspath(os.path.dirname(__file__))
15 MOJO_DIR = os.path.abspath(os.path.join(THIS_DIR, '../../third_party/externals/m ojo'))
16
17 def GetFile(filename, bucket_directory):
18 def sha1hash(path):
19 hasher = hashlib.sha1()
20 if os.path.isfile(path):
21 with open(path, 'r') as f:
22 hasher.update(f.read())
23 return hasher.hexdigest()
24 sha_path = filename + '.sha1'
25 assert os.path.isfile(sha_path)
26 with open(sha_path, 'r') as f:
27 sha = f.read(40)
28 if sha1hash(filename) == sha:
29 return
30 url = 'https://storage.googleapis.com/%s/%s' % (bucket_directory, sha)
31 with open(filename, 'w') as o:
32 o.write(urllib2.urlopen(url).read())
33 os.chmod(filename, stat.S_IRUSR | stat.S_IRGRP | stat.S_IROTH |
34 stat.S_IXUSR | stat.S_IXGRP | stat.S_IXOTH)
35 assert sha1hash(filename) == sha
36
37 def GenerateBindings(path, cdir=None):
38 GetFile(os.path.join(MOJO_DIR,
39 'public/tools/bindings/mojom_parser/bin/linux64/mojom_p arser'),
40 'mojo/mojom_parser/linux64')
41 assert os.path.isfile(path)
42 path = os.path.abspath(path)
43 exe = os.path.join(
44 MOJO_DIR, 'public/tools/bindings/mojom_bindings_generator.py')
45 assert os.path.isfile(exe)
46 if cdir is None:
47 cdir = os.path.dirname(path)
48 assert os.path.isdir(cdir)
49 cwd = os.getcwd()
50 os.chdir(cdir)
51 subprocess.check_call([exe, os.path.relpath(path, cdir)])
52 os.chdir(cwd)
53
54 for f in [
55 'public/interfaces/bindings/interface_control_messages.mojom',
56 'public/interfaces/application/service_provider.mojom',
57 'public/interfaces/bindings/tests/ping_service.mojom',
58 'public/interfaces/application/application.mojom',
59 ]:
60 GenerateBindings(os.path.join(MOJO_DIR, f), os.path.join(MOJO_DIR, os.pardir ))
61
62 GenerateBindings(os.path.join(THIS_DIR, 'SkMojo.mojom'))
OLDNEW
« no previous file with comments | « experimental/mojo/SkMojo.mojom ('k') | gyp/common_variables.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698