blob: 8c64fc66eb7efc2d2fc2bd71f7c88d79597fc009 [file] [log] [blame]
# Copyright 2024 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//chrome/common/features.gni")
import("//extensions/buildflags/buildflags.gni")
assert(enable_extensions)
assert(is_chromeos)
source_set("enterprise_networking_attributes") {
sources = [
"enterprise_networking_attributes_api.cc",
"enterprise_networking_attributes_api.h",
]
configs += [ "//build/config/compiler:wexit_time_destructors" ]
public_deps = [
"//chromeos/crosapi/mojom",
"//extensions/browser",
# TODO(crbug.com/354842935): Temporarily added to access
# primary user profile without changing the behavior.
"//chrome/browser:browser_public_dependencies",
]
deps = [
"//base",
"//build:chromeos_buildflags",
"//chrome/browser:browser_process",
"//chrome/browser/ash/crosapi",
"//chrome/browser/profiles:profile",
"//chrome/common/extensions/api",
"//chromeos/ash/components/browser_context_helper",
"//chromeos/ash/components/network",
"//net",
]
}