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

Side by Side Diff: components/contextual_search.gypi

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 {
6 'targets': [
7 {
8 # GN: //components/contextual_search:contextual_search
9 #TODO(donnd): make conditional on OS == android?
10 'target_name': 'contextual_search',
11 'type': 'static_library',
12 'include_dirs': [
13 '..',
14 '../third_party/WebKit',
15 ],
16 'dependencies': [
17 'contextual_search_mojo_bindings',
18 '../base/base.gyp:base',
19 ],
20 'sources': [
21 'contextual_search/contextual_search_api_service_impl.cc',
22 'contextual_search/contextual_search_api_service_impl.h',
23 'contextual_search/contextual_search_wrapper.cc',
24 'contextual_search/contextual_search_wrapper.h',
25 'contextual_search/overlay_page_notifier_service_impl.cc',
26 'contextual_search/overlay_page_notifier_service_impl.h',
27 'contextual_search/overlay_js_render_frame_observer.cc',
28 'contextual_search/overlay_js_render_frame_observer.h',
29 ],
30 },
31 {
32 # GN version: //components/contextual_search:mojo_bindings
33 'target_name': 'contextual_search_mojo_bindings',
34 'type': 'static_library',
35 'sources': [
36 'contextual_search/contextual_search_api_service.mojom',
37 'contextual_search/overlay_page_notifier_service.mojom',
38 ],
39 'includes': [
40 '../third_party/mojo/mojom_bindings_generator.gypi',
41 ],
42 },
43 ],
44 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698