mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
36 lines
898 B
Plaintext
36 lines
898 B
Plaintext
# Copyright 2016 The Chromium Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
import("//build/config/ui.gni")
|
|
import("//testing/test.gni")
|
|
|
|
assert(use_aura)
|
|
|
|
component("presenter") {
|
|
sources = [
|
|
"app_list_presenter_delegate.cc",
|
|
"app_list_presenter_delegate.h",
|
|
"app_list_presenter_export.h",
|
|
"app_list_presenter_impl.cc",
|
|
"app_list_presenter_impl.h",
|
|
]
|
|
|
|
defines = [ "APP_LIST_PRESENTER_IMPLEMENTATION" ]
|
|
|
|
public_deps = [
|
|
"//ash/app_list",
|
|
"//base",
|
|
"//mojo/public/cpp/bindings",
|
|
"//ui/aura",
|
|
"//ui/compositor",
|
|
"//ui/gfx/geometry",
|
|
"//ui/keyboard",
|
|
"//ui/views",
|
|
|
|
# Temporary dependency to fix compile flake in http://crbug.com/611898.
|
|
# TODO(tapted): Remove once http://crbug.com/612382 is fixed.
|
|
"//ui/accessibility:ax_enums_mojo",
|
|
]
|
|
}
|