From 051655ad35d7b3c442ba1df8880da91123bf9bc9 Mon Sep 17 00:00:00 2001 From: "droger@chromium.org" Date: Fri, 18 Apr 2014 15:09:41 +0000 Subject: 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 --- components/infobars.gypi | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 components/infobars.gypi (limited to 'components/infobars.gypi') 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', + ], + }, + ], +} -- cgit v1.1