Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(224)

Side by Side Diff: ios/chrome/browser/ui/favicon/BUILD.gn

Issue 2787503002: Move FaviconAttributes to UI (Closed)
Patch Set: Move to different targets Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 # Copyright 2017 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.
4 source_set("favicon") {
sdefresne 2017/04/03 09:31:53 nit: blank line
gambard 2017/04/03 09:36:50 Done.
5 sources = [
6 "favicon_attributes_provider.h",
7 "favicon_attributes_provider.mm",
8 ]
9 deps = [
10 ":favicon_ui",
11 "//base",
12 "//components/favicon/core",
13 "//components/favicon_base",
14 "//url",
15 ]
16 configs += [ "//build/config/compiler:enable_arc" ]
17 }
18
19 source_set("favicon_ui") {
20 sources = [
21 "favicon_attributes.h",
22 "favicon_attributes.mm",
23 "favicon_view.h",
24 "favicon_view.mm",
25 ]
26 deps = [
27 "//base",
28 "//ios/chrome/browser/ui",
29 ]
30 configs += [ "//build/config/compiler:enable_arc" ]
31 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698