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

Side by Side Diff: chrome/BUILD.gn

Issue 1930073002: content_shell fixes for gn (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Adding shell.rc Created 4 years, 7 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 | content/shell/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/buildflag_header.gni") 5 import("//build/buildflag_header.gni")
6 import("//build/config/chrome_build.gni") 6 import("//build/config/chrome_build.gni")
7 import("//build/config/compiler/compiler.gni") 7 import("//build/config/compiler/compiler.gni")
8 import("//build/config/features.gni") 8 import("//build/config/features.gni")
9 import("//build/config/locales.gni") 9 import("//build/config/locales.gni")
10 import("//build/config/sanitizers/sanitizers.gni") 10 import("//build/config/sanitizers/sanitizers.gni")
(...skipping 311 matching lines...) Expand 10 before | Expand all | Expand 10 after
322 "//crypto", 322 "//crypto",
323 "//net:net_resources", 323 "//net:net_resources",
324 "//third_party/wtl", 324 "//third_party/wtl",
325 "//ui/views", 325 "//ui/views",
326 ] 326 ]
327 if (current_cpu == "x86") { 327 if (current_cpu == "x86") {
328 # TODO(GYP) bug 512861: Lots of VCLinkerTool stuff on Windows. 328 # TODO(GYP) bug 512861: Lots of VCLinkerTool stuff on Windows.
329 #deps += [ 'chrome_user32_delay_imports' ] TODO(GYP) 329 #deps += [ 'chrome_user32_delay_imports' ] TODO(GYP)
330 } 330 }
331 331
332 if (!is_component_build) { 332 # This is a large module that can't do incremental linking in some cases.
333 # This is a large module that can't do incremental linking in some cases . 333 configs -= [ "//build/config/win:default_incremental_linking" ]
334 configs -= [ "//build/config/win:default_incremental_linking" ] 334 configs +=
335 configs += 335 [ "//build/config/win:default_large_module_incremental_linking" ]
336 [ "//build/config/win:default_large_module_incremental_linking" ]
337 }
338 } 336 }
339 337
340 if (use_aura) { 338 if (use_aura) {
341 deps += [ "//ui/compositor" ] 339 deps += [ "//ui/compositor" ]
342 } 340 }
343 341
344 if (is_multi_dll_chrome) { 342 if (is_multi_dll_chrome) {
345 defines += [ "CHROME_MULTIPLE_DLL_BROWSER" ] 343 defines += [ "CHROME_MULTIPLE_DLL_BROWSER" ]
346 deps += [ "//content/public/app:browser" ] 344 deps += [ "//content/public/app:browser" ]
347 } else { 345 } else {
(...skipping 745 matching lines...) Expand 10 before | Expand all | Expand 10 after
1093 "//chrome/app/theme/$branding_path_component/product_logo_48.png", 1091 "//chrome/app/theme/$branding_path_component/product_logo_48.png",
1094 "//chrome/tools/build/linux/chrome-wrapper", 1092 "//chrome/tools/build/linux/chrome-wrapper",
1095 "//third_party/xdg-utils/scripts/xdg-mime", 1093 "//third_party/xdg-utils/scripts/xdg-mime",
1096 "//third_party/xdg-utils/scripts/xdg-settings", 1094 "//third_party/xdg-utils/scripts/xdg-settings",
1097 ] 1095 ]
1098 outputs = [ 1096 outputs = [
1099 "$root_out_dir/{{source_file_part}}", 1097 "$root_out_dir/{{source_file_part}}",
1100 ] 1098 ]
1101 } 1099 }
1102 } 1100 }
OLDNEW
« no previous file with comments | « no previous file | content/shell/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698