| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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 'variables': { | 6 'variables': { |
| 7 # File lists shared with GN build. | 7 # File lists shared with GN build. |
| 8 'chrome_common_sources': [ | 8 'chrome_common_sources': [ |
| 9 'common/all_messages.h', | 9 'common/all_messages.h', |
| 10 'common/attrition_experiments.h', | 10 'common/attrition_experiments.h', |
| (...skipping 621 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 632 'common/safe_browsing/download_file_types.proto', | 632 'common/safe_browsing/download_file_types.proto', |
| 633 'common/safe_browsing/permission_report.proto', | 633 'common/safe_browsing/permission_report.proto', |
| 634 ], | 634 ], |
| 635 'variables': { | 635 'variables': { |
| 636 'proto_in_dir': 'common/safe_browsing', | 636 'proto_in_dir': 'common/safe_browsing', |
| 637 'proto_out_dir': 'chrome/common/safe_browsing', | 637 'proto_out_dir': 'chrome/common/safe_browsing', |
| 638 }, | 638 }, |
| 639 'includes': [ '../build/protoc.gypi' ], | 639 'includes': [ '../build/protoc.gypi' ], |
| 640 }, | 640 }, |
| 641 { | 641 { |
| 642 # GN version: //chrome/common:search_provider_mojom |
| 643 'target_name': 'common_search_provider_mojom', |
| 644 'type': 'static_library', |
| 645 'sources': [ |
| 646 'common/search_provider.mojom', |
| 647 ], |
| 648 'variables': { |
| 649 'mojom_typemaps': [ |
| 650 '../url/mojo/gurl.typemap', |
| 651 ], |
| 652 }, |
| 653 'dependencies': [ |
| 654 '../mojo/mojo_public.gyp:mojo_cpp_bindings', |
| 655 '../url/url.gyp:url_mojom', |
| 656 ], |
| 657 'includes': [ '../mojo/mojom_bindings_generator.gypi' ], |
| 658 }, |
| 659 { |
| 642 'target_name': 'common_mojo_bindings_mojom', | 660 'target_name': 'common_mojo_bindings_mojom', |
| 643 'type': 'none', | 661 'type': 'none', |
| 644 'variables': { | 662 'variables': { |
| 645 'mojom_files': [ | 663 'mojom_files': [ |
| 646 'common/image_decoder.mojom', | 664 'common/image_decoder.mojom', |
| 647 'common/resource_usage_reporter.mojom', | 665 'common/resource_usage_reporter.mojom', |
| 648 'common/shell_handler_win.mojom', | 666 'common/shell_handler_win.mojom', |
| 649 ], | 667 ], |
| 650 'mojom_typemaps': [ | 668 'mojom_typemaps': [ |
| 651 '../skia/public/interfaces/skbitmap.typemap', | 669 '../skia/public/interfaces/skbitmap.typemap', |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 685 ], | 703 ], |
| 686 'dependencies': [ | 704 'dependencies': [ |
| 687 'installer_util', | 705 'installer_util', |
| 688 '../base/base.gyp:base', | 706 '../base/base.gyp:base', |
| 689 ], | 707 ], |
| 690 }, | 708 }, |
| 691 ], | 709 ], |
| 692 }], | 710 }], |
| 693 ], | 711 ], |
| 694 } | 712 } |
| OLD | NEW |