| 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/weekly_activity_storage.cc', |
| 24 'contextual_search/browser/weekly_activity_storage.h', |
| 21 ], | 25 ], |
| 22 }, | 26 }, |
| 23 { | 27 { |
| 24 # GN: //components/contextual_search:renderer | 28 # GN: //components/contextual_search:renderer |
| 25 'target_name': 'contextual_search_renderer', | 29 'target_name': 'contextual_search_renderer', |
| 26 'type': 'static_library', | 30 'type': 'static_library', |
| 27 'include_dirs': [ | 31 'include_dirs': [ |
| 28 '..', | 32 '..', |
| 29 '../third_party/WebKit', | 33 '../third_party/WebKit', |
| 30 ], | 34 ], |
| (...skipping 22 matching lines...) Expand all Loading... |
| 53 ], | 57 ], |
| 54 'variables': { | 58 'variables': { |
| 55 'use_new_wrapper_types': 'false', | 59 'use_new_wrapper_types': 'false', |
| 56 }, | 60 }, |
| 57 'includes': [ | 61 'includes': [ |
| 58 '../mojo/mojom_bindings_generator.gypi', | 62 '../mojo/mojom_bindings_generator.gypi', |
| 59 ], | 63 ], |
| 60 }, | 64 }, |
| 61 ], | 65 ], |
| 62 } | 66 } |
| OLD | NEW |