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 626 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
637 'common/safe_browsing/download_file_types.proto', | 637 'common/safe_browsing/download_file_types.proto', |
638 'common/safe_browsing/permission_report.proto', | 638 'common/safe_browsing/permission_report.proto', |
639 ], | 639 ], |
640 'variables': { | 640 'variables': { |
641 'proto_in_dir': 'common/safe_browsing', | 641 'proto_in_dir': 'common/safe_browsing', |
642 'proto_out_dir': 'chrome/common/safe_browsing', | 642 'proto_out_dir': 'chrome/common/safe_browsing', |
643 }, | 643 }, |
644 'includes': [ '../build/protoc.gypi' ], | 644 'includes': [ '../build/protoc.gypi' ], |
645 }, | 645 }, |
646 { | 646 { |
| 647 # GN version: //chrome/common:search_provider_mojom |
| 648 'target_name': 'common_search_provider_mojom', |
| 649 'type': 'static_library', |
| 650 'sources': [ |
| 651 'common/search_provider.mojom', |
| 652 ], |
| 653 'variables': { |
| 654 'mojom_typemaps': [ |
| 655 '../url/mojo/gurl.typemap', |
| 656 ], |
| 657 }, |
| 658 'dependencies': [ |
| 659 '../mojo/mojo_public.gyp:mojo_cpp_bindings', |
| 660 '../url/url.gyp:url_mojom', |
| 661 ], |
| 662 'includes': [ '../mojo/mojom_bindings_generator.gypi' ], |
| 663 }, |
| 664 { |
647 'target_name': 'common_mojo_bindings_mojom', | 665 'target_name': 'common_mojo_bindings_mojom', |
648 'type': 'none', | 666 'type': 'none', |
649 'variables': { | 667 'variables': { |
650 'mojom_files': [ | 668 'mojom_files': [ |
651 'common/image_decoder.mojom', | 669 'common/image_decoder.mojom', |
652 'common/resource_usage_reporter.mojom', | 670 'common/resource_usage_reporter.mojom', |
653 ], | 671 ], |
654 'mojom_typemaps': [ | 672 'mojom_typemaps': [ |
655 '../skia/public/interfaces/skbitmap.typemap', | 673 '../skia/public/interfaces/skbitmap.typemap', |
656 ], | 674 ], |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
688 ], | 706 ], |
689 'dependencies': [ | 707 'dependencies': [ |
690 'installer_util', | 708 'installer_util', |
691 '../base/base.gyp:base', | 709 '../base/base.gyp:base', |
692 ], | 710 ], |
693 }, | 711 }, |
694 ], | 712 ], |
695 }], | 713 }], |
696 ], | 714 ], |
697 } | 715 } |
OLD | NEW |