# 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_core) 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 = [ "//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/profiles:profile", "//chrome/browser/profiles:profile_manager", "//chrome/common/extensions/api", "//chromeos/ash/components/browser_context_helper", "//chromeos/ash/components/network", "//net", ] }