chromium/chrome/browser/privacy_guide/BUILD.gn

# Copyright 2022 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

static_library("privacy_guide") {
  sources = [ "privacy_guide.h" ]

  deps = [ "//base" ]
}

if (is_android) {
  import("//build/config/android/rules.gni")

  android_library("privacy_guide_enum_java") {
    srcjar_deps = [ ":privacy_guide_enum_javagen" ]
    deps = [ "//third_party/androidx:androidx_annotation_annotation_java" ]
  }

  java_cpp_enum("privacy_guide_enum_javagen") {
    sources = [ "privacy_guide.h" ]
  }
}