addDependencies method

  1. @Deprecated('Use dependencies.addAll() instead.')
void addDependencies(
  1. Iterable<Uri> uris
)

Adds files used by this build.

If any of the files are modified after BuildOutput.timestamp, the

Implementation

// build will be  re-run.
@Deprecated('Use dependencies.addAll() instead.')
void addDependencies(Iterable<Uri> uris) {
  dependencies.addAll(uris);
}