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

Side by Side Diff: platform_tools/android/gyp_gen/tool_makefile_writer.py

Issue 235883015: Generate tests/Android.mk from gyp (Closed) Base URL: https://skia.googlesource.com/skia.git@generate
Patch Set: Remove Android.mk/SkUserConfig.h 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/python
2
3 # Copyright 2014 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 """Code for generating Android.mk for a tool."""
9
10
11 import android_framework_gyp
12 import gypd_parser
13 import makefile_writer
14 import os
15 import vars_dict_lib
16
17
18 def write_tool_android_mk(target_dir, var_dict):
19 """Write Android.mk for a Skia tool.
20
21 Args:
22 target_dir: Destination for the makefile. Must not be None.
23 var_dict: VarsDict containing variables for the makefile.
24 """
25 target_file = os.path.join(target_dir, 'Android.mk')
26 with open(target_file, 'w') as f:
27 f.write(makefile_writer.AUTOGEN_WARNING)
28 makefile_writer.write_local_path(f)
29 makefile_writer.write_clear_vars(f)
30
31 makefile_writer.write_local_vars(f, var_dict, False, None)
32
33 makefile_writer.write_include_stlport(f)
34 f.write('include $(BUILD_EXECUTABLE)\n')
35
36
37 def generate_tool(gyp_dir, target_file, skia_trunk, dest_dir,
38 skia_lib_var_dict, local_module_name, local_module_tags):
39 """Common steps for building one of the skia tools.
40
41 Parse a gyp file and create an Android.mk for this tool.
42
43 Args:
44 gyp_dir: Directory containing gyp files.
45 target_file: gyp file for the project to be built, contained in gyp_dir.
46 skia_trunk: Trunk of Skia, used for determining the destination to write
47 'Android.mk'.
48 dest_dir: Destination for 'Android.mk', relative to skia_trunk. Used for
49 both writing relative paths in the makefile and for determining the
50 destination to write the it.
51 skia_lib_var_dict: VarsDict representing libskia. Used as a reference to
52 ensure we do not duplicate anything in this Android.mk.
53 local_module_name: Name for this tool, to set as LOCAL_MODULE.
54 local_module_tags: Tags to pass to LOCAL_MODULE_TAG.
55 """
56 result_file = android_framework_gyp.main(target_dir=gyp_dir,
57 target_file=target_file,
58 skia_arch_type='other',
59 have_neon=False)
60
61 var_dict = vars_dict_lib.VarsDict()
62
63 # Add known targets from skia_lib, so we do not reparse them.
64 var_dict.KNOWN_TARGETS.set(skia_lib_var_dict.KNOWN_TARGETS)
65
66 gypd_parser.parse_gypd(var_dict, result_file, dest_dir)
67
68 android_framework_gyp.clean_gypd_files(gyp_dir)
69
70 var_dict.LOCAL_MODULE.add(local_module_name)
71 for tag in local_module_tags:
72 var_dict.LOCAL_MODULE_TAGS.add(tag)
73
74 # No need for defines that are already in skia_lib.
75 for define in skia_lib_var_dict.DEFINES:
76 try:
77 var_dict.DEFINES.remove(define)
78 except ValueError:
79 # Okay if the define was not part of the parse for our tool.
80 pass
81
82 if skia_trunk:
83 full_dest = os.path.join(skia_trunk, dest_dir)
84 else:
85 full_dest = dest_dir
86
87 # If the path does not exist, create it. This will happen during testing,
88 # where there is no subdirectory for each tool (just a temporary folder).
89 if not os.path.exists(full_dest):
90 os.mkdir(full_dest)
91
92 write_tool_android_mk(target_dir=full_dest, var_dict=var_dict)
OLDNEW
« no previous file with comments | « platform_tools/android/gyp_gen/makefile_writer.py ('k') | platform_tools/android/gyp_gen/vars_dict_lib.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698