Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(511)

Side by Side Diff: components/contextual_search/BUILD.gn

Issue 1385663002: [Contextual Search] Add Mojo-enabled API component. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Reworked to use a new Contextual Search component and Mojo communication, removed CS Manager stuff. Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
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
5 if (is_android) {
6 import("//build/config/android/rules.gni")
7 }
8
9 # GYP: //components/contextual_search:contextual_search
10 static_library("contextual_search") {
11 sources = [
12 "contextual_search_api_service_impl.cc",
13 "contextual_search_api_service_impl.h",
14 "contextual_search_wrapper.cc",
15 "contextual_search_wrapper.h",
16 "overlay_js_render_frame_observer.cc",
17 "overlay_js_render_frame_observer.h",
18 "overlay_page_notifier_service_impl.cc",
19 "overlay_page_notifier_service_impl.h",
20 ]
21 deps = [
22 "//base",
23 ]
24 }
25
26 # GYP version: components/overlay_panel.gypi:overlay_panel_mojo_bindings
27 mojom("mojo_bindings") {
28 sources = [
29 "common/contextual_search_api_service.mojom",
30 "common/overlay_page_notifier_service.mojom",
31 ]
32 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698