BUILD.gn 727 B

1234567891011121314151617181920212223242526272829303132
  1. # Copyright 2020 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. import("//build/config/ui.gni")
  5. static_library("find_in_page") {
  6. sources = [
  7. "find_notification_details.h",
  8. "find_result_observer.h",
  9. "find_tab_helper.cc",
  10. "find_tab_helper.h",
  11. "find_types.h",
  12. ]
  13. deps = [
  14. "//base",
  15. "//content/public/browser",
  16. "//content/public/common",
  17. "//third_party/blink/public/common",
  18. "//ui/gfx",
  19. ]
  20. if (is_android) {
  21. sources += [
  22. "android/find_in_page_bridge.cc",
  23. "android/find_in_page_bridge.h",
  24. ]
  25. deps += [ "//components/find_in_page/android:jni_headers" ]
  26. }
  27. }