summaryrefslogtreecommitdiffstats
path: root/components/infobars.gypi
diff options
context:
space:
mode:
authordroger@chromium.org <droger@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-04-18 15:09:41 +0000
committerdroger@chromium.org <droger@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-04-18 15:09:41 +0000
commit051655ad35d7b3c442ba1df8880da91123bf9bc9 (patch)
tree25d7d1fa8cb99621c927f1deb2707e1d7b3d0fc6 /components/infobars.gypi
parent8e37bf2199e37e270163eb407fab789c4ba77846 (diff)
downloadchromium_src-051655ad35d7b3c442ba1df8880da91123bf9bc9.zip
chromium_src-051655ad35d7b3c442ba1df8880da91123bf9bc9.tar.gz
chromium_src-051655ad35d7b3c442ba1df8880da91123bf9bc9.tar.bz2
Move Infobars core files to the Infobars component
This CL sets up the directory structure for the Infobars component and the infobars_core target. It also does a simple code move to the compoonent. This CL does not move ConfirmInfoBarDelegate because it still has a dependency on chrome/ (for strings). BUG=354379 TBR=sky, reed Review URL: https://codereview.chromium.org/240193003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@264792 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'components/infobars.gypi')
-rw-r--r--components/infobars.gypi32
1 files changed, 32 insertions, 0 deletions
diff --git a/components/infobars.gypi b/components/infobars.gypi
new file mode 100644
index 0000000..7ca15b5
--- /dev/null
+++ b/components/infobars.gypi
@@ -0,0 +1,32 @@
+# 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.
+
+{
+ 'targets': [
+ {
+ 'target_name': 'infobars_core',
+ 'type': 'static_library',
+ 'include_dirs': [
+ '..',
+ ],
+ 'dependencies': [
+ '../base/base.gyp:base',
+ '../skia/skia.gyp:skia',
+ '../ui/gfx/gfx.gyp:gfx',
+ ],
+ 'sources': [
+ 'infobars/core/infobar.cc',
+ 'infobars/core/infobar.h',
+ 'infobars/core/infobar_container.cc',
+ 'infobars/core/infobar_container.h',
+ 'infobars/core/infobar_delegate.cc',
+ 'infobars/core/infobar_delegate.h',
+ 'infobars/core/infobar_manager.cc',
+ 'infobars/core/infobar_manager.h',
+ 'infobars/core/infobars_switches.cc',
+ 'infobars/core/infobars_switches.h',
+ ],
+ },
+ ],
+}