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