blob: 11a38c74cede1632312cdc5a55a24c315f262af2 [file] [log] [blame]
# Copyright 2015 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//mojo/public/tools/bindings/mojom.gni")
mojom("mojo_bindings") {
sources = [
"common/contextual_search_js_api_service.mojom",
]
public_deps = [
"//url/mojom:url_mojom_gurl",
]
}
static_library("browser") {
sources = [
"browser/contextual_search_js_api_service_impl.cc",
"browser/contextual_search_js_api_service_impl.h",
]
deps = [
":mojo_bindings",
"//base",
]
}
static_library("renderer") {
sources = [
"renderer/contextual_search_wrapper.cc",
"renderer/contextual_search_wrapper.h",
"renderer/overlay_js_render_frame_observer.cc",
"renderer/overlay_js_render_frame_observer.h",
]
deps = [
":mojo_bindings",
"//base",
"//content/public/common",
"//content/public/renderer",
"//gin",
"//mojo/public/cpp/bindings",
"//services/service_manager/public/cpp",
"//third_party/blink/public:blink_headers",
"//v8",
]
}