summaryrefslogtreecommitdiffstats
path: root/components/favicon_base
diff options
context:
space:
mode:
authortfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-05-24 13:21:50 +0000
committertfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-05-24 13:21:50 +0000
commita306aaae14d5c582d8f0916624e9c7819df7dee4 (patch)
treec73d933e9ad373a48e4aeef7f8390ffb5f40d96c /components/favicon_base
parent3137acb9f373e9409a52ac69ccf398fffa2c817c (diff)
downloadchromium_src-a306aaae14d5c582d8f0916624e9c7819df7dee4.zip
chromium_src-a306aaae14d5c582d8f0916624e9c7819df7dee4.tar.gz
chromium_src-a306aaae14d5c582d8f0916624e9c7819df7dee4.tar.bz2
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
Diffstat (limited to 'components/favicon_base')
-rw-r--r--components/favicon_base/BUILD.gn20
1 files changed, 20 insertions, 0 deletions
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",
+ ]
+}