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 632 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
643 'common/safe_browsing/download_file_types.proto', | 643 'common/safe_browsing/download_file_types.proto', |
644 'common/safe_browsing/permission_report.proto', | 644 'common/safe_browsing/permission_report.proto', |
645 ], | 645 ], |
646 'variables': { | 646 'variables': { |
647 'proto_in_dir': 'common/safe_browsing', | 647 'proto_in_dir': 'common/safe_browsing', |
648 'proto_out_dir': 'chrome/common/safe_browsing', | 648 'proto_out_dir': 'chrome/common/safe_browsing', |
649 }, | 649 }, |
650 'includes': [ '../build/protoc.gypi' ], | 650 'includes': [ '../build/protoc.gypi' ], |
651 }, | 651 }, |
652 { | 652 { |
| 653 'target_name': 'common_mojo_bindings_mojom', |
| 654 'type': 'none', |
| 655 'variables': { |
| 656 'mojom_files': [ |
| 657 'common/image_decoder.mojom', |
| 658 'common/resource_usage_reporter.mojom', |
| 659 ], |
| 660 'mojom_typemaps': [ |
| 661 '../skia/public/interfaces/skbitmap.typemap', |
| 662 ], |
| 663 }, |
| 664 'dependencies': [ |
| 665 '../mojo/mojo_public.gyp:mojo_cpp_bindings', |
| 666 '../skia/skia.gyp:skia_mojo', |
| 667 ], |
| 668 'includes': [ '../mojo/mojom_bindings_generator_explicit.gypi' ], |
| 669 }, |
| 670 { |
653 # GN version: //chrome/common:mojo_bindings | 671 # GN version: //chrome/common:mojo_bindings |
654 'target_name': 'common_mojo_bindings', | 672 'target_name': 'common_mojo_bindings', |
655 'type': 'static_library', | 673 'type': 'static_library', |
656 'includes': [ | 674 'dependencies': [ |
657 '../mojo/mojom_bindings_generator.gypi' | 675 'common_mojo_bindings_mojom', |
| 676 '../mojo/mojo_public.gyp:mojo_cpp_bindings', |
| 677 '../skia/skia.gyp:skia', |
658 ], | 678 ], |
659 'sources': [ | 679 'export_dependent_settings': [ |
660 'common/image_decoder.mojom', | 680 '../skia/skia.gyp:skia', |
661 'common/resource_usage_reporter.mojom', | |
662 ], | |
663 'dependencies': [ | |
664 '../mojo/mojo_public.gyp:mojo_cpp_bindings', | |
665 '../skia/skia.gyp:skia_mojo', | |
666 ], | 681 ], |
667 }, | 682 }, |
668 ], | 683 ], |
669 'conditions': [ | 684 'conditions': [ |
670 ['OS == "win"', { | 685 ['OS == "win"', { |
671 'targets': [ | 686 'targets': [ |
672 { | 687 { |
673 # GN version: //chrome/common:metrics_constants_util_win | 688 # GN version: //chrome/common:metrics_constants_util_win |
674 'target_name': 'metrics_constants_util_win', | 689 'target_name': 'metrics_constants_util_win', |
675 'type': 'static_library', | 690 'type': 'static_library', |
676 'sources': [ | 691 'sources': [ |
677 'common/metrics_constants_util_win.cc', | 692 'common/metrics_constants_util_win.cc', |
678 'common/metrics_constants_util_win.h', | 693 'common/metrics_constants_util_win.h', |
679 ], | 694 ], |
680 'dependencies': [ | 695 'dependencies': [ |
681 'installer_util', | 696 'installer_util', |
682 '../base/base.gyp:base', | 697 '../base/base.gyp:base', |
683 ], | 698 ], |
684 }, | 699 }, |
685 ], | 700 ], |
686 }], | 701 }], |
687 ], | 702 ], |
688 } | 703 } |
OLD | NEW |