From a306aaae14d5c582d8f0916624e9c7819df7dee4 Mon Sep 17 00:00:00 2001 From: "tfarina@chromium.org" Date: Sat, 24 May 2014 13:21:50 +0000 Subject: Add more BUILD.gn files to build these targets with GN. This patch converts the following gyp targets to GN: - favicon_base - query_parser - metro_viewer_messages -> metro_viewer - native_theme BUG=None TEST=None R=scottmg@chromium.org TBR=ben@chromium.org NOTRY=true Review URL: https://codereview.chromium.org/294423004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272739 0039d316-1c4b-4281-b951-d872f2087c98 --- components/favicon_base/BUILD.gn | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 components/favicon_base/BUILD.gn (limited to 'components/favicon_base') diff --git a/components/favicon_base/BUILD.gn b/components/favicon_base/BUILD.gn new file mode 100644 index 0000000..3d4f638 --- /dev/null +++ b/components/favicon_base/BUILD.gn @@ -0,0 +1,20 @@ +# 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. + +source_set("favicon_base") { + sources = [ + "favicon_callback.h", + "favicon_types.cc", + "favicon_types.h", + "select_favicon_frames.cc", + "select_favicon_frames.h", + ] + + deps = [ + "//base", + "//skia", + "//ui/gfx", + "//url", + ] +} -- cgit v1.1