| 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', |
| 11 'include_dirs': [ | 11 'include_dirs': [ |
| 12 '..', | 12 '..', |
| 13 ], | 13 ], |
| 14 'dependencies': [ | 14 'dependencies': [ |
| 15 'contextual_search_mojo_bindings', | 15 'contextual_search_mojo_bindings', |
| 16 '../base/base.gyp:base', | 16 '../base/base.gyp:base', |
| 17 ], | 17 ], |
| 18 'sources': [ | 18 'sources': [ |
| 19 'contextual_search/browser/contextual_search_js_api_service_impl.cc', | 19 'contextual_search/browser/contextual_search_js_api_service_impl.cc', |
| 20 'contextual_search/browser/contextual_search_js_api_service_impl.h', | 20 'contextual_search/browser/contextual_search_js_api_service_impl.h', |
| 21 'contextual_search/browser/ctr_aggregator.cc', |
| 22 'contextual_search/browser/ctr_aggregator.h', |
| 23 'contextual_search/browser/native_int_storage.h', |
| 21 ], | 24 ], |
| 22 }, | 25 }, |
| 23 { | 26 { |
| 24 # GN: //components/contextual_search:renderer | 27 # GN: //components/contextual_search:renderer |
| 25 'target_name': 'contextual_search_renderer', | 28 'target_name': 'contextual_search_renderer', |
| 26 'type': 'static_library', | 29 'type': 'static_library', |
| 27 'include_dirs': [ | 30 'include_dirs': [ |
| 28 '..', | 31 '..', |
| 29 '../third_party/WebKit', | 32 '../third_party/WebKit', |
| 30 ], | 33 ], |
| (...skipping 22 matching lines...) Expand all Loading... |
| 53 ], | 56 ], |
| 54 'variables': { | 57 'variables': { |
| 55 'use_new_wrapper_types': 'false', | 58 'use_new_wrapper_types': 'false', |
| 56 }, | 59 }, |
| 57 'includes': [ | 60 'includes': [ |
| 58 '../mojo/mojom_bindings_generator.gypi', | 61 '../mojo/mojom_bindings_generator.gypi', |
| 59 ], | 62 ], |
| 60 }, | 63 }, |
| 61 ], | 64 ], |
| 62 } | 65 } |
| OLD | NEW |