BUILD.gn 533 B

123456789101112131415161718192021
  1. # Copyright 2016 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("ios") {
  5. configs += [ "//build/config/compiler:enable_arc" ]
  6. sources = [
  7. "favicon_url_util.cc",
  8. "favicon_url_util.h",
  9. "web_favicon_driver.h",
  10. "web_favicon_driver.mm",
  11. ]
  12. deps = [
  13. "//base",
  14. "//components/favicon/core",
  15. "//components/favicon_base",
  16. "//components/image_fetcher/ios",
  17. "//ios/web",
  18. "//ui/gfx",
  19. ]
  20. }