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

Side by Side Diff: chrome/chrome_common.gypi

Issue 12034004: Make common_net build on Win64 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 11 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 | « no previous file | no next file » | 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) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 604 matching lines...) Expand 10 before | Expand all | Expand 10 after
615 'sources!': [ 615 'sources!': [
616 'common/net/x509_certificate_model_nss.cc', 616 'common/net/x509_certificate_model_nss.cc',
617 ], 617 ],
618 }, 618 },
619 { # else !use_openssl: remove the unneeded files 619 { # else !use_openssl: remove the unneeded files
620 'sources!': [ 620 'sources!': [
621 'common/net/x509_certificate_model_openssl.cc', 621 'common/net/x509_certificate_model_openssl.cc',
622 ], 622 ],
623 }, 623 },
624 ], 624 ],
625 ['OS=="win"', {
626 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
627 'msvs_disabled_warnings': [4267, ],
628 },
629 ],
625 ], 630 ],
626 }, 631 },
627 { 632 {
628 # Protobuf compiler / generator for the safebrowsing client 633 # Protobuf compiler / generator for the safebrowsing client
629 # model proto and the client-side detection (csd) request 634 # model proto and the client-side detection (csd) request
630 # protocol buffer. 635 # protocol buffer.
631 'target_name': 'safe_browsing_proto', 636 'target_name': 'safe_browsing_proto',
632 'type': 'static_library', 637 'type': 'static_library',
633 'sources': [ 638 'sources': [
634 'common/safe_browsing/client_model.proto', 639 'common/safe_browsing/client_model.proto',
(...skipping 19 matching lines...) Expand all
654 'common/metrics/proto/user_action_event.proto', 659 'common/metrics/proto/user_action_event.proto',
655 ], 660 ],
656 'variables': { 661 'variables': {
657 'proto_in_dir': 'common/metrics/proto', 662 'proto_in_dir': 'common/metrics/proto',
658 'proto_out_dir': 'chrome/common/metrics/proto', 663 'proto_out_dir': 'chrome/common/metrics/proto',
659 }, 664 },
660 'includes': [ '../build/protoc.gypi' ], 665 'includes': [ '../build/protoc.gypi' ],
661 }, 666 },
662 ], 667 ],
663 } 668 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698