Merge "Revert "Fix inheritance order"" am: ea8eedde00
am: 3f67c2235a
Original change: https://android-review.googlesource.com/c/platform/build/+/2054825 Change-Id: I7132665f117006d3bc33039662948bc108337b03 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
commit
64d83852e8
2 changed files with 3 additions and 3 deletions
|
@ -167,8 +167,8 @@ def _product_configuration(top_pcm_name, top_pcm, input_variables_init):
|
||||||
# Now we know everything about this PCM, record it in 'configs'.
|
# Now we know everything about this PCM, record it in 'configs'.
|
||||||
children = handle.inherited_modules
|
children = handle.inherited_modules
|
||||||
if _options.trace_modules:
|
if _options.trace_modules:
|
||||||
print("# ", " ".join(sorted(children.keys())))
|
print("# ", " ".join(children.keys()))
|
||||||
configs[name] = (pcm, handle.cfg, sorted(children.keys()), False)
|
configs[name] = (pcm, handle.cfg, children.keys(), False)
|
||||||
pcm_count = pcm_count + 1
|
pcm_count = pcm_count + 1
|
||||||
|
|
||||||
if len(children) == 0:
|
if len(children) == 0:
|
||||||
|
|
|
@ -18,7 +18,7 @@ load(":inherit2.rbc", _inherit2_init = "init")
|
||||||
|
|
||||||
def init(g, handle):
|
def init(g, handle):
|
||||||
cfg = rblf.cfg(handle)
|
cfg = rblf.cfg(handle)
|
||||||
rblf.inherit(handle, "test/inherit2", _inherit2_init)
|
|
||||||
rblf.inherit(handle, "test/inherit1", _inherit1_init)
|
rblf.inherit(handle, "test/inherit1", _inherit1_init)
|
||||||
|
rblf.inherit(handle, "test/inherit2", _inherit2_init)
|
||||||
|
|
||||||
cfg["PRODUCT_DEFAULT_DEV_CERTIFICATE"] = ""
|
cfg["PRODUCT_DEFAULT_DEV_CERTIFICATE"] = ""
|
||||||
|
|
Loading…
Reference in a new issue