Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / components / infobars / core / BUILD.gn
blobd4cb5e1bdb83e8a0d25c2032f2fc59903d044d3a
1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
5 import("//build/config/ui.gni")
7 static_library("core") {
8   sources = [
9     "confirm_infobar_delegate.cc",
10     "confirm_infobar_delegate.h",
11     "infobar.cc",
12     "infobar.h",
13     "infobar_container.cc",
14     "infobar_container.h",
15     "infobar_delegate.cc",
16     "infobar_delegate.h",
17     "infobar_manager.cc",
18     "infobar_manager.h",
19     "infobars_switches.cc",
20     "infobars_switches.h",
21     "simple_alert_infobar_delegate.cc",
22     "simple_alert_infobar_delegate.h",
23   ]
25   public_deps = [
26     "//skia",
27   ]
28   deps = [
29     "//base",
30     "//ui/base",
31     "//ui/gfx",
32     "//ui/strings",
33   ]
35   if (use_aura || (!is_ios && !is_android)) {
36     deps += [ "//ui/native_theme" ]
37   }