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

Side by Side Diff: build/temp_gyp/googleurl.gyp

Issue 11833015: Make GURL 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 # TODO(mark): Upstream this file to googleurl. 5 # TODO(mark): Upstream this file to googleurl.
6 { 6 {
7 'variables': { 7 'variables': {
8 'chromium_code': 1, 8 'chromium_code': 1,
9 }, 9 },
10 'targets': [ 10 'targets': [
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 'GURL_DLL', 61 'GURL_DLL',
62 'GURL_IMPLEMENTATION=1', 62 'GURL_IMPLEMENTATION=1',
63 ], 63 ],
64 'direct_dependent_settings': { 64 'direct_dependent_settings': {
65 'defines': [ 65 'defines': [
66 'GURL_DLL', 66 'GURL_DLL',
67 ], 67 ],
68 }, 68 },
69 }], 69 }],
70 ], 70 ],
71 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
72 'msvs_disabled_warnings': [4267, ],
71 }, 73 },
72 { 74 {
73 'target_name': 'googleurl_unittests', 75 'target_name': 'googleurl_unittests',
74 'type': 'executable', 76 'type': 'executable',
75 'dependencies': [ 77 'dependencies': [
76 'googleurl', 78 'googleurl',
77 '../../base/base.gyp:base_i18n', 79 '../../base/base.gyp:base_i18n',
78 '../../base/base.gyp:run_all_unittests', 80 '../../base/base.gyp:run_all_unittests',
79 '../../testing/gtest.gyp:gtest', 81 '../../testing/gtest.gyp:gtest',
80 '../../third_party/icu/icu.gyp:icuuc', 82 '../../third_party/icu/icu.gyp:icuuc',
(...skipping 12 matching lines...) Expand all
93 ['os_posix==1 and OS!="mac" and OS!="ios"', { 95 ['os_posix==1 and OS!="mac" and OS!="ios"', {
94 'conditions': [ 96 'conditions': [
95 ['linux_use_tcmalloc==1', { 97 ['linux_use_tcmalloc==1', {
96 'dependencies': [ 98 'dependencies': [
97 '../../base/allocator/allocator.gyp:allocator', 99 '../../base/allocator/allocator.gyp:allocator',
98 ], 100 ],
99 }], 101 }],
100 ], 102 ],
101 }], 103 }],
102 ], 104 ],
105 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
106 'msvs_disabled_warnings': [4267, ],
103 }, 107 },
104 ], 108 ],
105 } 109 }
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