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 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'common', | 8 'target_name': 'common', |
9 'type': 'static_library', | 9 'type': 'static_library', |
10 'variables': { | 10 'variables': { |
(...skipping 717 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
728 ], | 728 ], |
729 }, | 729 }, |
730 { | 730 { |
731 # Protobuf compiler / generator for the safebrowsing client | 731 # Protobuf compiler / generator for the safebrowsing client |
732 # model proto and the client-side detection (csd) request | 732 # model proto and the client-side detection (csd) request |
733 # protocol buffer. | 733 # protocol buffer. |
734 'target_name': 'safe_browsing_proto', | 734 'target_name': 'safe_browsing_proto', |
735 'type': 'static_library', | 735 'type': 'static_library', |
736 'sources': [ | 736 'sources': [ |
737 'common/safe_browsing/client_model.proto', | 737 'common/safe_browsing/client_model.proto', |
| 738 'common/safe_browsing/crx_info.proto', |
738 'common/safe_browsing/csd.proto' | 739 'common/safe_browsing/csd.proto' |
739 ], | 740 ], |
740 'variables': { | 741 'variables': { |
741 'proto_in_dir': 'common/safe_browsing', | 742 'proto_in_dir': 'common/safe_browsing', |
742 'proto_out_dir': 'chrome/common/safe_browsing', | 743 'proto_out_dir': 'chrome/common/safe_browsing', |
743 }, | 744 }, |
744 'includes': [ '../build/protoc.gypi' ], | 745 'includes': [ '../build/protoc.gypi' ], |
745 }, | 746 }, |
746 { | 747 { |
747 # Protobuf compiler / generator for UMA (User Metrics Analysis). | 748 # Protobuf compiler / generator for UMA (User Metrics Analysis). |
(...skipping 11 matching lines...) Expand all Loading... |
759 'common/metrics/proto/user_action_event.proto', | 760 'common/metrics/proto/user_action_event.proto', |
760 ], | 761 ], |
761 'variables': { | 762 'variables': { |
762 'proto_in_dir': 'common/metrics/proto', | 763 'proto_in_dir': 'common/metrics/proto', |
763 'proto_out_dir': 'chrome/common/metrics/proto', | 764 'proto_out_dir': 'chrome/common/metrics/proto', |
764 }, | 765 }, |
765 'includes': [ '../build/protoc.gypi' ], | 766 'includes': [ '../build/protoc.gypi' ], |
766 }, | 767 }, |
767 ], | 768 ], |
768 } | 769 } |
OLD | NEW |