| # 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("//build/config/chrome_build.gni") |
| |
| assert(is_chromeos) |
| |
| static_library("set_time") { |
| sources = [ |
| "set_time_dialog.cc", |
| "set_time_dialog.h", |
| "set_time_ui.cc", |
| "set_time_ui.h", |
| ] |
| |
| deps = [ |
| "//base", |
| "//chrome/browser/ash/child_accounts/parent_access_code", |
| "//chrome/browser/ash/system", |
| "//chrome/browser/profiles:profile", |
| "//chrome/browser/resources/chromeos/set_time_dialog:resources", |
| "//chrome/browser/resources/chromeos/set_time_dialog:resources_grit", |
| "//chrome/browser/ui/webui/ash/system_web_dialog", |
| "//chrome/common", |
| "//chromeos/ash/components/dbus/system_clock", |
| "//chromeos/ash/components/login/login_state", |
| "//chromeos/ash/components/settings", |
| "//ui/gfx", |
| "//ui/web_dialogs", |
| "//ui/webui", |
| ] |
| } |