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: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 } |
OLD | NEW |