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

Side by Side Diff: third_party/tcmalloc/tcmalloc.gyp

Issue 159362: Adding two new windows configuration types:... (Closed) Base URL: svn://chrome-svn.corp.google.com/chrome/trunk/src/
Patch Set: Created 11 years, 5 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
« build/common.gypi ('K') | « chrome/installer/mini_installer.gyp ('k') | 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) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 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 'includes': [ 6 'includes': [
7 '../../build/common.gypi', 7 '../../build/common.gypi',
8 ], 8 ],
9 'targets': [ 9 'targets': [
10 { 10 {
11 'target_name': 'tcmalloc', 11 'target_name': 'tcmalloc',
12 'type': '<(library)', 12 'type': '<(library)',
13 'msvs_guid': 'C564F145-9172-42C3-BFCB-60FDEA124321', 13 'msvs_guid': 'C564F145-9172-42C3-BFCB-60FDEA124321',
14 'dependencies': [ 14 'dependencies': [
15 'libcmt', 15 'libcmt',
16 ], 16 ],
17 'include_dirs': [ 17 'include_dirs': [
18 '.', 18 '.',
19 'tcmalloc/src/windows', 19 'tcmalloc/src/windows',
20 'tcmalloc/src/base', 20 'tcmalloc/src/base',
21 'tcmalloc/src', 21 'tcmalloc/src',
22 ], 22 ],
23 'direct_dependent_settings': { 23 'direct_dependent_settings': {
24 'msvs_settings': { 24 'configurations': {
25 'VCLinkerTool': { 25 # TODO(bradnelson): find a way to make this more graceful in gyp.
Mike Belshe 2009/08/03 17:06:57 What is ungraceful? That we have duplicated lines
26 'IgnoreDefaultLibraryNames': ['libcmtd.lib', 'libcmt.lib'], 26 'Debug': {
27 'AdditionalDependencies': [ 27 'msvs_settings': {
28 '<(SHARED_INTERMEDIATE_DIR)/tcmalloc/libcmt.lib' 28 'VCLinkerTool': {
29 ], 29 'IgnoreDefaultLibraryNames': ['libcmtd.lib', 'libcmt.lib'],
30 'AdditionalDependencies': [
31 '<(SHARED_INTERMEDIATE_DIR)/tcmalloc/libcmt.lib'
32 ],
33 },
34 },
35 },
36 'Release': {
37 'msvs_settings': {
38 'VCLinkerTool': {
39 'IgnoreDefaultLibraryNames': ['libcmtd.lib', 'libcmt.lib'],
40 'AdditionalDependencies': [
41 '<(SHARED_INTERMEDIATE_DIR)/tcmalloc/libcmt.lib'
42 ],
43 },
44 },
30 }, 45 },
31 }, 46 },
32 }, 47 },
33 'sources': [ 48 'sources': [
34 'tcmalloc/src/base/dynamic_annotations.cc', 49 'tcmalloc/src/base/dynamic_annotations.cc',
35 'tcmalloc/src/base/logging.cc', 50 'tcmalloc/src/base/logging.cc',
36 'tcmalloc/src/base/low_level_alloc.cc', 51 'tcmalloc/src/base/low_level_alloc.cc',
37 'tcmalloc/src/base/spinlock.cc', 52 'tcmalloc/src/base/spinlock.cc',
38 'tcmalloc/src/base/sysinfo.cc', 53 'tcmalloc/src/base/sysinfo.cc',
39 'tcmalloc/src/central_freelist.cc', 54 'tcmalloc/src/central_freelist.cc',
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 'action': [ 103 'action': [
89 './prep_libc.sh', 104 './prep_libc.sh',
90 '$(VCInstallDir)lib', 105 '$(VCInstallDir)lib',
91 '<(SHARED_INTERMEDIATE_DIR)/tcmalloc', 106 '<(SHARED_INTERMEDIATE_DIR)/tcmalloc',
92 ], 107 ],
93 }, 108 },
94 ], 109 ],
95 }, 110 },
96 ], 111 ],
97 } 112 }
OLDNEW
« build/common.gypi ('K') | « chrome/installer/mini_installer.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698