mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
38 lines
852 B
Plaintext
38 lines
852 B
Plaintext
# Copyright 2017 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.
|
|
|
|
component("public") {
|
|
output_name = "wm_public"
|
|
|
|
public = [
|
|
"activation_change_observer.h",
|
|
"activation_client.h",
|
|
"activation_delegate.h",
|
|
"animation_host.h",
|
|
"scoped_drag_drop_disabler.h",
|
|
"scoped_tooltip_disabler.h",
|
|
"tooltip_client.h",
|
|
"window_move_client.h",
|
|
]
|
|
|
|
sources = [
|
|
"activation_change_observer.cc",
|
|
"activation_client.cc",
|
|
"activation_delegate.cc",
|
|
"animation_host.cc",
|
|
"scoped_drag_drop_disabler.cc",
|
|
"scoped_tooltip_disabler.cc",
|
|
"tooltip_client.cc",
|
|
"window_move_client.cc",
|
|
"wm_public_export.h",
|
|
]
|
|
|
|
defines = [ "WM_PUBLIC_IMPLEMENTATION" ]
|
|
|
|
deps = [
|
|
"//ui/aura",
|
|
"//ui/base",
|
|
]
|
|
}
|