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 604 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
615 ], | 615 ], |
616 }], | 616 }], |
617 ['OS=="win"', { | 617 ['OS=="win"', { |
618 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 618 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
619 'msvs_disabled_warnings': [4267, ], | 619 'msvs_disabled_warnings': [4267, ], |
620 }], | 620 }], |
621 ], | 621 ], |
622 }, | 622 }, |
623 { | 623 { |
624 # Protobuf compiler / generator for the safebrowsing client | 624 # Protobuf compiler / generator for the safebrowsing client |
625 # model proto, the client-side detection (csd) request | 625 # model proto and the client-side detection (csd) request |
626 # proto, and the download file types proto. | 626 # protocol buffer. |
627 | 627 |
628 # GN version: //chrome/common/safe_browsing:proto | 628 # GN version: //chrome/common/safe_browsing:proto |
629 'target_name': 'safe_browsing_proto', | 629 'target_name': 'safe_browsing_proto', |
630 'type': 'static_library', | 630 'type': 'static_library', |
631 'sources': [ | 631 'sources': [ |
632 'common/safe_browsing/client_model.proto', | 632 'common/safe_browsing/client_model.proto', |
633 'common/safe_browsing/crx_info.proto', | 633 'common/safe_browsing/crx_info.proto', |
634 'common/safe_browsing/csd.proto', | 634 'common/safe_browsing/csd.proto' |
635 'common/safe_browsing/download_file_types.proto', | |
636 ], | 635 ], |
637 'variables': { | 636 'variables': { |
638 'proto_in_dir': 'common/safe_browsing', | 637 'proto_in_dir': 'common/safe_browsing', |
639 'proto_out_dir': 'chrome/common/safe_browsing', | 638 'proto_out_dir': 'chrome/common/safe_browsing', |
640 }, | 639 }, |
641 'includes': [ '../build/protoc.gypi' ], | 640 'includes': [ '../build/protoc.gypi' ], |
642 }, | 641 }, |
643 { | 642 { |
644 # GN version: //chrome/common:mojo_bindings | 643 # GN version: //chrome/common:mojo_bindings |
645 'target_name': 'common_mojo_bindings', | 644 'target_name': 'common_mojo_bindings', |
(...skipping 24 matching lines...) Expand all Loading... |
670 ], | 669 ], |
671 'dependencies': [ | 670 'dependencies': [ |
672 'installer_util', | 671 'installer_util', |
673 '../base/base.gyp:base', | 672 '../base/base.gyp:base', |
674 ], | 673 ], |
675 }, | 674 }, |
676 ], | 675 ], |
677 }], | 676 }], |
678 ], | 677 ], |
679 } | 678 } |
OLD | NEW |