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

Side by Side Diff: rlz/rlz.gyp

Issue 12299010: Make rlz build on Win64 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 10 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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 'variables': { 8 'variables': {
9 # Force rlz to use chrome's networking stack. 9 # Force rlz to use chrome's networking stack.
10 'force_rlz_use_chrome_net%': 1, 10 'force_rlz_use_chrome_net%': 1,
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 'defines': [ 90 'defines': [
91 'RLZ_NETWORK_IMPLEMENTATION_WIN_INET', 91 'RLZ_NETWORK_IMPLEMENTATION_WIN_INET',
92 ], 92 ],
93 'direct_dependent_settings': { 93 'direct_dependent_settings': {
94 'defines': [ 94 'defines': [
95 'RLZ_NETWORK_IMPLEMENTATION_WIN_INET', 95 'RLZ_NETWORK_IMPLEMENTATION_WIN_INET',
96 ], 96 ],
97 }, 97 },
98 }], 98 }],
99 ], 99 ],
100 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
101 'msvs_disabled_warnings': [ 4267, ],
100 }, 102 },
101 { 103 {
102 'target_name': 'rlz_unittests', 104 'target_name': 'rlz_unittests',
103 'type': 'executable', 105 'type': 'executable',
104 'dependencies': [ 106 'dependencies': [
105 ':rlz_lib', 107 ':rlz_lib',
106 '../base/base.gyp:base', 108 '../base/base.gyp:base',
107 '../base/base.gyp:base_prefs', 109 '../base/base.gyp:base_prefs',
108 '../testing/gmock.gyp:gmock', 110 '../testing/gmock.gyp:gmock',
109 '../testing/gtest.gyp:gtest', 111 '../testing/gtest.gyp:gtest',
(...skipping 12 matching lines...) Expand all
122 'test/rlz_unittest_main.cc', 124 'test/rlz_unittest_main.cc',
123 'win/lib/machine_deal_test.cc', 125 'win/lib/machine_deal_test.cc',
124 ], 126 ],
125 'conditions': [ 127 'conditions': [
126 ['rlz_use_chrome_net==1', { 128 ['rlz_use_chrome_net==1', {
127 'dependencies': [ 129 'dependencies': [
128 '../net/net.gyp:net_test_support', 130 '../net/net.gyp:net_test_support',
129 ], 131 ],
130 }], 132 }],
131 ], 133 ],
134 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
135 'msvs_disabled_warnings': [ 4267, ],
132 }, 136 },
133 { 137 {
134 'target_name': 'rlz_id', 138 'target_name': 'rlz_id',
135 'type': 'executable', 139 'type': 'executable',
136 'dependencies': [ 140 'dependencies': [
137 ':rlz_lib', 141 ':rlz_lib',
138 ], 142 ],
139 'sources': [ 143 'sources': [
140 'examples/rlz_id.cc', 144 'examples/rlz_id.cc',
141 ], 145 ],
(...skipping 11 matching lines...) Expand all
153 ], 157 ],
154 'dependencies': [ 158 'dependencies': [
155 ':rlz_lib', 159 ':rlz_lib',
156 '../third_party/zlib/zlib.gyp:zlib', 160 '../third_party/zlib/zlib.gyp:zlib',
157 ], 161 ],
158 }, 162 },
159 ], 163 ],
160 }], 164 }],
161 ], 165 ],
162 } 166 }
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