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 26 matching lines...) Expand all Loading... |
37 'common/content_restriction.h', | 37 'common/content_restriction.h', |
38 'common/content_settings_pattern_serializer.cc', | 38 'common/content_settings_pattern_serializer.cc', |
39 'common/content_settings_pattern_serializer.h', | 39 'common/content_settings_pattern_serializer.h', |
40 'common/crash_keys.cc', | 40 'common/crash_keys.cc', |
41 'common/crash_keys.h', | 41 'common/crash_keys.h', |
42 'common/custom_handlers/protocol_handler.cc', | 42 'common/custom_handlers/protocol_handler.cc', |
43 'common/custom_handlers/protocol_handler.h', | 43 'common/custom_handlers/protocol_handler.h', |
44 'common/descriptors_android.h', | 44 'common/descriptors_android.h', |
45 'common/ini_parser.cc', | 45 'common/ini_parser.cc', |
46 'common/ini_parser.h', | 46 'common/ini_parser.h', |
| 47 'common/install_state_traits.h', |
47 'common/instant_types.cc', | 48 'common/instant_types.cc', |
48 'common/instant_types.h', | 49 'common/instant_types.h', |
49 'common/logging_chrome.cc', | 50 'common/logging_chrome.cc', |
50 'common/logging_chrome.h', | 51 'common/logging_chrome.h', |
51 'common/mac/app_shim_launch.h', | 52 'common/mac/app_shim_launch.h', |
52 'common/mac/app_shim_messages.h', | 53 'common/mac/app_shim_messages.h', |
53 'common/mac/cfbundle_blocker.h', | 54 'common/mac/cfbundle_blocker.h', |
54 'common/mac/cfbundle_blocker.mm', | 55 'common/mac/cfbundle_blocker.mm', |
55 'common/mac/launchd.h', | 56 'common/mac/launchd.h', |
56 'common/mac/launchd.mm', | 57 'common/mac/launchd.mm', |
(...skipping 583 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
640 'common/safe_browsing/download_file_types.proto', | 641 'common/safe_browsing/download_file_types.proto', |
641 'common/safe_browsing/permission_report.proto', | 642 'common/safe_browsing/permission_report.proto', |
642 ], | 643 ], |
643 'variables': { | 644 'variables': { |
644 'proto_in_dir': 'common/safe_browsing', | 645 'proto_in_dir': 'common/safe_browsing', |
645 'proto_out_dir': 'chrome/common/safe_browsing', | 646 'proto_out_dir': 'chrome/common/safe_browsing', |
646 }, | 647 }, |
647 'includes': [ '../build/protoc.gypi' ], | 648 'includes': [ '../build/protoc.gypi' ], |
648 }, | 649 }, |
649 { | 650 { |
| 651 # GN version: //chrome/common:render_mojom |
| 652 'target_name': 'common_render_mojom', |
| 653 'type': 'static_library', |
| 654 'sources': [ |
| 655 'common/render.mojom', |
| 656 ], |
| 657 'variables': { |
| 658 'mojom_typemaps': [ |
| 659 '../skia/public/interfaces/skbitmap.typemap', |
| 660 '../url/mojo/gurl.typemap', |
| 661 'common/render.typemap', |
| 662 ], |
| 663 }, |
| 664 'dependencies': [ |
| 665 '../mojo/mojo_public.gyp:mojo_cpp_bindings', |
| 666 '../skia/skia.gyp:skia', |
| 667 '../url/url.gyp:url_mojom', |
| 668 ], |
| 669 'export_dependent_settings': [ |
| 670 '../skia/skia.gyp:skia', |
| 671 ], |
| 672 'includes': [ '../mojo/mojom_bindings_generator.gypi' ], |
| 673 }, |
| 674 { |
650 'target_name': 'common_mojo_bindings_mojom', | 675 'target_name': 'common_mojo_bindings_mojom', |
651 'type': 'none', | 676 'type': 'none', |
652 'variables': { | 677 'variables': { |
653 'mojom_files': [ | 678 'mojom_files': [ |
654 'common/image_decoder.mojom', | 679 'common/image_decoder.mojom', |
655 'common/resource_usage_reporter.mojom', | 680 'common/resource_usage_reporter.mojom', |
656 ], | 681 ], |
657 'mojom_typemaps': [ | 682 'mojom_typemaps': [ |
658 '../skia/public/interfaces/skbitmap.typemap', | 683 '../skia/public/interfaces/skbitmap.typemap', |
659 ], | 684 ], |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
691 ], | 716 ], |
692 'dependencies': [ | 717 'dependencies': [ |
693 'installer_util', | 718 'installer_util', |
694 '../base/base.gyp:base', | 719 '../base/base.gyp:base', |
695 ], | 720 ], |
696 }, | 721 }, |
697 ], | 722 ], |
698 }], | 723 }], |
699 ], | 724 ], |
700 } | 725 } |
OLD | NEW |