Lines Matching full:assets
38 parser.add_argument('--assets',
40 help='GYP-list of files to add as assets in the form '
46 help='Whether to create an assets/assets_list file.')
48 '--uncompressed-assets',
49 help='Same as --assets, except disables compression.')
119 options.assets = action_helpers.parse_gn_list(options.assets)
185 """Returns the list of file_detail tuples for assets in the apk.
196 representing what and how assets are added.
200 # Group all uncompressed assets together in the hope that it will increase
217 apk_path = 'assets/' + dest_path
232 # This check is only relevant for assets, but it should not matter if it is
280 def _CreateExpectationsData(native_libs, assets): argument
281 """Creates list of native libraries and assets."""
283 assets = sorted(assets)
286 for apk_path, _, compress, alignment in native_libs + assets:
335 assets = _ExpandPaths(options.assets)
339 depfile_deps.extend(x[0] for x in assets)
349 # assets/ -> assets/ (unchanged)
363 def _GetAssetDetails(assets, uncompressed_assets, fast_align, allow_reads): argument
364 ret = _GetAssetsToAdd(assets,
391 asset_details = _GetAssetDetails(assets,
410 assets, uncompressed_assets, fast_align, allow_reads=True)
432 # Make assets come before resources in order to maintain the same file
441 # 2. Assets
442 logging.debug('Adding assets/')