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

Side by Side Diff: third_party/WebKit/Source/core/BUILD.gn

Issue 2095433002: Set maxilksize to 4 GB and enable for blink_core (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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 | « build/config/win/BUILD.gn ('k') | 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/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//third_party/WebKit/Source/bindings/bindings.gni") 7 import("//third_party/WebKit/Source/bindings/bindings.gni")
8 import("//third_party/WebKit/Source/bindings/core/v8/generated.gni") 8 import("//third_party/WebKit/Source/bindings/core/v8/generated.gni")
9 import("//third_party/WebKit/Source/bindings/modules/modules.gni") 9 import("//third_party/WebKit/Source/bindings/modules/modules.gni")
10 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni") 10 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni")
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 ":dom", 165 ":dom",
166 ":html", 166 ":html",
167 ":remaining", 167 ":remaining",
168 ":rendering", 168 ":rendering",
169 ":svg", 169 ":svg",
170 ] 170 ]
171 171
172 if (is_win && is_debug && is_component_build) { 172 if (is_win && is_debug && is_component_build) {
173 # Incremental linking doesn't work on this target in debug mode, even 173 # Incremental linking doesn't work on this target in debug mode, even
174 # with symbol_level=1. 174 # with symbol_level=1.
175 configs -= [ "//build/config/win:default_incremental_linking" ] 175 #configs -= [ "//build/config/win:default_incremental_linking" ]
176 configs += [ "//build/config/win:no_incremental_linking" ] 176 #configs += [ "//build/config/win:no_incremental_linking" ]
177 } 177 }
178 178
179 public_configs = [ ":core_include_dirs" ] 179 public_configs = [ ":core_include_dirs" ]
180 } 180 }
181 181
182 # GYP version: //third_party/WebKit/Source/core/core.gyp:webcore_dom 182 # GYP version: //third_party/WebKit/Source/core/core.gyp:webcore_dom
183 source_set("dom") { 183 source_set("dom") {
184 sources = rebase_path(webcore_dom_files, ".", "//") 184 sources = rebase_path(webcore_dom_files, ".", "//")
185 185
186 configs -= core_config_remove 186 configs -= core_config_remove
(...skipping 890 matching lines...) Expand 10 before | Expand all | Expand 10 after
1077 "$blink_core_output_dir/{{source_name_part}}.h", 1077 "$blink_core_output_dir/{{source_name_part}}.h",
1078 ] 1078 ]
1079 args = [ 1079 args = [
1080 "{{source}}", 1080 "{{source}}",
1081 rel_blink_core_gen_dir, 1081 rel_blink_core_gen_dir,
1082 bison_exe, 1082 bison_exe,
1083 ] 1083 ]
1084 1084
1085 deps = make_core_generated_deps 1085 deps = make_core_generated_deps
1086 } 1086 }
OLDNEW
« no previous file with comments | « build/config/win/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698