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 669 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
680 'common/safe_browsing/client_model.proto', | 680 'common/safe_browsing/client_model.proto', |
681 'common/safe_browsing/crx_info.proto', | 681 'common/safe_browsing/crx_info.proto', |
682 'common/safe_browsing/csd.proto' | 682 'common/safe_browsing/csd.proto' |
683 ], | 683 ], |
684 'variables': { | 684 'variables': { |
685 'proto_in_dir': 'common/safe_browsing', | 685 'proto_in_dir': 'common/safe_browsing', |
686 'proto_out_dir': 'chrome/common/safe_browsing', | 686 'proto_out_dir': 'chrome/common/safe_browsing', |
687 }, | 687 }, |
688 'includes': [ '../build/protoc.gypi' ], | 688 'includes': [ '../build/protoc.gypi' ], |
689 }, | 689 }, |
| 690 { |
| 691 # GN version: //chrome/common:mojo_bindings |
| 692 'target_name': 'common_mojo_bindings', |
| 693 'type': 'static_library', |
| 694 'includes': [ |
| 695 '../third_party/mojo/mojom_bindings_generator.gypi' |
| 696 ], |
| 697 'sources': [ |
| 698 'common/resource_usage_reporter.mojom', |
| 699 ], |
| 700 'dependencies': [ |
| 701 '../mojo/mojo_base.gyp:mojo_environment_chromium', |
| 702 '../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings', |
| 703 ], |
| 704 }, |
690 ], | 705 ], |
691 } | 706 } |
OLD | NEW |