Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(506)

Side by Side Diff: chrome/chrome_common.gypi

Issue 1917653002: Re-Re-land: Add download_file_types.proto with ascii->binary conversion, as a resource. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add a wrapper to change python args, for GYP and GN Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 and the client-side detection (csd) request 625 # model proto, the client-side detection (csd) request
626 # protocol buffer. 626 # proto, and the download file types proto.
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',
635 ], 636 ],
636 'variables': { 637 'variables': {
637 'proto_in_dir': 'common/safe_browsing', 638 'proto_in_dir': 'common/safe_browsing',
638 'proto_out_dir': 'chrome/common/safe_browsing', 639 'proto_out_dir': 'chrome/common/safe_browsing',
639 }, 640 },
640 'includes': [ '../build/protoc.gypi' ], 641 'includes': [ '../build/protoc.gypi' ],
641 }, 642 },
642 { 643 {
643 # GN version: //chrome/common:mojo_bindings 644 # GN version: //chrome/common:mojo_bindings
644 'target_name': 'common_mojo_bindings', 645 'target_name': 'common_mojo_bindings',
(...skipping 24 matching lines...) Expand all
669 ], 670 ],
670 'dependencies': [ 671 'dependencies': [
671 'installer_util', 672 'installer_util',
672 '../base/base.gyp:base', 673 '../base/base.gyp:base',
673 ], 674 ],
674 }, 675 },
675 ], 676 ],
676 }], 677 }],
677 ], 678 ],
678 } 679 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698