blob: be9c3bae795317296410bcba5a4b9fababf51a9d [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
Patrick Rohr16228942022-10-26 14:00:26 -070031import logging as log
Patrick Rohr92d74122022-10-21 15:50:52 -070032import os
33import re
34import sys
35
36import gn_utils
37
Patrick Rohr92d74122022-10-21 15:50:52 -070038ROOT_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
39
Patrick Rohr92d74122022-10-21 15:50:52 -070040# Defines a custom init_rc argument to be applied to the corresponding output
41# blueprint target.
42target_initrc = {
Patrick Rohrc36ef422022-10-25 10:38:05 -070043 # TODO: this can probably be removed.
Patrick Rohr92d74122022-10-21 15:50:52 -070044}
45
46target_host_supported = [
Patrick Rohrdc383942022-10-25 10:45:29 -070047 # TODO: remove if this is not useful for the cronet build.
Patrick Rohr92d74122022-10-21 15:50:52 -070048]
49
Patrick Rohr92d74122022-10-21 15:50:52 -070050# Proto target groups which will be made public.
51proto_groups = {
Patrick Rohr95212a22022-10-25 09:53:13 -070052 # TODO: remove if this is not used for the cronet build.
Patrick Rohr92d74122022-10-21 15:50:52 -070053}
54
55# All module names are prefixed with this string to avoid collisions.
Patrick Rohr61b2bad2022-10-25 10:49:20 -070056module_prefix = 'cronet_aml_'
Patrick Rohr92d74122022-10-21 15:50:52 -070057
58# Shared libraries which are directly translated to Android system equivalents.
59shared_library_allowlist = [
60 'android',
61 'android.hardware.atrace@1.0',
62 'android.hardware.health@2.0',
63 'android.hardware.health-V1-ndk',
64 'android.hardware.power.stats@1.0',
65 "android.hardware.power.stats-V1-cpp",
66 'base',
67 'binder',
68 'binder_ndk',
69 'cutils',
70 'hidlbase',
71 'hidltransport',
72 'hwbinder',
73 'incident',
74 'log',
75 'services',
76 'statssocket',
77 "tracingproxy",
78 'utils',
79]
80
81# Static libraries which are directly translated to Android system equivalents.
82static_library_allowlist = [
83 'statslog_perfetto',
84]
85
86# Name of the module which settings such as compiler flags for all other
87# modules.
88defaults_module = module_prefix + 'defaults'
89
90# Location of the project in the Android source tree.
91tree_path = 'external/perfetto'
92
93# Path for the protobuf sources in the standalone build.
94buildtools_protobuf_src = '//buildtools/protobuf/src'
95
96# Location of the protobuf src dir in the Android source tree.
97android_protobuf_src = 'external/protobuf/src'
98
99# Compiler flags which are passed through to the blueprint.
100cflag_allowlist = r'^-DPERFETTO.*$'
101
Patrick Rohr92d74122022-10-21 15:50:52 -0700102# Additional arguments to apply to Android.bp rules.
103additional_args = {
Patrick Rohr29ba3052022-10-25 11:30:49 -0700104 # TODO: remove if this is not useful for the cronet build.
105 # Consider using additional_args for overriding the genrule cmd property for gn actions.
Patrick Rohr92d74122022-10-21 15:50:52 -0700106}
107
108
109def enable_gtest_and_gmock(module):
110 module.static_libs.add('libgmock')
111 module.static_libs.add('libgtest')
112 if module.name != 'perfetto_gtest_logcat_printer':
113 module.whole_static_libs.add('perfetto_gtest_logcat_printer')
114
115
116def enable_protobuf_full(module):
117 if module.type == 'cc_binary_host':
118 module.static_libs.add('libprotobuf-cpp-full')
119 elif module.host_supported:
120 module.host.static_libs.add('libprotobuf-cpp-full')
121 module.android.shared_libs.add('libprotobuf-cpp-full')
122 else:
123 module.shared_libs.add('libprotobuf-cpp-full')
124
125
126def enable_protobuf_lite(module):
127 module.shared_libs.add('libprotobuf-cpp-lite')
128
129
130def enable_protoc_lib(module):
131 if module.type == 'cc_binary_host':
132 module.static_libs.add('libprotoc')
133 else:
134 module.shared_libs.add('libprotoc')
135
136
137def enable_libunwindstack(module):
138 if module.name != 'heapprofd_standalone_client':
139 module.shared_libs.add('libunwindstack')
140 module.shared_libs.add('libprocinfo')
141 module.shared_libs.add('libbase')
142 else:
143 module.static_libs.add('libunwindstack')
144 module.static_libs.add('libprocinfo')
145 module.static_libs.add('libbase')
146 module.static_libs.add('liblzma')
147 module.static_libs.add('libdexfile_support')
148 module.runtime_libs.add('libdexfile') # libdexfile_support dependency
149
150
151def enable_libunwind(module):
152 # libunwind is disabled on Darwin so we cannot depend on it.
153 pass
154
155
156def enable_sqlite(module):
157 if module.type == 'cc_binary_host':
158 module.static_libs.add('libsqlite')
159 module.static_libs.add('sqlite_ext_percentile')
160 elif module.host_supported:
161 # Copy what the sqlite3 command line tool does.
162 module.android.shared_libs.add('libsqlite')
163 module.android.shared_libs.add('libicu')
164 module.android.shared_libs.add('liblog')
165 module.android.shared_libs.add('libutils')
166 module.android.static_libs.add('sqlite_ext_percentile')
167 module.host.static_libs.add('libsqlite')
168 module.host.static_libs.add('sqlite_ext_percentile')
169 else:
170 module.shared_libs.add('libsqlite')
171 module.shared_libs.add('libicu')
172 module.shared_libs.add('liblog')
173 module.shared_libs.add('libutils')
174 module.static_libs.add('sqlite_ext_percentile')
175
176
177def enable_zlib(module):
178 if module.type == 'cc_binary_host':
179 module.static_libs.add('libz')
180 elif module.host_supported:
181 module.android.shared_libs.add('libz')
182 module.host.static_libs.add('libz')
183 else:
184 module.shared_libs.add('libz')
185
186
187def enable_uapi_headers(module):
188 module.include_dirs.add('bionic/libc/kernel')
189
190
191def enable_bionic_libc_platform_headers_on_android(module):
192 module.header_libs.add('bionic_libc_platform_headers')
193
194
195# Android equivalents for third-party libraries that the upstream project
196# depends on.
197builtin_deps = {
198 '//gn:default_deps':
199 lambda x: None,
200 '//gn:gtest_main':
201 lambda x: None,
202 '//gn:protoc':
203 lambda x: None,
204 '//gn:gtest_and_gmock':
205 enable_gtest_and_gmock,
206 '//gn:libunwind':
207 enable_libunwind,
208 '//gn:protobuf_full':
209 enable_protobuf_full,
210 '//gn:protobuf_lite':
211 enable_protobuf_lite,
212 '//gn:protoc_lib':
213 enable_protoc_lib,
214 '//gn:libunwindstack':
215 enable_libunwindstack,
216 '//gn:sqlite':
217 enable_sqlite,
218 '//gn:zlib':
219 enable_zlib,
220 '//gn:bionic_kernel_uapi_headers':
221 enable_uapi_headers,
222 '//src/profiling/memory:bionic_libc_platform_headers_on_android':
223 enable_bionic_libc_platform_headers_on_android,
Motomu Utsumidfc8e6a2022-11-04 18:25:33 +0900224 '//third_party/protobuf:protoc':
225 lambda x: None,
Patrick Rohr92d74122022-10-21 15:50:52 -0700226}
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()
Motomu Utsumi97fb1812022-11-01 13:08:10 +0900341 self.local_include_dirs = []
Patrick Rohr92d74122022-10-21 15:50:52 -0700342 self.header_libs = set()
343 self.required = set()
Patrick Rohr3d8c7282022-10-27 13:36:31 -0700344 self.tool_files = set()
Patrick Rohr92d74122022-10-21 15:50:52 -0700345 self.android = Target('android')
346 self.host = Target('host')
Patrick Rohr92d74122022-10-21 15:50:52 -0700347 self.stl = None
Patrick Rohrb8f830a2022-10-31 11:18:57 -0700348 self.cpp_std = None
Patrick Rohr92d74122022-10-21 15:50:52 -0700349 self.dist = dict()
350 self.strip = dict()
351 self.data = set()
352 self.apex_available = set()
353 self.min_sdk_version = None
354 self.proto = dict()
355 # The genrule_XXX below are properties that must to be propagated back
356 # on the module(s) that depend on the genrule.
357 self.genrule_headers = set()
358 self.genrule_srcs = set()
359 self.genrule_shared_libs = set()
Patrick Rohra1a27872022-10-31 11:57:14 -0700360 self.genrule_header_libs = set()
Patrick Rohr92d74122022-10-21 15:50:52 -0700361 self.version_script = None
362 self.test_suites = set()
363 self.test_config = None
364 self.stubs = {}
365
366 def to_string(self, output):
367 if self.comment:
368 output.append('// %s' % self.comment)
369 output.append('%s {' % self.type)
370 self._output_field(output, 'name')
371 self._output_field(output, 'srcs')
372 self._output_field(output, 'shared_libs')
373 self._output_field(output, 'static_libs')
374 self._output_field(output, 'whole_static_libs')
375 self._output_field(output, 'runtime_libs')
376 self._output_field(output, 'tools')
377 self._output_field(output, 'cmd', sort=False)
378 if self.host_supported:
379 self._output_field(output, 'host_supported')
380 if self.vendor_available:
381 self._output_field(output, 'vendor_available')
382 self._output_field(output, 'init_rc')
383 self._output_field(output, 'out')
384 self._output_field(output, 'export_include_dirs')
385 self._output_field(output, 'generated_headers')
386 self._output_field(output, 'export_generated_headers')
387 self._output_field(output, 'defaults')
388 self._output_field(output, 'cflags')
389 self._output_field(output, 'include_dirs')
Motomu Utsumi97fb1812022-11-01 13:08:10 +0900390 self._output_field(output, 'local_include_dirs', sort=False)
Patrick Rohr92d74122022-10-21 15:50:52 -0700391 self._output_field(output, 'header_libs')
392 self._output_field(output, 'required')
393 self._output_field(output, 'dist')
394 self._output_field(output, 'strip')
395 self._output_field(output, 'tool_files')
396 self._output_field(output, 'data')
397 self._output_field(output, 'stl')
Patrick Rohrb8f830a2022-10-31 11:18:57 -0700398 self._output_field(output, 'cpp_std')
Patrick Rohr92d74122022-10-21 15:50:52 -0700399 self._output_field(output, 'apex_available')
400 self._output_field(output, 'min_sdk_version')
401 self._output_field(output, 'version_script')
402 self._output_field(output, 'test_suites')
403 self._output_field(output, 'test_config')
404 self._output_field(output, 'stubs')
405 self._output_field(output, 'proto')
406
407 target_out = []
408 self._output_field(target_out, 'android')
409 self._output_field(target_out, 'host')
410 if target_out:
411 output.append(' target: {')
412 for line in target_out:
413 output.append(' %s' % line)
414 output.append(' },')
415
Patrick Rohr92d74122022-10-21 15:50:52 -0700416 output.append('}')
417 output.append('')
418
419 def add_android_static_lib(self, lib):
420 if self.type == 'cc_binary_host':
421 raise Exception('Adding Android static lib for host tool is unsupported')
422 elif self.host_supported:
423 self.android.static_libs.add(lib)
424 else:
425 self.static_libs.add(lib)
426
427 def add_android_shared_lib(self, lib):
428 if self.type == 'cc_binary_host':
429 raise Exception('Adding Android shared lib for host tool is unsupported')
430 elif self.host_supported:
431 self.android.shared_libs.add(lib)
432 else:
433 self.shared_libs.add(lib)
434
435 def _output_field(self, output, name, sort=True):
436 value = getattr(self, name)
437 return write_blueprint_key_value(output, name, value, sort)
438
439
440class Blueprint(object):
441 """In-memory representation of an Android.bp file."""
442
443 def __init__(self):
444 self.modules = {}
445
446 def add_module(self, module):
447 """Adds a new module to the blueprint, replacing any existing module
448 with the same name.
449
450 Args:
451 module: Module instance.
452 """
453 self.modules[module.name] = module
454
455 def to_string(self, output):
Patrick Rohr23f26192022-10-25 09:45:22 -0700456 for m in sorted(self.modules.values(), key=lambda m: m.name):
Patrick Rohr92d74122022-10-21 15:50:52 -0700457 m.to_string(output)
458
459
460def label_to_module_name(label):
461 """Turn a GN label (e.g., //:perfetto_tests) into a module name."""
462 # If the label is explicibly listed in the default target list, don't prefix
463 # its name and return just the target name. This is so tools like
464 # "traceconv" stay as such in the Android tree.
465 label_without_toolchain = gn_utils.label_without_toolchain(label)
Patrick Rohr92d74122022-10-21 15:50:52 -0700466 module = re.sub(r'^//:?', '', label_without_toolchain)
467 module = re.sub(r'[^a-zA-Z0-9_]', '_', module)
468 if not module.startswith(module_prefix):
469 return module_prefix + module
470 return module
471
472
473def is_supported_source_file(name):
474 """Returns True if |name| can appear in a 'srcs' list."""
Patrick Rohrd604f9f2022-10-27 13:56:42 -0700475 return os.path.splitext(name)[1] in ['.c', '.cc', '.java', '.proto']
Patrick Rohr92d74122022-10-21 15:50:52 -0700476
477
478def create_proto_modules(blueprint, gn, target):
479 """Generate genrules for a proto GN target.
480
481 GN actions are used to dynamically generate files during the build. The
482 Soong equivalent is a genrule. This function turns a specific kind of
483 genrule which turns .proto files into source and header files into a pair
484 equivalent genrules.
485
486 Args:
487 blueprint: Blueprint instance which is being generated.
488 target: gn_utils.Target object.
489
490 Returns:
491 The source_genrule module.
492 """
493 assert (target.type == 'proto_library')
494
495 tools = {'aprotoc'}
496 cpp_out_dir = '$(genDir)/%s/' % tree_path
497 target_module_name = label_to_module_name(target.name)
498
499 # In GN builds the proto path is always relative to the output directory
500 # (out/tmp.xxx).
501 cmd = ['mkdir -p %s &&' % cpp_out_dir, '$(location aprotoc)']
502 cmd += ['--proto_path=%s' % tree_path]
503
504 if buildtools_protobuf_src in target.proto_paths:
505 cmd += ['--proto_path=%s' % android_protobuf_src]
506
507 # We don't generate any targets for source_set proto modules because
508 # they will be inlined into other modules if required.
509 if target.proto_plugin == 'source_set':
510 return None
511
512 # Descriptor targets only generate a single target.
513 if target.proto_plugin == 'descriptor':
514 out = '{}.bin'.format(target_module_name)
515
516 cmd += ['--descriptor_set_out=$(out)']
517 cmd += ['$(in)']
518
519 descriptor_module = Module('genrule', target_module_name, target.name)
520 descriptor_module.cmd = ' '.join(cmd)
521 descriptor_module.out = [out]
522 descriptor_module.tools = tools
523 blueprint.add_module(descriptor_module)
524
525 # Recursively extract the .proto files of all the dependencies and
526 # add them to srcs.
527 descriptor_module.srcs.update(
528 gn_utils.label_to_path(src) for src in target.sources)
529 for dep in target.transitive_proto_deps:
530 current_target = gn.get_target(dep)
531 descriptor_module.srcs.update(
532 gn_utils.label_to_path(src) for src in current_target.sources)
533
534 return descriptor_module
535
536 # We create two genrules for each proto target: one for the headers and
537 # another for the sources. This is because the module that depends on the
538 # generated files needs to declare two different types of dependencies --
539 # source files in 'srcs' and headers in 'generated_headers' -- and it's not
540 # valid to generate .h files from a source dependency and vice versa.
541 source_module_name = target_module_name + '_gen'
542 source_module = Module('genrule', source_module_name, target.name)
543 blueprint.add_module(source_module)
544 source_module.srcs.update(
545 gn_utils.label_to_path(src) for src in target.sources)
546
547 header_module = Module('genrule', source_module_name + '_headers',
548 target.name)
549 blueprint.add_module(header_module)
550 header_module.srcs = set(source_module.srcs)
551
552 # TODO(primiano): at some point we should remove this. This was introduced
553 # by aosp/1108421 when adding "protos/" to .proto include paths, in order to
554 # avoid doing multi-repo changes and allow old clients in the android tree
555 # to still do the old #include "perfetto/..." rather than
556 # #include "protos/perfetto/...".
557 header_module.export_include_dirs = {'.', 'protos'}
558
559 source_module.genrule_srcs.add(':' + source_module.name)
560 source_module.genrule_headers.add(header_module.name)
561
562 if target.proto_plugin == 'proto':
563 suffixes = ['pb']
564 source_module.genrule_shared_libs.add('libprotobuf-cpp-lite')
565 cmd += ['--cpp_out=lite=true:' + cpp_out_dir]
566 elif target.proto_plugin == 'protozero':
567 suffixes = ['pbzero']
568 plugin = create_modules_from_target(blueprint, gn, protozero_plugin)
569 tools.add(plugin.name)
570 cmd += ['--plugin=protoc-gen-plugin=$(location %s)' % plugin.name]
571 cmd += ['--plugin_out=wrapper_namespace=pbzero:' + cpp_out_dir]
572 elif target.proto_plugin == 'cppgen':
573 suffixes = ['gen']
574 plugin = create_modules_from_target(blueprint, gn, cppgen_plugin)
575 tools.add(plugin.name)
576 cmd += ['--plugin=protoc-gen-plugin=$(location %s)' % plugin.name]
577 cmd += ['--plugin_out=wrapper_namespace=gen:' + cpp_out_dir]
578 elif target.proto_plugin == 'ipc':
579 suffixes = ['ipc']
580 plugin = create_modules_from_target(blueprint, gn, ipc_plugin)
581 tools.add(plugin.name)
582 cmd += ['--plugin=protoc-gen-plugin=$(location %s)' % plugin.name]
583 cmd += ['--plugin_out=wrapper_namespace=gen:' + cpp_out_dir]
584 else:
585 raise Error('Unsupported proto plugin: %s' % target.proto_plugin)
586
587 cmd += ['$(in)']
588 source_module.cmd = ' '.join(cmd)
589 header_module.cmd = source_module.cmd
590 source_module.tools = tools
591 header_module.tools = tools
592
593 for sfx in suffixes:
594 source_module.out.update('%s/%s' %
595 (tree_path, src.replace('.proto', '.%s.cc' % sfx))
596 for src in source_module.srcs)
597 header_module.out.update('%s/%s' %
598 (tree_path, src.replace('.proto', '.%s.h' % sfx))
599 for src in header_module.srcs)
600 return source_module
601
602
603def create_amalgamated_sql_metrics_module(blueprint, target):
604 bp_module_name = label_to_module_name(target.name)
605 module = Module('genrule', bp_module_name, target.name)
Patrick Rohr3d8c7282022-10-27 13:36:31 -0700606 module.tool_files.add('tools/gen_amalgamated_sql_metrics.py')
Patrick Rohr92d74122022-10-21 15:50:52 -0700607 module.cmd = ' '.join([
608 '$(location tools/gen_amalgamated_sql_metrics.py)',
609 '--cpp_out=$(out)',
610 '$(in)',
611 ])
612 module.genrule_headers.add(module.name)
613 module.out.update(target.outputs)
614 module.srcs.update(gn_utils.label_to_path(src) for src in target.inputs)
615 blueprint.add_module(module)
616 return module
617
618
619def create_cc_proto_descriptor_module(blueprint, target):
620 bp_module_name = label_to_module_name(target.name)
621 module = Module('genrule', bp_module_name, target.name)
Patrick Rohr3d8c7282022-10-27 13:36:31 -0700622 module.tool_files.add('tools/gen_cc_proto_descriptor.py')
Patrick Rohr92d74122022-10-21 15:50:52 -0700623 module.cmd = ' '.join([
624 '$(location tools/gen_cc_proto_descriptor.py)', '--gen_dir=$(genDir)',
625 '--cpp_out=$(out)', '$(in)'
626 ])
627 module.genrule_headers.add(module.name)
628 module.srcs.update(
629 ':' + label_to_module_name(dep) for dep in target.proto_deps)
630 module.srcs.update(
631 gn_utils.label_to_path(src)
632 for src in target.inputs
633 if "tmp.gn_utils" not in src)
634 module.out.update(target.outputs)
635 blueprint.add_module(module)
636 return module
637
638
639def create_gen_version_module(blueprint, target, bp_module_name):
640 module = Module('genrule', bp_module_name, gn_utils.GEN_VERSION_TARGET)
641 script_path = gn_utils.label_to_path(target.script)
642 module.genrule_headers.add(bp_module_name)
Patrick Rohr3d8c7282022-10-27 13:36:31 -0700643 module.tool_files.add(script_path)
Patrick Rohr92d74122022-10-21 15:50:52 -0700644 module.out.update(target.outputs)
645 module.srcs.update(gn_utils.label_to_path(src) for src in target.inputs)
646 module.cmd = ' '.join([
647 'python3 $(location %s)' % script_path, '--no_git',
648 '--changelog=$(location CHANGELOG)', '--cpp_out=$(out)'
649 ])
650 blueprint.add_module(module)
651 return module
652
653
654def create_proto_group_modules(blueprint, gn, module_name, target_names):
655 # TODO(lalitm): today, we're only adding a Java lite module because that's
656 # the only one used in practice. In the future, if we need other target types
657 # (e.g. C++, Java full etc.) add them here.
658 bp_module_name = label_to_module_name(module_name) + '_java_protos'
659 module = Module('java_library', bp_module_name, bp_module_name)
660 module.comment = f'''GN: [{', '.join(target_names)}]'''
661 module.proto = {'type': 'lite', 'canonical_path_from_root': False}
662
663 for name in target_names:
664 target = gn.get_target(name)
665 module.srcs.update(gn_utils.label_to_path(src) for src in target.sources)
666 for dep_label in target.transitive_proto_deps:
667 dep = gn.get_target(dep_label)
668 module.srcs.update(gn_utils.label_to_path(src) for src in dep.sources)
669
670 blueprint.add_module(module)
671
Motomu Utsumia6c33152022-11-02 18:21:55 +0900672# HACK: Need to support build_cofig_gen flexibly instead of hardcoding
673# build_config_gen generates srcjar by executing gcc via gcc_preprocess.py but gcc is not
674# available in genrule sandbox. Also gcc path is not configurable.
675# Under the //net:net, gcc_preprocess.py is only used for build_config_gen.
676# So, for now, hardcoding BuildConfig.java and generates srcjar by soong_zip.
677def override_build_config_gen(module):
678 module.tool_files.clear()
679 module.tools.add("soong_zip")
680 cmd = [
681 "echo",
682 "\\\"package org.chromium.build;\\n",
683 "public class BuildConfig {\\n",
684 "public static boolean IS_MULTIDEX_ENABLED ;\\n",
685 "public static boolean ENABLE_ASSERTS = true;\\n",
686 "public static boolean IS_UBSAN ;\\n",
687 "public static boolean IS_CHROME_BRANDED ;\\n",
688 "public static int R_STRING_PRODUCT_VERSION ;\\n",
689 "public static int MIN_SDK_VERSION = 1;\\n",
690 "public static boolean BUNDLES_SUPPORTED ;\\n",
691 "public static boolean IS_INCREMENTAL_INSTALL ;\\n",
692 "public static boolean ISOLATED_SPLITS_ENABLED ;\\n",
693 "public static boolean IS_FOR_TEST ;\\n",
694 "}\\n\\\"",
695 "> $(genDir)/BuildConfig.java &&",
696 "$(location soong_zip) -o $(out) -srcjar -f $(genDir)/BuildConfig.java"
697 ]
698 NEWLINE = ' " +\n "'
699 module.cmd = NEWLINE.join(cmd)
700 return module
701
Mohannad Farragbab6c892022-11-02 14:09:46 +0000702def create_action_foreach_modules(blueprint, target):
703 """ The following assumes that rebase_path exists in the args.
704 The args of an action_foreach contains hints about which output files are generated
705 by which source files.
706 This is copied directly from the args
707 "gen/net/base/registry_controlled_domains/{{source_name_part}}-reversed-inc.cc"
708 So each source file will generate an output whose name is the {source_name-reversed-inc.cc}
709 """
710 new_args = []
Motomu Utsumi56afcac2022-11-04 12:58:30 +0900711 for i, src in enumerate(sorted(target.sources)):
Mohannad Farragbab6c892022-11-02 14:09:46 +0000712 # don't add script arg for the first source -- create_action_module
713 # already does this.
714 if i != 0:
715 new_args.append('&& python3 $(location %s)' %
716 gn_utils.label_to_path(target.script))
717 for arg in target.args:
718 if '{{source}}' in arg:
719 new_args.append('$(location %s)' % (gn_utils.label_to_path(src)))
720 elif '{{source_name_part}}' in arg:
721 source_name_part = src.split("/")[-1] # Get the file name only
722 source_name_part = source_name_part.split(".")[0] # Remove the extension (Ex: .cc)
723 file_name = arg.replace('{{source_name_part}}', source_name_part).split("/")[-1]
724 # file_name represent the output file name. But we need the whole path
725 # This can be found from target.outputs.
726 for out in target.outputs:
727 if out.endswith(file_name):
728 new_args.append('$(location %s)' % out)
729 else:
730 new_args.append(arg)
731
732 target.args = new_args
733 return create_action_module(blueprint, target)
Motomu Utsumia6c33152022-11-02 18:21:55 +0900734
Patrick Rohr7be99032022-10-31 11:54:19 -0700735def create_action_module(blueprint, target):
736 bp_module_name = label_to_module_name(target.name)
737 module = Module('genrule', bp_module_name, target.name)
738
Patrick Rohr9b99a982022-10-28 11:00:57 -0700739 # Convert ['--param=value'] to ['--param', 'value'] for consistency.
740 # TODO: we may want to only do this for python scripts arguments. If argparse
741 # is used, this transformation is safe.
742 target.args = [str for it in target.args for str in it.split('=')]
743
Motomu Utsumibf569d42022-10-28 16:47:34 +0900744 if target.script == "//build/write_buildflag_header.py":
745 # write_buildflag_header.py writes result to args.genDir/args.output
746 # So, override args.genDir by '.' so that args.output=$(out) works
Patrick Rohrde568a22022-10-28 09:22:35 -0700747 for i, val in enumerate(target.args):
748 if val == '--gen-dir':
749 target.args[i + 1] = '.'
Patrick Rohrfa972402022-11-01 11:54:35 -0700750 elif val == '--output':
751 target.args[i + 1] = '$(out)'
752
753 elif target.script == '//build/write_build_date_header.py':
754 target.args[0] = '$(out)'
Patrick Rohr0db9f852022-10-27 13:49:57 -0700755
Patrick Rohr8acccca2022-10-28 10:39:06 -0700756 elif target.script == '//base/android/jni_generator/jni_generator.py':
Patrick Rohrc5cc21a2022-10-31 11:57:49 -0700757 # chromium builds against a prebuilt ndk that contains the jni_headers, so
758 # a dependency is never explicitly created.
759 module.genrule_header_libs.add('jni_headers')
Patrick Rohr131ba282022-10-31 16:36:20 -0700760 needs_javap = False
Patrick Rohr8acccca2022-10-28 10:39:06 -0700761 for i, val in enumerate(target.args):
Motomu Utsumi6f9139d2022-10-31 12:15:19 +0900762 if val == '--output_dir':
Patrick Rohrf1d08f82022-10-31 14:43:59 -0700763 # replace --output_dir gen/jni_headers/... with --output_dir $(genDir)/...
764 target.args[i + 1] = re.sub('^gen/jni_headers', '$(genDir)', target.args[i + 1])
Patrick Rohrbec0c8c2022-11-01 11:56:38 -0700765 elif val == '--input_file':
Patrick Rohr8acccca2022-10-28 10:39:06 -0700766 # --input_file supports both .class specifiers or source files as arguments.
767 # Only source files need to be wrapped inside a $(location <label>) tag.
768 if re.match('.*\.class$', target.args[i + 1]):
769 continue
770 # replace --input_file ../../... with --input_file $(location ...)
771 # TODO: put inside function
772 filename = re.sub('^\.\./\.\./', '', target.args[i + 1])
773 target.args[i + 1] = '$(location %s)' % filename
Patrick Rohrbec0c8c2022-11-01 11:56:38 -0700774 elif val == '--includes' and 'jni_generator_helper' in target.args[i + 1]:
Patrick Rohrd89e8bf2022-10-31 14:51:05 -0700775 # delete all leading ../
776 target.args[i + 1] = re.sub('^(\.\./)+', '', target.args[i + 1])
Patrick Rohrbec0c8c2022-11-01 11:56:38 -0700777 elif val == '--prev_output_dir':
Patrick Rohr131ba282022-10-31 16:36:20 -0700778 # this is not needed for aosp builds.
779 target.args[i] = ''
780 target.args[i + 1] = ''
Patrick Rohrbec0c8c2022-11-01 11:56:38 -0700781 elif val == '--jar_file':
Patrick Rohr131ba282022-10-31 16:36:20 -0700782 # delete leading ../../ and add path to javap
783 filename = re.sub('^\.\./\.\./', '', target.args[i + 1])
784 target.args[i + 1] = '$(location %s)' % filename
785 needs_javap = True
786
787 if needs_javap:
788 target.args.append('--javap')
789 target.args.append('$$(find out/.path -name javap)')
Patrick Rohrf1d08f82022-10-31 14:43:59 -0700790 # fix target.output directory to match #include statements.
791 target.outputs = [re.sub('^jni_headers/', '', out) for out in target.outputs]
Patrick Rohr8acccca2022-10-28 10:39:06 -0700792
Patrick Rohr245df582022-11-01 16:59:45 -0700793 elif target.script == '//build/android/gyp/write_build_config.py':
794 for i, val in enumerate(target.args):
795 if val == '--depfile':
796 # Depfile is not used, so no need to generate it.
797 target.args[i] = ''
798 target.args[i + 1] = ''
799 elif val in ['--deps-configs', '--bundled-srcjars']:
800 args = target.args[i + 1]
801 if args == '[]':
802 continue
803 # strip surrounding [] and split by ", "
804 args = args.strip('[]').split(', ')
805 # strip surrounding ""
806 args = [arg.strip('"') for arg in args]
807 # remove leading gen/
808 args = [re.sub('^gen/', '', arg) for arg in args]
809 # wrap filename in \"$(location filename)\"
810 args = ['\"$(location %s)\"' % arg for arg in args]
811 # join args with ", " and wrap in []
812 target.args[i + 1] = '[%s]' % ', '.join(args)
813
814 elif val == '--public-deps-configs':
815 # TODO: implement.
816 pass
817
818 elif val == '--build-config':
819 # json output of this script
820 target.args[i + 1] = re.sub('^gen', '$(genDir)', target.args[i + 1])
821
822 elif val in ['--unprocessed-jar-path', '--interface-jar-path',
823 '--device-jar-path', '--host-jar-path']:
824 # jar path can be within sources (../../) or output generated by
825 # another genrule (obj/)
826 filename = re.sub('^\.\./\.\./', '', target.args[i + 1])
827 filename = re.sub('^obj/', '', target.args[i + 1])
828 target.args[i + 1] = '$(location %s)' % filename
829
830 elif val == '--proguard-configs':
831 args = target.args[i + 1]
832 if args == '[]':
833 continue
834 # TODO: consider adding helpers to deal with argument lists
835 # strip surrounding [] and split by ", ", then strip surrounding ""
836 args = args.strip('[]').split(', ')
837 args = [arg.strip('"') for arg in args]
838 # remove leading ../../
839 args = [re.sub('^\.\./\.\./', '', arg) for arg in args]
840 # add dependency on proguard config file, so a $(location) wrapper can be used.
841 module.tool_files.update(args)
842 # wrap filename in \"$(location filename)\"
843 args = ['$(location %s)' % arg for arg in args]
844 target.args[i + 1] = '[%s]' % ', '.join(args)
Motomu Utsumi1caa39b2022-11-02 18:38:13 +0900845 elif target.script == "//build/android/gyp/write_native_libraries_java.py":
846 for i, val in enumerate(target.args):
847 if val == '--output':
848 target.args[i + 1] = '$(out)'
Motomu Utsumi26211dc2022-11-02 19:38:47 +0900849 elif target.script == "//tools/grit/stamp_grit_sources.py":
850 target.outputs = [re.sub('^\/\/', '', out) for out in target.outputs]
851 # Directory that contains grit scripts
852 target.args[0] = '`dirname $(location tools/grit/grit.py)`'
853 # Path to the stamp file
854 target.args[1] = '$(out)'
855 # Script tries to create args[2] file but this is not in the output.
856 # Specifying file under $(genDir) so that parent directory exists.
857 # If this file is used by other module, we may need to add this file to the outputs.
858 target.args[2] = '$(genDir)/' + target.args[2].split('/')[-1]
Motomu Utsumi26ef25d2022-11-04 18:30:19 +0900859 elif target.script == "//tools/protoc_wrapper/protoc_wrapper.py":
860 # Use protoc in the android
861 module.tools.add("aprotoc")
Motomu Utsumifdc41b22022-11-04 19:18:17 +0900862 target.outputs = [re.sub('^//out/test/', '', out) for out in target.outputs]
Motomu Utsumi26ef25d2022-11-04 18:30:19 +0900863 for i, val in enumerate(target.args):
864 if val == '--protoc':
865 target.args[i + 1] = '$(location aprotoc)'
Motomu Utsumic5d2db92022-11-04 18:46:23 +0900866 elif val == '--proto-in-dir':
867 # Proto files in the cmd is relative path from --proto-in-dir
868 # Proto files are specified as filenames without directory except net_quic_proto_gen
869 # So getting directory from source file
870 proto_file = gn_utils.label_to_path(sorted(list(target.sources))[0])
871 target.args[i + 1] = '`dirname $(location %s)`' % proto_file
872 # Adjusting path for net_quic_proto_gen
873 if target.name == "//net/third_party/quiche:net_quic_proto_gen":
874 target.args[i + 1] += '/../../../../'
Motomu Utsumi982dd042022-11-04 18:49:45 +0900875 elif val == '--cc-out-dir':
876 target.args[i + 1] = re.sub('^gen', '$(genDir)', target.args[i + 1])
Motomu Utsumi667bc0f2022-11-04 18:55:46 +0900877 elif val == 'dllexport_decl':
878 # Needs to be dllexport_decl=value format
879 target.args[i] += '=' + target.args[i+1]
880 target.args[i+1] = ''
Motomu Utsumieec51832022-11-04 19:02:09 +0900881 elif val == '--include':
882 # This file can be got from filegroup this target depends on, but currently we don't add .h
883 # files to the srcs. So far this is the only case .h files need to be added to the srcs.
884 # So, for now, adding specific for this target.
885 module.srcs.add(target.args[i+1])
886 target.args[i + 1] = '$(location %s)' % target.args[i + 1]
Motomu Utsumibba83972022-11-04 19:05:34 +0900887 elif val == "--py-out-dir":
888 target.args[i + 1] = '$(genDir)/' + target.args[i + 1]
Patrick Rohr245df582022-11-01 16:59:45 -0700889
Patrick Rohr2041d5b2022-10-26 15:07:53 -0700890 script = gn_utils.label_to_path(target.script)
Patrick Rohr3d8c7282022-10-27 13:36:31 -0700891 module.tool_files.add(script)
Patrick Rohre1a853e2022-10-26 12:31:39 -0700892
Patrick Rohr8a4e2bd2022-10-27 13:06:16 -0700893 # Handle passing parameters via response file by piping them into the script
894 # and reading them from /dev/stdin.
895 response_file = '{{response_file_name}}'
896 use_response_file = response_file in target.args
897 if use_response_file:
898 # Replace {{response_file_contents}} with /dev/stdin
899 target.args = ['/dev/stdin' if it == response_file else it for it in target.args]
900
Patrick Rohr4b0952d2022-11-01 12:42:31 -0700901 # escape " and \$ in target.args.
902 # once all actions are properly implemented, this may not be necessary anymore.
903 # TODO: is this the right place to do this?
904 target.args = [arg.replace('"', r'\"') for arg in target.args]
905 target.args = [arg.replace(r'\$', r'\\$') for arg in target.args]
906
Patrick Rohr9b99a982022-10-28 11:00:57 -0700907 # put all args on a new line for better diffs.
908 NEWLINE = ' " +\n "'
909 arg_string = NEWLINE.join(target.args)
Patrick Rohr2041d5b2022-10-26 15:07:53 -0700910 module.cmd = '$(location %s) %s' % (script, arg_string)
Patrick Rohre1a853e2022-10-26 12:31:39 -0700911
Patrick Rohr8a4e2bd2022-10-27 13:06:16 -0700912 if use_response_file:
913 # Pipe response file contents into script
Patrick Rohr9b99a982022-10-28 11:00:57 -0700914 module.cmd = 'echo \'%s\' |%s%s' % (target.response_file_contents, NEWLINE, module.cmd)
Patrick Rohr8a4e2bd2022-10-27 13:06:16 -0700915
Patrick Rohr67f4d432022-10-26 16:04:15 -0700916 if all(os.path.splitext(it)[1] == '.h' for it in target.outputs):
917 module.genrule_headers.add(bp_module_name)
Patrick Rohre1a853e2022-10-26 12:31:39 -0700918
Patrick Rohr0db9f852022-10-27 13:49:57 -0700919 # gn treats inputs and sources for actions equally.
920 # soong only supports source files inside srcs, non-source files are added as
921 # tool_files dependency.
922 for it in target.sources or target.inputs:
923 if is_supported_source_file(it):
924 module.srcs.add(gn_utils.label_to_path(it))
925 else:
926 module.tool_files.add(gn_utils.label_to_path(it))
Patrick Rohre1a853e2022-10-26 12:31:39 -0700927
Patrick Rohr15a2c302022-10-26 15:08:57 -0700928 # Actions using template "action_with_pydeps" also put script inside inputs.
929 # TODO: it might make sense to filter inputs inside GnParser.
930 if script in module.srcs:
931 module.srcs.remove(script)
932
Patrick Rohre1a853e2022-10-26 12:31:39 -0700933 module.out.update(target.outputs)
Motomu Utsumia6c33152022-11-02 18:21:55 +0900934
935 if target.name == "//build/android:build_config_gen":
936 module = override_build_config_gen(module)
Motomu Utsumi26211dc2022-11-02 19:38:47 +0900937 elif target.script == "//tools/grit/stamp_grit_sources.py":
938 # stamp_grit_sources.py is not executable
939 module.cmd = "python " + module.cmd
Motomu Utsumia6c33152022-11-02 18:21:55 +0900940
Patrick Rohre1a853e2022-10-26 12:31:39 -0700941 blueprint.add_module(module)
942 return module
943
944
Patrick Rohr92d74122022-10-21 15:50:52 -0700945
946def _get_cflags(target):
947 cflags = {flag for flag in target.cflags if re.match(cflag_allowlist, flag)}
Motomu Utsumifa7e9262022-10-26 19:43:02 +0900948 # Consider proper allowlist or denylist if needed
949 cflags |= set("-D%s" % define.replace("\"", "\\\"") for define in target.defines)
Patrick Rohr92d74122022-10-21 15:50:52 -0700950 return cflags
951
952
953def create_modules_from_target(blueprint, gn, gn_target_name):
954 """Generate module(s) for a given GN target.
955
956 Given a GN target name, generate one or more corresponding modules into a
957 blueprint. The only case when this generates >1 module is proto libraries.
958
959 Args:
960 blueprint: Blueprint instance which is being generated.
961 gn: gn_utils.GnParser object.
962 gn_target_name: GN target for module generation.
963 """
964 bp_module_name = label_to_module_name(gn_target_name)
965 if bp_module_name in blueprint.modules:
966 return blueprint.modules[bp_module_name]
967 target = gn.get_target(gn_target_name)
Patrick Rohr16228942022-10-26 14:00:26 -0700968 log.info('create modules for %s (%s)', target.name, target.type)
Patrick Rohr92d74122022-10-21 15:50:52 -0700969
970 name_without_toolchain = gn_utils.label_without_toolchain(target.name)
971 if target.type == 'executable':
972 if target.toolchain == gn_utils.HOST_TOOLCHAIN:
973 module_type = 'cc_binary_host'
974 elif target.testonly:
975 module_type = 'cc_test'
976 else:
977 module_type = 'cc_binary'
978 module = Module(module_type, bp_module_name, gn_target_name)
979 elif target.type == 'static_library':
980 module = Module('cc_library_static', bp_module_name, gn_target_name)
981 elif target.type == 'shared_library':
982 module = Module('cc_library_shared', bp_module_name, gn_target_name)
983 elif target.type == 'source_set':
984 module = Module('filegroup', bp_module_name, gn_target_name)
985 elif target.type == 'group':
986 # "group" targets are resolved recursively by gn_utils.get_target().
987 # There's nothing we need to do at this level for them.
988 return None
989 elif target.type == 'proto_library':
990 module = create_proto_modules(blueprint, gn, target)
991 if module is None:
992 return None
993 elif target.type == 'action':
994 if 'gen_amalgamated_sql_metrics' in target.name:
995 module = create_amalgamated_sql_metrics_module(blueprint, target)
996 elif re.match('.*gen_cc_.*_descriptor$', name_without_toolchain):
997 module = create_cc_proto_descriptor_module(blueprint, target)
998 elif target.type == 'action' and \
999 name_without_toolchain == gn_utils.GEN_VERSION_TARGET:
1000 module = create_gen_version_module(blueprint, target, bp_module_name)
1001 else:
Patrick Rohre1a853e2022-10-26 12:31:39 -07001002 module = create_action_module(blueprint, target)
Mohannad Farragf076f3e2022-10-31 17:45:28 +00001003 elif target.type == 'action_foreach':
Mohannad Farragbab6c892022-11-02 14:09:46 +00001004 module = create_action_foreach_modules(blueprint, target)
Patrick Rohr59a76652022-10-26 12:36:56 -07001005 elif target.type == 'copy':
1006 # TODO: careful now! copy targets are not supported yet, but this will stop
1007 # traversing the dependency tree. For //base:base, this is not a big
1008 # problem as libicu contains the only copy target which happens to be a
1009 # leaf node.
1010 return None
Patrick Rohr92d74122022-10-21 15:50:52 -07001011 else:
1012 raise Error('Unknown target %s (%s)' % (target.name, target.type))
1013
1014 blueprint.add_module(module)
1015 module.host_supported = (name_without_toolchain in target_host_supported)
Patrick Rohr92d74122022-10-21 15:50:52 -07001016 module.init_rc = target_initrc.get(target.name, [])
1017 module.srcs.update(
1018 gn_utils.label_to_path(src)
1019 for src in target.sources
1020 if is_supported_source_file(src))
1021
Motomu Utsumi97fb1812022-11-01 13:08:10 +09001022 local_include_dirs_set = set()
Patrick Rohr92d74122022-10-21 15:50:52 -07001023 if target.type in gn_utils.LINKER_UNIT_TYPES:
1024 module.cflags.update(_get_cflags(target))
Patrick Rohrf22e9d02022-10-28 14:20:46 -07001025 # TODO: implement proper cflag parsing.
1026 for flag in target.cflags:
Patrick Rohrb8f830a2022-10-31 11:18:57 -07001027 if '-std=' in flag:
1028 module.cpp_std = flag[len('-std='):]
Patrick Rohr61f2acb2022-10-31 14:08:18 -07001029 if '-isystem' in flag:
Motomu Utsumi97fb1812022-11-01 13:08:10 +09001030 local_include_dirs_set.add(flag[len('-isystem../../'):])
Patrick Rohrb8f830a2022-10-31 11:18:57 -07001031
Patrick Rohrd0abc2a2022-10-31 13:29:16 -07001032 # Adding local_include_dirs is necessary due to source_sets / filegroups
1033 # which do not properly propagate include directories.
1034 # Filter any directory inside //out as a) this directory does not exist for
1035 # aosp / soong builds and b) the include directory should already be
1036 # configured via library dependency.
Motomu Utsumi97fb1812022-11-01 13:08:10 +09001037 local_include_dirs_set.update([gn_utils.label_to_path(d)
Patrick Rohrd0abc2a2022-10-31 13:29:16 -07001038 for d in target.include_dirs
1039 if not re.match('^//out/.*', d)])
Motomu Utsumi97fb1812022-11-01 13:08:10 +09001040 module.local_include_dirs = sorted(list(local_include_dirs_set))
1041
1042 # Order matters for some targets. For example, base/time/time_exploded_icu.cc
1043 # in //base:base needs to have sysroot include after icu/source/common
1044 # include. So adding sysroot include at the end.
1045 for flag in target.cflags:
1046 if '--sysroot' in flag:
1047 module.local_include_dirs.append(flag[len('--sysroot=../../'):] + "/usr/include")
Patrick Rohr92d74122022-10-21 15:50:52 -07001048
1049 module_is_compiled = module.type not in ('genrule', 'filegroup')
1050 if module_is_compiled:
1051 # Don't try to inject library/source dependencies into genrules or
1052 # filegroups because they are not compiled in the traditional sense.
1053 module.defaults = [defaults_module]
1054 for lib in target.libs:
1055 # Generally library names should be mangled as 'libXXX', unless they
1056 # are HAL libraries (e.g., android.hardware.health@2.0) or AIDL c++ / NDK
1057 # libraries (e.g. "android.hardware.power.stats-V1-cpp")
1058 android_lib = lib if '@' in lib or "-cpp" in lib or "-ndk" in lib \
1059 else 'lib' + lib
1060 if lib in shared_library_allowlist:
1061 module.add_android_shared_lib(android_lib)
1062 if lib in static_library_allowlist:
1063 module.add_android_static_lib(android_lib)
1064
1065 # If the module is a static library, export all the generated headers.
1066 if module.type == 'cc_library_static':
1067 module.export_generated_headers = module.generated_headers
1068
1069 # Merge in additional hardcoded arguments.
1070 for key, add_val in additional_args.get(module.name, []):
1071 curr = getattr(module, key)
1072 if add_val and isinstance(add_val, set) and isinstance(curr, set):
1073 curr.update(add_val)
1074 elif isinstance(add_val, str) and (not curr or isinstance(curr, str)):
1075 setattr(module, key, add_val)
1076 elif isinstance(add_val, bool) and (not curr or isinstance(curr, bool)):
1077 setattr(module, key, add_val)
1078 elif isinstance(add_val, dict) and isinstance(curr, dict):
1079 curr.update(add_val)
1080 elif isinstance(add_val, dict) and isinstance(curr, Target):
1081 curr.__dict__.update(add_val)
1082 else:
1083 raise Error('Unimplemented type %r of additional_args: %r' %
1084 (type(add_val), key))
1085
1086 # dep_name is an unmangled GN target name (e.g. //foo:bar(toolchain)).
1087 all_deps = target.deps | target.source_set_deps | target.transitive_proto_deps
1088 for dep_name in all_deps:
Patrick Rohr5cc46e02022-10-26 14:32:45 -07001089 # |builtin_deps| override GN deps with Android-specific ones. See the
1090 # config in the top of this file.
1091 if gn_utils.label_without_toolchain(dep_name) in builtin_deps:
1092 builtin_deps[gn_utils.label_without_toolchain(dep_name)](module)
1093 continue
1094
Patrick Rohr92d74122022-10-21 15:50:52 -07001095 dep_module = create_modules_from_target(blueprint, gn, dep_name)
1096
Motomu Utsumie246feb2022-11-01 17:25:56 +09001097 # TODO: Proper dependency check for genrule.
1098 # Currently, only propagating genrule dependencies.
1099 # Also, currently, all the dependencies are propagated upwards.
1100 # in gn, public_deps should be propagated but deps should not.
1101 # Not sure this information is available in the desc.json.
1102 # Following rule works for adding android_runtime_jni_headers to base:base.
1103 # If this doesn't work for other target, hardcoding for specific target
1104 # might be better.
1105 if module.type == "genrule" and dep_module.type == "genrule":
1106 module.genrule_headers.add(dep_module.name)
1107 module.genrule_headers.update(dep_module.genrule_headers)
1108
Patrick Rohr92d74122022-10-21 15:50:52 -07001109 # For filegroups and genrule, recurse but don't apply the deps.
1110 if not module_is_compiled:
1111 continue
1112
Patrick Rohr92d74122022-10-21 15:50:52 -07001113 if dep_module is None:
1114 continue
1115 if dep_module.type == 'cc_library_shared':
1116 module.shared_libs.add(dep_module.name)
1117 elif dep_module.type == 'cc_library_static':
1118 module.static_libs.add(dep_module.name)
1119 elif dep_module.type == 'filegroup':
1120 module.srcs.add(':' + dep_module.name)
1121 elif dep_module.type == 'genrule':
1122 module.generated_headers.update(dep_module.genrule_headers)
1123 module.srcs.update(dep_module.genrule_srcs)
1124 module.shared_libs.update(dep_module.genrule_shared_libs)
Patrick Rohra1a27872022-10-31 11:57:14 -07001125 module.header_libs.update(dep_module.genrule_header_libs)
Patrick Rohr92d74122022-10-21 15:50:52 -07001126 elif dep_module.type == 'cc_binary':
1127 continue # Ignore executables deps (used by cmdline integration tests).
1128 else:
1129 raise Error('Unknown dep %s (%s) for target %s' %
1130 (dep_module.name, dep_module.type, module.name))
1131
1132 return module
1133
Patrick Rohrb18aca22022-11-04 15:07:32 -07001134def create_java_module(blueprint, gn):
1135 bp_module_name = module_prefix + 'java'
1136 module = Module('java_library', bp_module_name, '//gn:java')
1137 module.srcs.update(gn.java_sources)
1138 blueprint.add_module(module)
Patrick Rohr92d74122022-10-21 15:50:52 -07001139
1140def create_blueprint_for_targets(gn, desc, targets):
1141 """Generate a blueprint for a list of GN targets."""
1142 blueprint = Blueprint()
1143
1144 # Default settings used by all modules.
1145 defaults = Module('cc_defaults', defaults_module, '//gn:default_deps')
Patrick Rohr92d74122022-10-21 15:50:52 -07001146 defaults.cflags = [
1147 '-Wno-error=return-type',
Patrick Rohr3a1ec1d2022-10-31 13:30:17 -07001148 '-Wno-non-virtual-dtor',
Patrick Rohr98065152022-10-31 14:49:58 -07001149 '-Wno-missing-field-initializers',
Patrick Rohr92d74122022-10-21 15:50:52 -07001150 '-Wno-sign-compare',
1151 '-Wno-sign-promo',
1152 '-Wno-unused-parameter',
1153 '-fvisibility=hidden',
1154 '-O2',
1155 ]
Patrick Rohr61f2acb2022-10-31 14:08:18 -07001156 defaults.stl = 'none'
Patrick Rohr92d74122022-10-21 15:50:52 -07001157 blueprint.add_module(defaults)
Patrick Rohr344b2472022-10-25 11:32:15 -07001158
Patrick Rohr92d74122022-10-21 15:50:52 -07001159 for target in targets:
1160 create_modules_from_target(blueprint, gn, target)
Patrick Rohrb18aca22022-11-04 15:07:32 -07001161
1162 create_java_module(blueprint, gn)
Patrick Rohr92d74122022-10-21 15:50:52 -07001163 return blueprint
1164
1165
1166def main():
1167 parser = argparse.ArgumentParser(
1168 description='Generate Android.bp from a GN description.')
1169 parser.add_argument(
Patrick Rohr92d74122022-10-21 15:50:52 -07001170 '--desc',
Patrick Rohr3db246a2022-10-25 10:25:17 -07001171 help='GN description (e.g., gn desc out --format=json --all-toolchains "//*"',
1172 required=True
Patrick Rohr92d74122022-10-21 15:50:52 -07001173 )
1174 parser.add_argument(
1175 '--extras',
1176 help='Extra targets to include at the end of the Blueprint file',
1177 default=os.path.join(gn_utils.repo_root(), 'Android.bp.extras'),
1178 )
1179 parser.add_argument(
1180 '--output',
1181 help='Blueprint file to create',
1182 default=os.path.join(gn_utils.repo_root(), 'Android.bp'),
1183 )
1184 parser.add_argument(
Patrick Rohr16228942022-10-26 14:00:26 -07001185 '-v',
1186 '--verbose',
1187 help='Print debug logs.',
1188 action='store_true',
1189 )
1190 parser.add_argument(
Patrick Rohr92d74122022-10-21 15:50:52 -07001191 'targets',
1192 nargs=argparse.REMAINDER,
Patrick Rohr1aa504a2022-10-25 10:30:42 -07001193 help='Targets to include in the blueprint (e.g., "//:perfetto_tests")'
1194 )
Patrick Rohr92d74122022-10-21 15:50:52 -07001195 args = parser.parse_args()
1196
Patrick Rohr16228942022-10-26 14:00:26 -07001197 if args.verbose:
1198 log.basicConfig(format='%(levelname)s:%(funcName)s:%(message)s', level=log.DEBUG)
1199
Patrick Rohr3db246a2022-10-25 10:25:17 -07001200 with open(args.desc) as f:
1201 desc = json.load(f)
Patrick Rohr92d74122022-10-21 15:50:52 -07001202
1203 gn = gn_utils.GnParser(desc)
Patrick Rohr1aa504a2022-10-25 10:30:42 -07001204 blueprint = create_blueprint_for_targets(gn, desc, args.targets)
Patrick Rohr92d74122022-10-21 15:50:52 -07001205 project_root = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
1206 tool_name = os.path.relpath(os.path.abspath(__file__), project_root)
1207
Patrick Rohr92d74122022-10-21 15:50:52 -07001208 # Add any proto groups to the blueprint.
1209 for l_name, t_names in proto_groups.items():
1210 create_proto_group_modules(blueprint, gn, l_name, t_names)
1211
1212 output = [
Patrick Rohr5478b392022-10-25 09:58:50 -07001213 """// Copyright (C) 2022 The Android Open Source Project
Patrick Rohr92d74122022-10-21 15:50:52 -07001214//
1215// Licensed under the Apache License, Version 2.0 (the "License");
1216// you may not use this file except in compliance with the License.
1217// You may obtain a copy of the License at
1218//
1219// http://www.apache.org/licenses/LICENSE-2.0
1220//
1221// Unless required by applicable law or agreed to in writing, software
1222// distributed under the License is distributed on an "AS IS" BASIS,
1223// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1224// See the License for the specific language governing permissions and
1225// limitations under the License.
1226//
1227// This file is automatically generated by %s. Do not edit.
1228""" % (tool_name)
1229 ]
1230 blueprint.to_string(output)
Patrick Rohrcb98e9b2022-10-25 09:57:02 -07001231 if os.path.exists(args.extras):
1232 with open(args.extras, 'r') as r:
1233 for line in r:
1234 output.append(line.rstrip("\n\r"))
Patrick Rohr92d74122022-10-21 15:50:52 -07001235
1236 out_files = []
1237
1238 # Generate the Android.bp file.
1239 out_files.append(args.output + '.swp')
1240 with open(out_files[-1], 'w') as f:
1241 f.write('\n'.join(output))
1242 # Text files should have a trailing EOL.
1243 f.write('\n')
1244
Patrick Rohr94693eb2022-10-25 10:09:16 -07001245 return 0
Patrick Rohr92d74122022-10-21 15:50:52 -07001246
1247
1248if __name__ == '__main__':
1249 sys.exit(main())