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

Side by Side Diff: chrome/test/chromedriver/embed_mobile_devices_in_cpp.py

Issue 288193004: [Chromedriver] Add Device Metrics override support to ChromeDriver via Capabilities (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 7 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
OLDNEW
(Empty)
1 #!/usr/bin/env python
2 # Copyright (c) 2014 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file.
5
6 """Embeds standalone JavaScript snippets in C++ code.
7
8 The script requires the OverridesView file from WebKit that lists the known
9 mobile devices to be passed in as the only argument. The list of known devices
10 will be written to a C-style string to be parsed with JSONReader.
11 """
12
13 import optparse
14 import os
15 import sys
16
17 import cpp_source
18
19
20 def main():
21 parser = optparse.OptionParser()
22 parser.add_option(
23 '', '--directory', type='string', default='.',
24 help='Path to directory where the cc/h files should be created')
25 options, args = parser.parse_args()
26
27 devices = '['
28 file_name = args[0]
29 inside_list = False
30 with open(file_name, 'r') as f:
31 for line in f:
32 if not inside_list:
33 if 'DeviceTab._phones = [' in line or 'DeviceTab._tablets = [' in line:
34 inside_list = True
35 else:
36 if line.strip() == '];':
37 inside_list = False
38 continue
39 devices += line.strip()
40
41 devices += ']'
42 cpp_source.WriteSource('mobile_device_list',
43 'chrome/test/chromedriver/chrome',
44 options.directory, {'kMobileDevices': devices})
45
46
47 if __name__ == '__main__':
48 sys.exit(main())
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698