Lines Matching refs:root
74 root = meta_data['root']
76 root[options.type] = options.app_profile
77 root['resources'] = options.resources
79 root[options.type] = options.js_assets
81 root['js_forms'] = options.js_forms
83 root['testrunner'] = options.testrunner
85 root[options.type] = options.ets_assets
87 root[options.type] = options.raw_assets
89 root[options.type] = options.unresolved_assets
92 root[options.type] = options.resources
94 root['package_name'] = package_name if package_name else ""
97 if root.get(target_type):
98 root.get(target_type).extend(dep[target_type])
99 root.get('resources').extend(dep['resources'])
101 root[target_type] = dep[target_type]
102 root['resources'] += dep['resources']
105 root['hap_profile'] = hap_profile if hap_profile else ""
110 root['hap_path'] = options.hap_path
112 root[target_type] = []
114 root['js_assets'] = options.js_assets
116 root['ets_assets'] = options.ets_assets
118 root['assets'] = options.raw_assets
120 root['resources'] = options.resources
123 if root.get(target_type):
124 root.get(target_type).extend(dep[target_type])
125 root.get('hap_profile').extend(dep['hap_profile'])
127 root[target_type] = dep[target_type]
129 root['hap_profile'] = dep['hap_profile']
131 root['js_forms'] = dep['js_forms']
133 root['testrunner'] = dep['testrunner']
139 root.get('js_assets').append(ability_path)
141 root.get('js_assets').append(dep[target_type])
145 root.get('ets_assets').append(ability_path)
147 root.get('ets_assets').append(dep[target_type])