mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 06:16:30 +03:00
54 lines
1.1 KiB
Plaintext
54 lines
1.1 KiB
Plaintext
|
# Copyright 2014 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")
|
||
|
|
||
|
if (is_android) {
|
||
|
import("//build/config/android/config.gni")
|
||
|
import("//build/config/android/rules.gni")
|
||
|
}
|
||
|
|
||
|
static_library("core") {
|
||
|
sources = [
|
||
|
"confirm_infobar_delegate.cc",
|
||
|
"confirm_infobar_delegate.h",
|
||
|
"infobar.cc",
|
||
|
"infobar.h",
|
||
|
"infobar_container.cc",
|
||
|
"infobar_container.h",
|
||
|
"infobar_delegate.cc",
|
||
|
"infobar_delegate.h",
|
||
|
"infobar_manager.cc",
|
||
|
"infobar_manager.h",
|
||
|
"infobars_switches.cc",
|
||
|
"infobars_switches.h",
|
||
|
"simple_alert_infobar_delegate.cc",
|
||
|
"simple_alert_infobar_delegate.h",
|
||
|
]
|
||
|
|
||
|
public_deps = [
|
||
|
"//skia",
|
||
|
]
|
||
|
deps = [
|
||
|
"//base",
|
||
|
"//ui/base",
|
||
|
"//ui/gfx",
|
||
|
"//ui/gfx/animation",
|
||
|
"//ui/strings",
|
||
|
"//url",
|
||
|
]
|
||
|
|
||
|
if (use_aura || (!is_ios && !is_android)) {
|
||
|
deps += [ "//ui/native_theme" ]
|
||
|
}
|
||
|
}
|
||
|
|
||
|
if (is_android) {
|
||
|
java_cpp_enum("infobar_enums_java") {
|
||
|
sources = [
|
||
|
"infobar_delegate.h",
|
||
|
]
|
||
|
}
|
||
|
}
|