blob: e6de81da2995320114dd92e8ab8d0e812246afcc [file] [log] [blame]
Patrick Rohr92d74122022-10-21 15:50:52 -07001#!/usr/bin/env python3
2# Copyright (C) 2022 The Android Open Source Project
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
16# This tool translates a collection of BUILD.gn files into a mostly equivalent
17# Android.bp file for the Android Soong build system. The input to the tool is a
18# JSON description of the GN build definition generated with the following
19# command:
20#
21# gn desc out --format=json --all-toolchains "//*" > desc.json
22#
23# The tool is then given a list of GN labels for which to generate Android.bp
24# build rules. The dependencies for the GN labels are squashed to the generated
25# Android.bp target, except for actions which get their own genrule. Some
26# libraries are also mapped to their Android equivalents -- see |builtin_deps|.
27
28import argparse
29import collections
30import json
31import os
32import re
33import sys
34
35import gn_utils
36
Patrick Rohr92d74122022-10-21 15:50:52 -070037ROOT_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
38
Patrick Rohr92d74122022-10-21 15:50:52 -070039# Defines a custom init_rc argument to be applied to the corresponding output
40# blueprint target.
41target_initrc = {
Patrick Rohrc36ef422022-10-25 10:38:05 -070042 # TODO: this can probably be removed.
Patrick Rohr92d74122022-10-21 15:50:52 -070043}
44
45target_host_supported = [
Patrick Rohrdc383942022-10-25 10:45:29 -070046 # TODO: remove if this is not useful for the cronet build.
Patrick Rohr92d74122022-10-21 15:50:52 -070047]
48
Patrick Rohr92d74122022-10-21 15:50:52 -070049# Proto target groups which will be made public.
50proto_groups = {
Patrick Rohr95212a22022-10-25 09:53:13 -070051 # TODO: remove if this is not used for the cronet build.
Patrick Rohr92d74122022-10-21 15:50:52 -070052}
53
54# All module names are prefixed with this string to avoid collisions.
Patrick Rohr61b2bad2022-10-25 10:49:20 -070055module_prefix = 'cronet_aml_'
Patrick Rohr92d74122022-10-21 15:50:52 -070056
57# Shared libraries which are directly translated to Android system equivalents.
58shared_library_allowlist = [
59 'android',
60 'android.hardware.atrace@1.0',
61 'android.hardware.health@2.0',
62 'android.hardware.health-V1-ndk',
63 'android.hardware.power.stats@1.0',
64 "android.hardware.power.stats-V1-cpp",
65 'base',
66 'binder',
67 'binder_ndk',
68 'cutils',
69 'hidlbase',
70 'hidltransport',
71 'hwbinder',
72 'incident',
73 'log',
74 'services',
75 'statssocket',
76 "tracingproxy",
77 'utils',
78]
79
80# Static libraries which are directly translated to Android system equivalents.
81static_library_allowlist = [
82 'statslog_perfetto',
83]
84
85# Name of the module which settings such as compiler flags for all other
86# modules.
87defaults_module = module_prefix + 'defaults'
88
89# Location of the project in the Android source tree.
90tree_path = 'external/perfetto'
91
92# Path for the protobuf sources in the standalone build.
93buildtools_protobuf_src = '//buildtools/protobuf/src'
94
95# Location of the protobuf src dir in the Android source tree.
96android_protobuf_src = 'external/protobuf/src'
97
98# Compiler flags which are passed through to the blueprint.
99cflag_allowlist = r'^-DPERFETTO.*$'
100
101# Compiler defines which are passed through to the blueprint.
102define_allowlist = r'^(GOOGLE_PROTO.*)|(ZLIB_.*)|(USE_MMAP)|(HAVE_HIDDEN)$'
103
Patrick Rohr92d74122022-10-21 15:50:52 -0700104# Additional arguments to apply to Android.bp rules.
105additional_args = {
Patrick Rohr29ba3052022-10-25 11:30:49 -0700106 # TODO: remove if this is not useful for the cronet build.
107 # Consider using additional_args for overriding the genrule cmd property for gn actions.
Patrick Rohr92d74122022-10-21 15:50:52 -0700108}
109
110
111def enable_gtest_and_gmock(module):
112 module.static_libs.add('libgmock')
113 module.static_libs.add('libgtest')
114 if module.name != 'perfetto_gtest_logcat_printer':
115 module.whole_static_libs.add('perfetto_gtest_logcat_printer')
116
117
118def enable_protobuf_full(module):
119 if module.type == 'cc_binary_host':
120 module.static_libs.add('libprotobuf-cpp-full')
121 elif module.host_supported:
122 module.host.static_libs.add('libprotobuf-cpp-full')
123 module.android.shared_libs.add('libprotobuf-cpp-full')
124 else:
125 module.shared_libs.add('libprotobuf-cpp-full')
126
127
128def enable_protobuf_lite(module):
129 module.shared_libs.add('libprotobuf-cpp-lite')
130
131
132def enable_protoc_lib(module):
133 if module.type == 'cc_binary_host':
134 module.static_libs.add('libprotoc')
135 else:
136 module.shared_libs.add('libprotoc')
137
138
139def enable_libunwindstack(module):
140 if module.name != 'heapprofd_standalone_client':
141 module.shared_libs.add('libunwindstack')
142 module.shared_libs.add('libprocinfo')
143 module.shared_libs.add('libbase')
144 else:
145 module.static_libs.add('libunwindstack')
146 module.static_libs.add('libprocinfo')
147 module.static_libs.add('libbase')
148 module.static_libs.add('liblzma')
149 module.static_libs.add('libdexfile_support')
150 module.runtime_libs.add('libdexfile') # libdexfile_support dependency
151
152
153def enable_libunwind(module):
154 # libunwind is disabled on Darwin so we cannot depend on it.
155 pass
156
157
158def enable_sqlite(module):
159 if module.type == 'cc_binary_host':
160 module.static_libs.add('libsqlite')
161 module.static_libs.add('sqlite_ext_percentile')
162 elif module.host_supported:
163 # Copy what the sqlite3 command line tool does.
164 module.android.shared_libs.add('libsqlite')
165 module.android.shared_libs.add('libicu')
166 module.android.shared_libs.add('liblog')
167 module.android.shared_libs.add('libutils')
168 module.android.static_libs.add('sqlite_ext_percentile')
169 module.host.static_libs.add('libsqlite')
170 module.host.static_libs.add('sqlite_ext_percentile')
171 else:
172 module.shared_libs.add('libsqlite')
173 module.shared_libs.add('libicu')
174 module.shared_libs.add('liblog')
175 module.shared_libs.add('libutils')
176 module.static_libs.add('sqlite_ext_percentile')
177
178
179def enable_zlib(module):
180 if module.type == 'cc_binary_host':
181 module.static_libs.add('libz')
182 elif module.host_supported:
183 module.android.shared_libs.add('libz')
184 module.host.static_libs.add('libz')
185 else:
186 module.shared_libs.add('libz')
187
188
189def enable_uapi_headers(module):
190 module.include_dirs.add('bionic/libc/kernel')
191
192
193def enable_bionic_libc_platform_headers_on_android(module):
194 module.header_libs.add('bionic_libc_platform_headers')
195
196
197# Android equivalents for third-party libraries that the upstream project
198# depends on.
199builtin_deps = {
200 '//gn:default_deps':
201 lambda x: None,
202 '//gn:gtest_main':
203 lambda x: None,
204 '//gn:protoc':
205 lambda x: None,
206 '//gn:gtest_and_gmock':
207 enable_gtest_and_gmock,
208 '//gn:libunwind':
209 enable_libunwind,
210 '//gn:protobuf_full':
211 enable_protobuf_full,
212 '//gn:protobuf_lite':
213 enable_protobuf_lite,
214 '//gn:protoc_lib':
215 enable_protoc_lib,
216 '//gn:libunwindstack':
217 enable_libunwindstack,
218 '//gn:sqlite':
219 enable_sqlite,
220 '//gn:zlib':
221 enable_zlib,
222 '//gn:bionic_kernel_uapi_headers':
223 enable_uapi_headers,
224 '//src/profiling/memory:bionic_libc_platform_headers_on_android':
225 enable_bionic_libc_platform_headers_on_android,
226}
227
228# ----------------------------------------------------------------------------
229# End of configuration.
230# ----------------------------------------------------------------------------
231
232
233class Error(Exception):
234 pass
235
236
237class ThrowingArgumentParser(argparse.ArgumentParser):
238
239 def __init__(self, context):
240 super(ThrowingArgumentParser, self).__init__()
241 self.context = context
242
243 def error(self, message):
244 raise Error('%s: %s' % (self.context, message))
245
246
247def write_blueprint_key_value(output, name, value, sort=True):
248 """Writes a Blueprint key-value pair to the output"""
249
250 if isinstance(value, bool):
251 if value:
252 output.append(' %s: true,' % name)
253 else:
254 output.append(' %s: false,' % name)
255 return
256 if not value:
257 return
258 if isinstance(value, set):
259 value = sorted(value)
260 if isinstance(value, list):
261 output.append(' %s: [' % name)
262 for item in sorted(value) if sort else value:
263 output.append(' "%s",' % item)
264 output.append(' ],')
265 return
266 if isinstance(value, Target):
267 value.to_string(output)
268 return
269 if isinstance(value, dict):
270 kv_output = []
271 for k, v in value.items():
272 write_blueprint_key_value(kv_output, k, v)
273
274 output.append(' %s: {' % name)
275 for line in kv_output:
276 output.append(' %s' % line)
277 output.append(' },')
278 return
279 output.append(' %s: "%s",' % (name, value))
280
281
282class Target(object):
283 """A target-scoped part of a module"""
284
285 def __init__(self, name):
286 self.name = name
287 self.shared_libs = set()
288 self.static_libs = set()
289 self.whole_static_libs = set()
290 self.cflags = set()
291 self.dist = dict()
292 self.strip = dict()
293 self.stl = None
294
295 def to_string(self, output):
296 nested_out = []
297 self._output_field(nested_out, 'shared_libs')
298 self._output_field(nested_out, 'static_libs')
299 self._output_field(nested_out, 'whole_static_libs')
300 self._output_field(nested_out, 'cflags')
301 self._output_field(nested_out, 'stl')
302 self._output_field(nested_out, 'dist')
303 self._output_field(nested_out, 'strip')
304
305 if nested_out:
306 output.append(' %s: {' % self.name)
307 for line in nested_out:
308 output.append(' %s' % line)
309 output.append(' },')
310
311 def _output_field(self, output, name, sort=True):
312 value = getattr(self, name)
313 return write_blueprint_key_value(output, name, value, sort)
314
315
316class Module(object):
317 """A single module (e.g., cc_binary, cc_test) in a blueprint."""
318
319 def __init__(self, mod_type, name, gn_target):
320 self.type = mod_type
321 self.gn_target = gn_target
322 self.name = name
323 self.srcs = set()
324 self.comment = 'GN: ' + gn_utils.label_without_toolchain(gn_target)
325 self.shared_libs = set()
326 self.static_libs = set()
327 self.whole_static_libs = set()
328 self.runtime_libs = set()
329 self.tools = set()
330 self.cmd = None
331 self.host_supported = False
332 self.vendor_available = False
333 self.init_rc = set()
334 self.out = set()
335 self.export_include_dirs = set()
336 self.generated_headers = set()
337 self.export_generated_headers = set()
338 self.defaults = set()
339 self.cflags = set()
340 self.include_dirs = set()
341 self.header_libs = set()
342 self.required = set()
Patrick Rohr92d74122022-10-21 15:50:52 -0700343 self.tool_files = None
344 self.android = Target('android')
345 self.host = Target('host')
Patrick Rohr92d74122022-10-21 15:50:52 -0700346 self.stl = None
347 self.dist = dict()
348 self.strip = dict()
349 self.data = set()
350 self.apex_available = set()
351 self.min_sdk_version = None
352 self.proto = dict()
353 # The genrule_XXX below are properties that must to be propagated back
354 # on the module(s) that depend on the genrule.
355 self.genrule_headers = set()
356 self.genrule_srcs = set()
357 self.genrule_shared_libs = set()
358 self.version_script = None
359 self.test_suites = set()
360 self.test_config = None
361 self.stubs = {}
362
363 def to_string(self, output):
364 if self.comment:
365 output.append('// %s' % self.comment)
366 output.append('%s {' % self.type)
367 self._output_field(output, 'name')
368 self._output_field(output, 'srcs')
369 self._output_field(output, 'shared_libs')
370 self._output_field(output, 'static_libs')
371 self._output_field(output, 'whole_static_libs')
372 self._output_field(output, 'runtime_libs')
373 self._output_field(output, 'tools')
374 self._output_field(output, 'cmd', sort=False)
375 if self.host_supported:
376 self._output_field(output, 'host_supported')
377 if self.vendor_available:
378 self._output_field(output, 'vendor_available')
379 self._output_field(output, 'init_rc')
380 self._output_field(output, 'out')
381 self._output_field(output, 'export_include_dirs')
382 self._output_field(output, 'generated_headers')
383 self._output_field(output, 'export_generated_headers')
384 self._output_field(output, 'defaults')
385 self._output_field(output, 'cflags')
386 self._output_field(output, 'include_dirs')
387 self._output_field(output, 'header_libs')
388 self._output_field(output, 'required')
389 self._output_field(output, 'dist')
390 self._output_field(output, 'strip')
391 self._output_field(output, 'tool_files')
392 self._output_field(output, 'data')
393 self._output_field(output, 'stl')
394 self._output_field(output, 'apex_available')
395 self._output_field(output, 'min_sdk_version')
396 self._output_field(output, 'version_script')
397 self._output_field(output, 'test_suites')
398 self._output_field(output, 'test_config')
399 self._output_field(output, 'stubs')
400 self._output_field(output, 'proto')
401
402 target_out = []
403 self._output_field(target_out, 'android')
404 self._output_field(target_out, 'host')
405 if target_out:
406 output.append(' target: {')
407 for line in target_out:
408 output.append(' %s' % line)
409 output.append(' },')
410
Patrick Rohr92d74122022-10-21 15:50:52 -0700411 output.append('}')
412 output.append('')
413
414 def add_android_static_lib(self, lib):
415 if self.type == 'cc_binary_host':
416 raise Exception('Adding Android static lib for host tool is unsupported')
417 elif self.host_supported:
418 self.android.static_libs.add(lib)
419 else:
420 self.static_libs.add(lib)
421
422 def add_android_shared_lib(self, lib):
423 if self.type == 'cc_binary_host':
424 raise Exception('Adding Android shared lib for host tool is unsupported')
425 elif self.host_supported:
426 self.android.shared_libs.add(lib)
427 else:
428 self.shared_libs.add(lib)
429
430 def _output_field(self, output, name, sort=True):
431 value = getattr(self, name)
432 return write_blueprint_key_value(output, name, value, sort)
433
434
435class Blueprint(object):
436 """In-memory representation of an Android.bp file."""
437
438 def __init__(self):
439 self.modules = {}
440
441 def add_module(self, module):
442 """Adds a new module to the blueprint, replacing any existing module
443 with the same name.
444
445 Args:
446 module: Module instance.
447 """
448 self.modules[module.name] = module
449
450 def to_string(self, output):
Patrick Rohr23f26192022-10-25 09:45:22 -0700451 for m in sorted(self.modules.values(), key=lambda m: m.name):
Patrick Rohr92d74122022-10-21 15:50:52 -0700452 m.to_string(output)
453
454
455def label_to_module_name(label):
456 """Turn a GN label (e.g., //:perfetto_tests) into a module name."""
457 # If the label is explicibly listed in the default target list, don't prefix
458 # its name and return just the target name. This is so tools like
459 # "traceconv" stay as such in the Android tree.
460 label_without_toolchain = gn_utils.label_without_toolchain(label)
Patrick Rohr92d74122022-10-21 15:50:52 -0700461 module = re.sub(r'^//:?', '', label_without_toolchain)
462 module = re.sub(r'[^a-zA-Z0-9_]', '_', module)
463 if not module.startswith(module_prefix):
464 return module_prefix + module
465 return module
466
467
468def is_supported_source_file(name):
469 """Returns True if |name| can appear in a 'srcs' list."""
470 return os.path.splitext(name)[1] in ['.c', '.cc', '.proto']
471
472
473def create_proto_modules(blueprint, gn, target):
474 """Generate genrules for a proto GN target.
475
476 GN actions are used to dynamically generate files during the build. The
477 Soong equivalent is a genrule. This function turns a specific kind of
478 genrule which turns .proto files into source and header files into a pair
479 equivalent genrules.
480
481 Args:
482 blueprint: Blueprint instance which is being generated.
483 target: gn_utils.Target object.
484
485 Returns:
486 The source_genrule module.
487 """
488 assert (target.type == 'proto_library')
489
490 tools = {'aprotoc'}
491 cpp_out_dir = '$(genDir)/%s/' % tree_path
492 target_module_name = label_to_module_name(target.name)
493
494 # In GN builds the proto path is always relative to the output directory
495 # (out/tmp.xxx).
496 cmd = ['mkdir -p %s &&' % cpp_out_dir, '$(location aprotoc)']
497 cmd += ['--proto_path=%s' % tree_path]
498
499 if buildtools_protobuf_src in target.proto_paths:
500 cmd += ['--proto_path=%s' % android_protobuf_src]
501
502 # We don't generate any targets for source_set proto modules because
503 # they will be inlined into other modules if required.
504 if target.proto_plugin == 'source_set':
505 return None
506
507 # Descriptor targets only generate a single target.
508 if target.proto_plugin == 'descriptor':
509 out = '{}.bin'.format(target_module_name)
510
511 cmd += ['--descriptor_set_out=$(out)']
512 cmd += ['$(in)']
513
514 descriptor_module = Module('genrule', target_module_name, target.name)
515 descriptor_module.cmd = ' '.join(cmd)
516 descriptor_module.out = [out]
517 descriptor_module.tools = tools
518 blueprint.add_module(descriptor_module)
519
520 # Recursively extract the .proto files of all the dependencies and
521 # add them to srcs.
522 descriptor_module.srcs.update(
523 gn_utils.label_to_path(src) for src in target.sources)
524 for dep in target.transitive_proto_deps:
525 current_target = gn.get_target(dep)
526 descriptor_module.srcs.update(
527 gn_utils.label_to_path(src) for src in current_target.sources)
528
529 return descriptor_module
530
531 # We create two genrules for each proto target: one for the headers and
532 # another for the sources. This is because the module that depends on the
533 # generated files needs to declare two different types of dependencies --
534 # source files in 'srcs' and headers in 'generated_headers' -- and it's not
535 # valid to generate .h files from a source dependency and vice versa.
536 source_module_name = target_module_name + '_gen'
537 source_module = Module('genrule', source_module_name, target.name)
538 blueprint.add_module(source_module)
539 source_module.srcs.update(
540 gn_utils.label_to_path(src) for src in target.sources)
541
542 header_module = Module('genrule', source_module_name + '_headers',
543 target.name)
544 blueprint.add_module(header_module)
545 header_module.srcs = set(source_module.srcs)
546
547 # TODO(primiano): at some point we should remove this. This was introduced
548 # by aosp/1108421 when adding "protos/" to .proto include paths, in order to
549 # avoid doing multi-repo changes and allow old clients in the android tree
550 # to still do the old #include "perfetto/..." rather than
551 # #include "protos/perfetto/...".
552 header_module.export_include_dirs = {'.', 'protos'}
553
554 source_module.genrule_srcs.add(':' + source_module.name)
555 source_module.genrule_headers.add(header_module.name)
556
557 if target.proto_plugin == 'proto':
558 suffixes = ['pb']
559 source_module.genrule_shared_libs.add('libprotobuf-cpp-lite')
560 cmd += ['--cpp_out=lite=true:' + cpp_out_dir]
561 elif target.proto_plugin == 'protozero':
562 suffixes = ['pbzero']
563 plugin = create_modules_from_target(blueprint, gn, protozero_plugin)
564 tools.add(plugin.name)
565 cmd += ['--plugin=protoc-gen-plugin=$(location %s)' % plugin.name]
566 cmd += ['--plugin_out=wrapper_namespace=pbzero:' + cpp_out_dir]
567 elif target.proto_plugin == 'cppgen':
568 suffixes = ['gen']
569 plugin = create_modules_from_target(blueprint, gn, cppgen_plugin)
570 tools.add(plugin.name)
571 cmd += ['--plugin=protoc-gen-plugin=$(location %s)' % plugin.name]
572 cmd += ['--plugin_out=wrapper_namespace=gen:' + cpp_out_dir]
573 elif target.proto_plugin == 'ipc':
574 suffixes = ['ipc']
575 plugin = create_modules_from_target(blueprint, gn, ipc_plugin)
576 tools.add(plugin.name)
577 cmd += ['--plugin=protoc-gen-plugin=$(location %s)' % plugin.name]
578 cmd += ['--plugin_out=wrapper_namespace=gen:' + cpp_out_dir]
579 else:
580 raise Error('Unsupported proto plugin: %s' % target.proto_plugin)
581
582 cmd += ['$(in)']
583 source_module.cmd = ' '.join(cmd)
584 header_module.cmd = source_module.cmd
585 source_module.tools = tools
586 header_module.tools = tools
587
588 for sfx in suffixes:
589 source_module.out.update('%s/%s' %
590 (tree_path, src.replace('.proto', '.%s.cc' % sfx))
591 for src in source_module.srcs)
592 header_module.out.update('%s/%s' %
593 (tree_path, src.replace('.proto', '.%s.h' % sfx))
594 for src in header_module.srcs)
595 return source_module
596
597
598def create_amalgamated_sql_metrics_module(blueprint, target):
599 bp_module_name = label_to_module_name(target.name)
600 module = Module('genrule', bp_module_name, target.name)
601 module.tool_files = [
602 'tools/gen_amalgamated_sql_metrics.py',
603 ]
604 module.cmd = ' '.join([
605 '$(location tools/gen_amalgamated_sql_metrics.py)',
606 '--cpp_out=$(out)',
607 '$(in)',
608 ])
609 module.genrule_headers.add(module.name)
610 module.out.update(target.outputs)
611 module.srcs.update(gn_utils.label_to_path(src) for src in target.inputs)
612 blueprint.add_module(module)
613 return module
614
615
616def create_cc_proto_descriptor_module(blueprint, target):
617 bp_module_name = label_to_module_name(target.name)
618 module = Module('genrule', bp_module_name, target.name)
619 module.tool_files = [
620 'tools/gen_cc_proto_descriptor.py',
621 ]
622 module.cmd = ' '.join([
623 '$(location tools/gen_cc_proto_descriptor.py)', '--gen_dir=$(genDir)',
624 '--cpp_out=$(out)', '$(in)'
625 ])
626 module.genrule_headers.add(module.name)
627 module.srcs.update(
628 ':' + label_to_module_name(dep) for dep in target.proto_deps)
629 module.srcs.update(
630 gn_utils.label_to_path(src)
631 for src in target.inputs
632 if "tmp.gn_utils" not in src)
633 module.out.update(target.outputs)
634 blueprint.add_module(module)
635 return module
636
637
638def create_gen_version_module(blueprint, target, bp_module_name):
639 module = Module('genrule', bp_module_name, gn_utils.GEN_VERSION_TARGET)
640 script_path = gn_utils.label_to_path(target.script)
641 module.genrule_headers.add(bp_module_name)
642 module.tool_files = [script_path]
643 module.out.update(target.outputs)
644 module.srcs.update(gn_utils.label_to_path(src) for src in target.inputs)
645 module.cmd = ' '.join([
646 'python3 $(location %s)' % script_path, '--no_git',
647 '--changelog=$(location CHANGELOG)', '--cpp_out=$(out)'
648 ])
649 blueprint.add_module(module)
650 return module
651
652
653def create_proto_group_modules(blueprint, gn, module_name, target_names):
654 # TODO(lalitm): today, we're only adding a Java lite module because that's
655 # the only one used in practice. In the future, if we need other target types
656 # (e.g. C++, Java full etc.) add them here.
657 bp_module_name = label_to_module_name(module_name) + '_java_protos'
658 module = Module('java_library', bp_module_name, bp_module_name)
659 module.comment = f'''GN: [{', '.join(target_names)}]'''
660 module.proto = {'type': 'lite', 'canonical_path_from_root': False}
661
662 for name in target_names:
663 target = gn.get_target(name)
664 module.srcs.update(gn_utils.label_to_path(src) for src in target.sources)
665 for dep_label in target.transitive_proto_deps:
666 dep = gn.get_target(dep_label)
667 module.srcs.update(gn_utils.label_to_path(src) for src in dep.sources)
668
669 blueprint.add_module(module)
670
671
672def _get_cflags(target):
673 cflags = {flag for flag in target.cflags if re.match(cflag_allowlist, flag)}
674 cflags |= set("-D%s" % define
675 for define in target.defines
676 if re.match(define_allowlist, define))
677 return cflags
678
679
680def create_modules_from_target(blueprint, gn, gn_target_name):
681 """Generate module(s) for a given GN target.
682
683 Given a GN target name, generate one or more corresponding modules into a
684 blueprint. The only case when this generates >1 module is proto libraries.
685
686 Args:
687 blueprint: Blueprint instance which is being generated.
688 gn: gn_utils.GnParser object.
689 gn_target_name: GN target for module generation.
690 """
691 bp_module_name = label_to_module_name(gn_target_name)
692 if bp_module_name in blueprint.modules:
693 return blueprint.modules[bp_module_name]
694 target = gn.get_target(gn_target_name)
695
696 name_without_toolchain = gn_utils.label_without_toolchain(target.name)
697 if target.type == 'executable':
698 if target.toolchain == gn_utils.HOST_TOOLCHAIN:
699 module_type = 'cc_binary_host'
700 elif target.testonly:
701 module_type = 'cc_test'
702 else:
703 module_type = 'cc_binary'
704 module = Module(module_type, bp_module_name, gn_target_name)
705 elif target.type == 'static_library':
706 module = Module('cc_library_static', bp_module_name, gn_target_name)
707 elif target.type == 'shared_library':
708 module = Module('cc_library_shared', bp_module_name, gn_target_name)
709 elif target.type == 'source_set':
710 module = Module('filegroup', bp_module_name, gn_target_name)
711 elif target.type == 'group':
712 # "group" targets are resolved recursively by gn_utils.get_target().
713 # There's nothing we need to do at this level for them.
714 return None
715 elif target.type == 'proto_library':
716 module = create_proto_modules(blueprint, gn, target)
717 if module is None:
718 return None
719 elif target.type == 'action':
720 if 'gen_amalgamated_sql_metrics' in target.name:
721 module = create_amalgamated_sql_metrics_module(blueprint, target)
722 elif re.match('.*gen_cc_.*_descriptor$', name_without_toolchain):
723 module = create_cc_proto_descriptor_module(blueprint, target)
724 elif target.type == 'action' and \
725 name_without_toolchain == gn_utils.GEN_VERSION_TARGET:
726 module = create_gen_version_module(blueprint, target, bp_module_name)
727 else:
728 raise Error('Unhandled action: {}'.format(target.name))
729 else:
730 raise Error('Unknown target %s (%s)' % (target.name, target.type))
731
732 blueprint.add_module(module)
733 module.host_supported = (name_without_toolchain in target_host_supported)
Patrick Rohr92d74122022-10-21 15:50:52 -0700734 module.init_rc = target_initrc.get(target.name, [])
735 module.srcs.update(
736 gn_utils.label_to_path(src)
737 for src in target.sources
738 if is_supported_source_file(src))
739
740 if target.type in gn_utils.LINKER_UNIT_TYPES:
741 module.cflags.update(_get_cflags(target))
742
743 module_is_compiled = module.type not in ('genrule', 'filegroup')
744 if module_is_compiled:
745 # Don't try to inject library/source dependencies into genrules or
746 # filegroups because they are not compiled in the traditional sense.
747 module.defaults = [defaults_module]
748 for lib in target.libs:
749 # Generally library names should be mangled as 'libXXX', unless they
750 # are HAL libraries (e.g., android.hardware.health@2.0) or AIDL c++ / NDK
751 # libraries (e.g. "android.hardware.power.stats-V1-cpp")
752 android_lib = lib if '@' in lib or "-cpp" in lib or "-ndk" in lib \
753 else 'lib' + lib
754 if lib in shared_library_allowlist:
755 module.add_android_shared_lib(android_lib)
756 if lib in static_library_allowlist:
757 module.add_android_static_lib(android_lib)
758
759 # If the module is a static library, export all the generated headers.
760 if module.type == 'cc_library_static':
761 module.export_generated_headers = module.generated_headers
762
763 # Merge in additional hardcoded arguments.
764 for key, add_val in additional_args.get(module.name, []):
765 curr = getattr(module, key)
766 if add_val and isinstance(add_val, set) and isinstance(curr, set):
767 curr.update(add_val)
768 elif isinstance(add_val, str) and (not curr or isinstance(curr, str)):
769 setattr(module, key, add_val)
770 elif isinstance(add_val, bool) and (not curr or isinstance(curr, bool)):
771 setattr(module, key, add_val)
772 elif isinstance(add_val, dict) and isinstance(curr, dict):
773 curr.update(add_val)
774 elif isinstance(add_val, dict) and isinstance(curr, Target):
775 curr.__dict__.update(add_val)
776 else:
777 raise Error('Unimplemented type %r of additional_args: %r' %
778 (type(add_val), key))
779
780 # dep_name is an unmangled GN target name (e.g. //foo:bar(toolchain)).
781 all_deps = target.deps | target.source_set_deps | target.transitive_proto_deps
782 for dep_name in all_deps:
783 # If the dependency refers to a library which we can replace with an
784 # Android equivalent, stop recursing and patch the dependency in.
785 # Don't recurse into //buildtools, builtin_deps are intercepted at
786 # the //gn:xxx level.
787 if dep_name.startswith('//buildtools'):
788 continue
789
790 # Ignore the dependency on the gen_buildflags genrule. That is run
791 # separately in this generator and the generated file is copied over
792 # into the repo (see usage of |buildflags_dir| in this script).
793 if dep_name.startswith(gn_utils.BUILDFLAGS_TARGET):
794 continue
795
796 dep_module = create_modules_from_target(blueprint, gn, dep_name)
797
798 # For filegroups and genrule, recurse but don't apply the deps.
799 if not module_is_compiled:
800 continue
801
802 # |builtin_deps| override GN deps with Android-specific ones. See the
803 # config in the top of this file.
804 if gn_utils.label_without_toolchain(dep_name) in builtin_deps:
805 builtin_deps[gn_utils.label_without_toolchain(dep_name)](module)
806 continue
807
808 # Don't recurse in any other //gn dep if not handled by builtin_deps.
809 if dep_name.startswith('//gn:'):
810 continue
811
812 if dep_module is None:
813 continue
814 if dep_module.type == 'cc_library_shared':
815 module.shared_libs.add(dep_module.name)
816 elif dep_module.type == 'cc_library_static':
817 module.static_libs.add(dep_module.name)
818 elif dep_module.type == 'filegroup':
819 module.srcs.add(':' + dep_module.name)
820 elif dep_module.type == 'genrule':
821 module.generated_headers.update(dep_module.genrule_headers)
822 module.srcs.update(dep_module.genrule_srcs)
823 module.shared_libs.update(dep_module.genrule_shared_libs)
824 elif dep_module.type == 'cc_binary':
825 continue # Ignore executables deps (used by cmdline integration tests).
826 else:
827 raise Error('Unknown dep %s (%s) for target %s' %
828 (dep_module.name, dep_module.type, module.name))
829
830 return module
831
832
833def create_blueprint_for_targets(gn, desc, targets):
834 """Generate a blueprint for a list of GN targets."""
835 blueprint = Blueprint()
836
837 # Default settings used by all modules.
838 defaults = Module('cc_defaults', defaults_module, '//gn:default_deps')
Patrick Rohr92d74122022-10-21 15:50:52 -0700839 defaults.cflags = [
840 '-Wno-error=return-type',
841 '-Wno-sign-compare',
842 '-Wno-sign-promo',
843 '-Wno-unused-parameter',
844 '-fvisibility=hidden',
845 '-O2',
846 ]
Patrick Rohr92d74122022-10-21 15:50:52 -0700847
848 blueprint.add_module(defaults)
849 for target in targets:
850 create_modules_from_target(blueprint, gn, target)
851 return blueprint
852
853
854def main():
855 parser = argparse.ArgumentParser(
856 description='Generate Android.bp from a GN description.')
857 parser.add_argument(
Patrick Rohr92d74122022-10-21 15:50:52 -0700858 '--desc',
Patrick Rohr3db246a2022-10-25 10:25:17 -0700859 help='GN description (e.g., gn desc out --format=json --all-toolchains "//*"',
860 required=True
Patrick Rohr92d74122022-10-21 15:50:52 -0700861 )
862 parser.add_argument(
863 '--extras',
864 help='Extra targets to include at the end of the Blueprint file',
865 default=os.path.join(gn_utils.repo_root(), 'Android.bp.extras'),
866 )
867 parser.add_argument(
868 '--output',
869 help='Blueprint file to create',
870 default=os.path.join(gn_utils.repo_root(), 'Android.bp'),
871 )
872 parser.add_argument(
873 'targets',
874 nargs=argparse.REMAINDER,
Patrick Rohr1aa504a2022-10-25 10:30:42 -0700875 help='Targets to include in the blueprint (e.g., "//:perfetto_tests")'
876 )
Patrick Rohr92d74122022-10-21 15:50:52 -0700877 args = parser.parse_args()
878
Patrick Rohr3db246a2022-10-25 10:25:17 -0700879 with open(args.desc) as f:
880 desc = json.load(f)
Patrick Rohr92d74122022-10-21 15:50:52 -0700881
882 gn = gn_utils.GnParser(desc)
Patrick Rohr1aa504a2022-10-25 10:30:42 -0700883 blueprint = create_blueprint_for_targets(gn, desc, args.targets)
Patrick Rohr92d74122022-10-21 15:50:52 -0700884 project_root = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
885 tool_name = os.path.relpath(os.path.abspath(__file__), project_root)
886
Patrick Rohr92d74122022-10-21 15:50:52 -0700887 # Add any proto groups to the blueprint.
888 for l_name, t_names in proto_groups.items():
889 create_proto_group_modules(blueprint, gn, l_name, t_names)
890
891 output = [
Patrick Rohr5478b392022-10-25 09:58:50 -0700892 """// Copyright (C) 2022 The Android Open Source Project
Patrick Rohr92d74122022-10-21 15:50:52 -0700893//
894// Licensed under the Apache License, Version 2.0 (the "License");
895// you may not use this file except in compliance with the License.
896// You may obtain a copy of the License at
897//
898// http://www.apache.org/licenses/LICENSE-2.0
899//
900// Unless required by applicable law or agreed to in writing, software
901// distributed under the License is distributed on an "AS IS" BASIS,
902// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
903// See the License for the specific language governing permissions and
904// limitations under the License.
905//
906// This file is automatically generated by %s. Do not edit.
907""" % (tool_name)
908 ]
909 blueprint.to_string(output)
Patrick Rohrcb98e9b2022-10-25 09:57:02 -0700910 if os.path.exists(args.extras):
911 with open(args.extras, 'r') as r:
912 for line in r:
913 output.append(line.rstrip("\n\r"))
Patrick Rohr92d74122022-10-21 15:50:52 -0700914
915 out_files = []
916
917 # Generate the Android.bp file.
918 out_files.append(args.output + '.swp')
919 with open(out_files[-1], 'w') as f:
920 f.write('\n'.join(output))
921 # Text files should have a trailing EOL.
922 f.write('\n')
923
Patrick Rohr94693eb2022-10-25 10:09:16 -0700924 return 0
Patrick Rohr92d74122022-10-21 15:50:52 -0700925
926
927if __name__ == '__main__':
928 sys.exit(main())