| 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 735 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 746 ], | 746 ], |
| 747 }, | 747 }, |
| 748 { | 748 { |
| 749 # Protobuf compiler / generator for the safebrowsing client | 749 # Protobuf compiler / generator for the safebrowsing client |
| 750 # model proto and the client-side detection (csd) request | 750 # model proto and the client-side detection (csd) request |
| 751 # protocol buffer. | 751 # protocol buffer. |
| 752 'target_name': 'safe_browsing_proto', | 752 'target_name': 'safe_browsing_proto', |
| 753 'type': 'static_library', | 753 'type': 'static_library', |
| 754 'sources': [ | 754 'sources': [ |
| 755 'common/safe_browsing/client_model.proto', | 755 'common/safe_browsing/client_model.proto', |
| 756 'common/safe_browsing/crx_info.proto', |
| 756 'common/safe_browsing/csd.proto' | 757 'common/safe_browsing/csd.proto' |
| 757 ], | 758 ], |
| 758 'variables': { | 759 'variables': { |
| 759 'proto_in_dir': 'common/safe_browsing', | 760 'proto_in_dir': 'common/safe_browsing', |
| 760 'proto_out_dir': 'chrome/common/safe_browsing', | 761 'proto_out_dir': 'chrome/common/safe_browsing', |
| 761 }, | 762 }, |
| 762 'includes': [ '../build/protoc.gypi' ], | 763 'includes': [ '../build/protoc.gypi' ], |
| 763 }, | 764 }, |
| 764 { | 765 { |
| 765 # Protobuf compiler / generator for UMA (User Metrics Analysis). | 766 # Protobuf compiler / generator for UMA (User Metrics Analysis). |
| (...skipping 11 matching lines...) Expand all Loading... |
| 777 'common/metrics/proto/user_action_event.proto', | 778 'common/metrics/proto/user_action_event.proto', |
| 778 ], | 779 ], |
| 779 'variables': { | 780 'variables': { |
| 780 'proto_in_dir': 'common/metrics/proto', | 781 'proto_in_dir': 'common/metrics/proto', |
| 781 'proto_out_dir': 'chrome/common/metrics/proto', | 782 'proto_out_dir': 'chrome/common/metrics/proto', |
| 782 }, | 783 }, |
| 783 'includes': [ '../build/protoc.gypi' ], | 784 'includes': [ '../build/protoc.gypi' ], |
| 784 }, | 785 }, |
| 785 ], | 786 ], |
| 786 } | 787 } |
| OLD | NEW |