910e62b5创建于 1月15日历史提交
# 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/chromeos/ui_mode.gni")

assert(is_chromeos)

static_library("window_predictor") {
  sources = [
    "arc_predictor_app_launch_handler.cc",
    "arc_predictor_app_launch_handler.h",
    "window_predictor.cc",
    "window_predictor.h",
    "window_predictor_utils.cc",
    "window_predictor_utils.h",
  ]

  public_deps = [ "//chrome/browser:browser_public_dependencies" ]

  deps = [
    "//base",
    "//chrome/browser/ash/app_list/arc",
    "//chromeos/ash/experiences/arc/mojom",
    "//chromeos/ui/base",
    "//components/app_restore",
    "//ui/display",
    "//ui/gfx",
  ]

  allow_circular_includes_from = [ "//chrome/browser/ash/app_list/arc" ]
}