Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8036f85a authored by Cole Faust's avatar Cole Faust Committed by Android (Google) Code Review
Browse files

Merge "List baseline_filename on modules that are implititly using it" into main

parents 7bf65838 749a6885
Loading
Loading
Loading
Loading
+28 −0
Original line number Diff line number Diff line
@@ -174,6 +174,9 @@ java_library {
        // and remove this line.
        "//frameworks/base/tools/hoststubgen:__subpackages__",
    ],
    lint: {
        baseline_filename: "lint-baseline.xml",
    },
}

// AIDL files under these paths are mixture of public and private ones.
@@ -264,6 +267,9 @@ java_library {
    ],
    sdk_version: "core_platform",
    installable: false,
    lint: {
        baseline_filename: "lint-baseline.xml",
    },
}

// NOTE: This filegroup is exposed for vendor libraries to depend on and is referenced in
@@ -432,6 +438,9 @@ java_library {
    ],
    sdk_version: "core_platform",
    installable: false,
    lint: {
        baseline_filename: "lint-baseline.xml",
    },
}

// Separated so framework-minus-apex-defaults can be used without the libs dependency
@@ -475,6 +484,9 @@ java_library {
    ],
    compile_dex: false,
    headers_only: true,
    lint: {
        baseline_filename: "lint-baseline.xml",
    },
}

java_library {
@@ -502,6 +514,9 @@ java_library {
            "-Xep:AndroidFrameworkUid:ERROR",
        ],
    },
    lint: {
        baseline_filename: "lint-baseline.xml",
    },
}

java_library {
@@ -516,6 +531,7 @@ java_library {
    },
    lint: {
        enabled: false,
        baseline_filename: "lint-baseline.xml",
    },
}

@@ -540,6 +556,9 @@ java_library {
    ],
    sdk_version: "core_platform",
    apex_available: ["//apex_available:platform"],
    lint: {
        baseline_filename: "lint-baseline.xml",
    },
}

java_library {
@@ -555,6 +574,9 @@ java_library {
        "calendar-provider-compat-config",
        "contacts-provider-platform-compat-config",
    ],
    lint: {
        baseline_filename: "lint-baseline.xml",
    },
}

platform_compat_config {
@@ -609,6 +631,9 @@ java_library {
        "rappor",
    ],
    dxflags: ["--core-library"],
    lint: {
        baseline_filename: "lint-baseline.xml",
    },
}

// utility classes statically linked into framework-wifi and dynamically linked
@@ -634,6 +659,9 @@ java_library {
        "//frameworks/base/services/net",
        "//packages/modules/Wifi/framework",
    ],
    lint: {
        baseline_filename: "lint-baseline.xml",
    },
}

filegroup {
+5 −2
Original line number Diff line number Diff line
@@ -16,8 +16,11 @@ android_library {

    static_libs: [
        "androidx.annotation_annotation",
          "SettingsLibTile"
        "SettingsLibTile",
    ],

    min_sdk_version: "21",
    lint: {
        baseline_filename: "lint-baseline.xml",
    },
}
+3 −0
Original line number Diff line number Diff line
@@ -60,6 +60,9 @@ android_library {
        "src/**/*.java",
        "src/**/*.kt",
    ],
    lint: {
        baseline_filename: "lint-baseline.xml",
    },
}

// NOTE: Keep this module in sync with ./common.mk
+3 −0
Original line number Diff line number Diff line
@@ -17,4 +17,7 @@ android_library {
    ],
    sdk_version: "system_current",
    min_sdk_version: "21",
    lint: {
        baseline_filename: "lint-baseline.xml",
    },
}
+3 −0
Original line number Diff line number Diff line
@@ -28,4 +28,7 @@ android_library {
        "com.android.extservices",
        "com.android.healthfitness",
    ],
    lint: {
        baseline_filename: "lint-baseline.xml",
    },
}
Loading