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

Side by Side Diff: chrome/chrome_common.gypi

Issue 335053002: Add GN build for some chrome common, chrome net, and resources targets. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix sorting Created 6 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « chrome/browser/ui/webui/omnibox/BUILD.gn ('k') | chrome/chrome_resources.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 '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 564 matching lines...) Expand 10 before | Expand all | Expand 10 after
575 '<(template_input_path)', 575 '<(template_input_path)',
576 '<@(_outputs)', 576 '<@(_outputs)',
577 ], 577 ],
578 'message': 'Generating version information', 578 'message': 'Generating version information',
579 }, 579 },
580 ], 580 ],
581 }], 581 }],
582 ], 582 ],
583 }, 583 },
584 { 584 {
585 # GN version: //chrome/commoon/net:net
585 'target_name': 'common_net', 586 'target_name': 'common_net',
586 'type': 'static_library', 587 'type': 'static_library',
587 'sources': [ 588 'sources': [
588 'common/net/net_error_info.cc', 589 'common/net/net_error_info.cc',
589 'common/net/net_error_info.h', 590 'common/net/net_error_info.h',
590 'common/net/net_resource_provider.cc', 591 'common/net/net_resource_provider.cc',
591 'common/net/net_resource_provider.h', 592 'common/net/net_resource_provider.h',
592 'common/net/predictor_common.h', 593 'common/net/predictor_common.h',
593 'common/net/url_util.cc', 594 'common/net/url_util.cc',
594 'common/net/url_util.h', 595 'common/net/url_util.h',
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
657 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 658 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
658 'msvs_disabled_warnings': [4267, ], 659 'msvs_disabled_warnings': [4267, ],
659 }, 660 },
660 ], 661 ],
661 ], 662 ],
662 }, 663 },
663 { 664 {
664 # Protobuf compiler / generator for the safebrowsing client 665 # Protobuf compiler / generator for the safebrowsing client
665 # model proto and the client-side detection (csd) request 666 # model proto and the client-side detection (csd) request
666 # protocol buffer. 667 # protocol buffer.
668
669 # GN version: //chrome/common/safe_browsing:proto
667 'target_name': 'safe_browsing_proto', 670 'target_name': 'safe_browsing_proto',
668 'type': 'static_library', 671 'type': 'static_library',
669 'sources': [ 672 'sources': [
670 'common/safe_browsing/client_model.proto', 673 'common/safe_browsing/client_model.proto',
671 'common/safe_browsing/crx_info.proto', 674 'common/safe_browsing/crx_info.proto',
672 'common/safe_browsing/csd.proto' 675 'common/safe_browsing/csd.proto'
673 ], 676 ],
674 'variables': { 677 'variables': {
675 'proto_in_dir': 'common/safe_browsing', 678 'proto_in_dir': 'common/safe_browsing',
676 'proto_out_dir': 'chrome/common/safe_browsing', 679 'proto_out_dir': 'chrome/common/safe_browsing',
677 }, 680 },
678 'includes': [ '../build/protoc.gypi' ], 681 'includes': [ '../build/protoc.gypi' ],
679 }, 682 },
680 { 683 {
681 # Protobuf compiler / generator for UMA (User Metrics Analysis). 684 # Protobuf compiler / generator for UMA (User Metrics Analysis).
685
686 # GN version: //chrome/common/metrics/proto:proto
682 'target_name': 'metrics_proto', 687 'target_name': 'metrics_proto',
683 'type': 'static_library', 688 'type': 'static_library',
684 'sources': [ 689 'sources': [
685 'common/metrics/proto/chrome_experiments.proto', 690 'common/metrics/proto/chrome_experiments.proto',
686 ], 691 ],
687 'variables': { 692 'variables': {
688 'proto_in_dir': 'common/metrics/proto', 693 'proto_in_dir': 'common/metrics/proto',
689 'proto_out_dir': 'chrome/common/metrics/proto', 694 'proto_out_dir': 'chrome/common/metrics/proto',
690 }, 695 },
691 'includes': [ '../build/protoc.gypi' ], 696 'includes': [ '../build/protoc.gypi' ],
692 }, 697 },
693 ], 698 ],
694 } 699 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/webui/omnibox/BUILD.gn ('k') | chrome/chrome_resources.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698