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

Side by Side Diff: build/common.gypi

Issue 5014001: Reverted because openssl_helper needs to build even on non-openssl builds... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years, 1 month 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 | « base/base.gypi ('k') | chrome/chrome_browser.gypi » ('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) 2010 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2010 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 # IMPORTANT: 5 # IMPORTANT:
6 # Please don't directly include this file if you are building via gyp_chromium, 6 # Please don't directly include this file if you are building via gyp_chromium,
7 # since gyp_chromium is automatically forcing its inclusion. 7 # since gyp_chromium is automatically forcing its inclusion.
8 { 8 {
9 'variables': { 9 'variables': {
10 # .gyp files or targets should set chromium_code to 1 if they build 10 # .gyp files or targets should set chromium_code to 1 if they build
(...skipping 635 matching lines...) Expand 10 before | Expand all | Expand 10 after
646 'AdditionalOptions': ['/we4389'], 646 'AdditionalOptions': ['/we4389'],
647 }, 647 },
648 }, 648 },
649 }], 649 }],
650 ['chromeos!=1', { 650 ['chromeos!=1', {
651 'sources/': [ ['exclude', '_chromeos\\.cc$'] ] 651 'sources/': [ ['exclude', '_chromeos\\.cc$'] ]
652 }], 652 }],
653 ['toolkit_views==0', { 653 ['toolkit_views==0', {
654 'sources/': [ ['exclude', '_views\\.cc$'] ] 654 'sources/': [ ['exclude', '_views\\.cc$'] ]
655 }], 655 }],
656 ['use_openssl==1', {
657 'sources/': [
658 ['exclude', '_nss\\.(cc|c)$'],
659 ['exclude', '/nss/'],
660 ['exclude', '(/|_|^)nss_[^/]*\\.(cc|c)$'],
661 ],
662 }, {
663 'sources/': [
664 ['exclude', '_openssl\\.cc$'],
665 ['exclude', '(/|_|^)openssl_[^/]*\\.cc$'],
666 ],
667 }],
668 ], 656 ],
669 }], 657 }],
670 ], # target_conditions for 'target_defaults' 658 ], # target_conditions for 'target_defaults'
671 'default_configuration': 'Debug', 659 'default_configuration': 'Debug',
672 'configurations': { 660 'configurations': {
673 # VCLinkerTool LinkIncremental values below: 661 # VCLinkerTool LinkIncremental values below:
674 # 0 == default 662 # 0 == default
675 # 1 == /INCREMENTAL:NO 663 # 1 == /INCREMENTAL:NO
676 # 2 == /INCREMENTAL 664 # 2 == /INCREMENTAL
677 # Debug links incremental, Release does not. 665 # Debug links incremental, Release does not.
(...skipping 864 matching lines...) Expand 10 before | Expand all | Expand 10 after
1542 # and therefore SYMROOT, needs to be set at the project level. 1530 # and therefore SYMROOT, needs to be set at the project level.
1543 'SYMROOT': '<(DEPTH)/xcodebuild', 1531 'SYMROOT': '<(DEPTH)/xcodebuild',
1544 }, 1532 },
1545 } 1533 }
1546 1534
1547 # Local Variables: 1535 # Local Variables:
1548 # tab-width:2 1536 # tab-width:2
1549 # indent-tabs-mode:nil 1537 # indent-tabs-mode:nil
1550 # End: 1538 # End:
1551 # vim: set expandtab tabstop=2 shiftwidth=2: 1539 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « base/base.gypi ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698