Chromium Code Reviews| OLD | NEW |
|---|---|
| (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 } | |
| OLD | NEW |