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

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: Added a few more missing dependencies to the new component's BUILD.gn rules for our renderer sectio… Created 5 years 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
« no previous file with comments | « components/components.gyp ('k') | components/contextual_search/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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:browser
9 'target_name': 'contextual_search_browser',
10 'type': 'static_library',
11 'include_dirs': [
12 '..',
13 ],
14 'dependencies': [
15 'contextual_search_mojo_bindings',
16 '../base/base.gyp:base',
17 ],
18 'sources': [
19 'contextual_search/browser/contextual_search_js_api_service_impl.cc',
20 'contextual_search/browser/contextual_search_js_api_service_impl.h',
21 ],
22 },
23 {
24 # GN: //components/contextual_search:renderer
25 'target_name': 'contextual_search_renderer',
26 'type': 'static_library',
27 'include_dirs': [
28 '..',
29 '../third_party/WebKit',
30 ],
31 'dependencies': [
32 'contextual_search_mojo_bindings',
33 '../base/base.gyp:base',
34 ],
35 'sources': [
36 'contextual_search/renderer/contextual_search_wrapper.cc',
37 'contextual_search/renderer/contextual_search_wrapper.h',
38 'contextual_search/renderer/overlay_js_render_frame_observer.cc',
39 'contextual_search/renderer/overlay_js_render_frame_observer.h',
40 'contextual_search/renderer/overlay_page_notifier_service_impl.cc',
41 'contextual_search/renderer/overlay_page_notifier_service_impl.h',
42 ],
43 },
44 {
45 # GN version: //components/contextual_search:mojo_bindings
46 'target_name': 'contextual_search_mojo_bindings',
47 'type': 'static_library',
48 'sources': [
49 'contextual_search/common/contextual_search_js_api_service.mojom',
50 'contextual_search/common/overlay_page_notifier_service.mojom',
51 ],
52 'includes': [
53 '../third_party/mojo/mojom_bindings_generator.gypi',
54 ],
55 },
56 ],
57 }
OLDNEW
« no previous file with comments | « components/components.gyp ('k') | components/contextual_search/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698