BUILD.gn 607 B

1234567891011121314151617181920212223
  1. # Copyright 2015 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. "distiller_page_factory_ios.h",
  8. "distiller_page_factory_ios.mm",
  9. "distiller_page_ios.h",
  10. "distiller_page_ios.mm",
  11. ]
  12. deps = [
  13. "//base",
  14. "//components/dom_distiller/core",
  15. "//components/dom_distiller/core/proto",
  16. "//components/favicon/ios",
  17. "//ios/web/public",
  18. "//ios/web/public/js_messaging",
  19. "//url",
  20. ]
  21. }