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

Side by Side Diff: content/shell/BUILD.gn

Issue 416183002: Fix gn generate for content_shell on Windows (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 4 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 | « 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 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("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//tools/grit/grit_rule.gni") 7 import("//tools/grit/grit_rule.gni")
8 import("//tools/grit/repack.gni") 8 import("//tools/grit/repack.gni")
9 if (is_android) { 9 if (is_android) {
10 import("//build/config/android/config.gni") 10 import("//build/config/android/config.gni")
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after
228 "//url", 228 "//url",
229 "//v8", 229 "//v8",
230 "//webkit:resources", 230 "//webkit:resources",
231 "//webkit/browser:storage", 231 "//webkit/browser:storage",
232 #'content.gyp:content_app_both', TODO(GYP) 232 #'content.gyp:content_app_both', TODO(GYP)
233 #'copy_test_netscape_plugin', TODO(GYP) 233 #'copy_test_netscape_plugin', TODO(GYP)
234 #'../third_party/WebKit/public/blink.gyp:blink_test_support', TODO(GYP) 234 #'../third_party/WebKit/public/blink.gyp:blink_test_support', TODO(GYP)
235 ] 235 ]
236 236
237 if (is_win) { 237 if (is_win) {
238 configs -= [ "//build/config/win:console" ]
239 configs += [ "//build/config/win:windowed" ]
240 deps += [ "//webkit/resources" ]
241 #'LinkIncremental': '<(msvs_large_module_debug_link_mode)', TODO(GYP) 238 #'LinkIncremental': '<(msvs_large_module_debug_link_mode)', TODO(GYP)
242 239
243 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 240 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
244 cflags = [ "/wd4267" ] 241 cflags = [ "/wd4267" ]
245 } 242 }
246 243
247 if (is_linux) { 244 if (is_linux) {
248 configs += [ "//build/config/linux:fontconfig" ] 245 configs += [ "//build/config/linux:fontconfig" ]
249 } 246 }
250 247
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
459 "//tools/imagediff($host_toolchain)", 456 "//tools/imagediff($host_toolchain)",
460 ] 457 ]
461 } 458 }
462 } 459 }
463 460
464 } else { 461 } else {
465 # Content shell not ready, make a dummpy to make dependency management easier. 462 # Content shell not ready, make a dummpy to make dependency management easier.
466 group("content_shell") { 463 group("content_shell") {
467 } 464 }
468 } 465 }
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