blob: a61588df13a2249c70e32d07c0cd6aa253eea78b [file] [log] [blame]
/*
* Copyright 2012-present Facebook, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may
* not use this file except in compliance with the License. You may obtain
* a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*/
package com.facebook.buck.android;
import com.google.common.collect.ImmutableSet;
public class AndroidTransitiveDependencies {
public final ImmutableSet<String> assetsDirectories;
public final ImmutableSet<String> nativeLibsZips;
public final ImmutableSet<String> nativeLibAssetsZips;
public final ImmutableSet<String> manifestFiles;
public final ImmutableSet<String> resDirectories;
public final ImmutableSet<String> rDotJavaPackages;
public final ImmutableSet<String> proguardConfigs;
public AndroidTransitiveDependencies(ImmutableSet<String> assetsDirectories,
ImmutableSet<String> nativeLibsZips,
ImmutableSet<String> nativeLibAssetsZips,
ImmutableSet<String> manifestFiles,
ImmutableSet<String> resDirectories,
ImmutableSet<String> rDotJavaPackages,
ImmutableSet<String> proguardConfigs) {
this.assetsDirectories = ImmutableSet.copyOf(assetsDirectories);
this.nativeLibsZips = ImmutableSet.copyOf(nativeLibsZips);
this.nativeLibAssetsZips = ImmutableSet.copyOf(nativeLibAssetsZips);
this.manifestFiles = ImmutableSet.copyOf(manifestFiles);
this.resDirectories = ImmutableSet.copyOf(resDirectories);
this.rDotJavaPackages = ImmutableSet.copyOf(rDotJavaPackages);
this.proguardConfigs = ImmutableSet.copyOf(proguardConfigs);
}
}