OLD | NEW |
| (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 '../content/content.gyp:content_common', | |
35 '../third_party/WebKit/public/blink.gyp:blink', | |
36 ], | |
37 'sources': [ | |
38 'contextual_search/renderer/contextual_search_wrapper.cc', | |
39 'contextual_search/renderer/contextual_search_wrapper.h', | |
40 'contextual_search/renderer/overlay_js_render_frame_observer.cc', | |
41 'contextual_search/renderer/overlay_js_render_frame_observer.h', | |
42 'contextual_search/renderer/overlay_page_notifier_service_impl.cc', | |
43 'contextual_search/renderer/overlay_page_notifier_service_impl.h', | |
44 ], | |
45 }, | |
46 { | |
47 # GN version: //components/contextual_search:mojo_bindings | |
48 'target_name': 'contextual_search_mojo_bindings', | |
49 'type': 'static_library', | |
50 'sources': [ | |
51 'contextual_search/common/contextual_search_js_api_service.mojom', | |
52 'contextual_search/common/overlay_page_notifier_service.mojom', | |
53 ], | |
54 'variables': { | |
55 'use_new_wrapper_types': 'false', | |
56 }, | |
57 'includes': [ | |
58 '../mojo/mojom_bindings_generator.gypi', | |
59 ], | |
60 }, | |
61 ], | |
62 } | |
OLD | NEW |