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

Side by Side Diff: jingle/BUILD.gn

Issue 941863002: Add more size_t -> int warning fixes for the win x64 GN build. (Closed) Base URL: http://chromium.googlesource.com/chromium/src.git@fix_win64
Patch Set: remove mojo changes Created 5 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
« no previous file with comments | « gpu/BUILD.gn ('k') | media/audio/BUILD.gn » ('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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 import("//build/config/features.gni") 5 import("//build/config/features.gni")
6 import("//testing/test.gni") 6 import("//testing/test.gni")
7 7
8 if (enable_webrtc || !is_android) { 8 if (enable_webrtc || !is_android) {
9 jingle_includes = exec_script("//build/gypi_to_gn.py", 9 jingle_includes = exec_script("//build/gypi_to_gn.py",
10 [ rebase_path("jingle.gypi") ], 10 [ rebase_path("jingle.gypi") ],
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 if (is_android) { 143 if (is_android) {
144 sources -= [ 144 sources -= [
145 # TODO(jrg): 145 # TODO(jrg):
146 # EXPECT_DEBUG_DEATH() uses features not enabled. 146 # EXPECT_DEBUG_DEATH() uses features not enabled.
147 # Should we -std=c++0x or -std=gnu++0x? 147 # Should we -std=c++0x or -std=gnu++0x?
148 "glue/chrome_async_socket_unittest.cc", 148 "glue/chrome_async_socket_unittest.cc",
149 "notifier/base/xmpp_connection_unittest.cc", 149 "notifier/base/xmpp_connection_unittest.cc",
150 ] 150 ]
151 } 151 }
152 152
153 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
154
153 public_deps = [ 155 public_deps = [
154 "//third_party/libjingle", 156 "//third_party/libjingle",
155 ] 157 ]
156 deps = [ 158 deps = [
157 ":jingle_glue", 159 ":jingle_glue",
158 ":notifier", 160 ":notifier",
159 ":notifier_test_util", 161 ":notifier_test_util",
160 "//base", 162 "//base",
161 "//base/test:run_all_unittests", 163 "//base/test:run_all_unittests",
162 "//base/test:test_support", 164 "//base/test:test_support",
(...skipping 24 matching lines...) Expand all
187 ] 189 ]
188 deps = [ 190 deps = [
189 "//base", 191 "//base",
190 "//net", 192 "//net",
191 ] 193 ]
192 } 194 }
193 195
194 source_set("notifier_test_util") { 196 source_set("notifier_test_util") {
195 } 197 }
196 } 198 }
OLDNEW
« no previous file with comments | « gpu/BUILD.gn ('k') | media/audio/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698