| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 { | 5 { |
| 6 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 # GN: //components/contextual_search:browser | 8 # GN: //components/contextual_search:browser |
| 9 'target_name': 'contextual_search_browser', | 9 'target_name': 'contextual_search_browser', |
| 10 'type': 'static_library', | 10 'type': 'static_library', |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 'target_name': 'contextual_search_renderer', | 25 'target_name': 'contextual_search_renderer', |
| 26 'type': 'static_library', | 26 'type': 'static_library', |
| 27 'include_dirs': [ | 27 'include_dirs': [ |
| 28 '..', | 28 '..', |
| 29 '../third_party/WebKit', | 29 '../third_party/WebKit', |
| 30 ], | 30 ], |
| 31 'dependencies': [ | 31 'dependencies': [ |
| 32 'contextual_search_mojo_bindings', | 32 'contextual_search_mojo_bindings', |
| 33 '../base/base.gyp:base', | 33 '../base/base.gyp:base', |
| 34 '../content/content.gyp:content_common', | 34 '../content/content.gyp:content_common', |
| 35 '../third_party/WebKit/public/blink.gyp:blink', |
| 35 ], | 36 ], |
| 36 'sources': [ | 37 'sources': [ |
| 37 'contextual_search/renderer/contextual_search_wrapper.cc', | 38 'contextual_search/renderer/contextual_search_wrapper.cc', |
| 38 'contextual_search/renderer/contextual_search_wrapper.h', | 39 'contextual_search/renderer/contextual_search_wrapper.h', |
| 39 'contextual_search/renderer/overlay_js_render_frame_observer.cc', | 40 'contextual_search/renderer/overlay_js_render_frame_observer.cc', |
| 40 'contextual_search/renderer/overlay_js_render_frame_observer.h', | 41 'contextual_search/renderer/overlay_js_render_frame_observer.h', |
| 41 'contextual_search/renderer/overlay_page_notifier_service_impl.cc', | 42 'contextual_search/renderer/overlay_page_notifier_service_impl.cc', |
| 42 'contextual_search/renderer/overlay_page_notifier_service_impl.h', | 43 'contextual_search/renderer/overlay_page_notifier_service_impl.h', |
| 43 ], | 44 ], |
| 44 }, | 45 }, |
| 45 { | 46 { |
| 46 # GN version: //components/contextual_search:mojo_bindings | 47 # GN version: //components/contextual_search:mojo_bindings |
| 47 'target_name': 'contextual_search_mojo_bindings', | 48 'target_name': 'contextual_search_mojo_bindings', |
| 48 'type': 'static_library', | 49 'type': 'static_library', |
| 49 'sources': [ | 50 'sources': [ |
| 50 'contextual_search/common/contextual_search_js_api_service.mojom', | 51 'contextual_search/common/contextual_search_js_api_service.mojom', |
| 51 'contextual_search/common/overlay_page_notifier_service.mojom', | 52 'contextual_search/common/overlay_page_notifier_service.mojom', |
| 52 ], | 53 ], |
| 53 'includes': [ | 54 'includes': [ |
| 54 '../mojo/mojom_bindings_generator.gypi', | 55 '../mojo/mojom_bindings_generator.gypi', |
| 55 ], | 56 ], |
| 56 }, | 57 }, |
| 57 ], | 58 ], |
| 58 } | 59 } |
| OLD | NEW |