OLD | NEW |
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 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
166 "//v8", | 166 "//v8", |
167 ] | 167 ] |
168 deps = [ | 168 deps = [ |
169 ":dom", | 169 ":dom", |
170 ":html", | 170 ":html", |
171 ":remaining", | 171 ":remaining", |
172 ":rendering", | 172 ":rendering", |
173 ":svg", | 173 ":svg", |
174 ] | 174 ] |
175 | 175 |
| 176 if (is_win && is_debug) { |
| 177 # Incremental linking doesn't work on this target in debug mode, even |
| 178 # with symbol_level=1. |
| 179 configs -= [ "//build/config/win:default_incremental_linking" ] |
| 180 configs += [ "//build/config/win:no_incremental_linking" ] |
| 181 } |
| 182 |
176 public_configs = [ | 183 public_configs = [ |
177 ":core_include_dirs", | 184 ":core_include_dirs", |
178 ":link_core_modules_separately", | 185 ":link_core_modules_separately", |
179 ] | 186 ] |
180 } | 187 } |
181 | 188 |
182 # GYP version: //third_party/WebKit/Source/core/core.gyp:webcore_dom | 189 # GYP version: //third_party/WebKit/Source/core/core.gyp:webcore_dom |
183 source_set("dom") { | 190 source_set("dom") { |
184 sources = rebase_path(webcore_dom_files, ".", "//") | 191 sources = rebase_path(webcore_dom_files, ".", "//") |
185 | 192 |
(...skipping 838 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1024 "$blink_core_output_dir/{{source_name_part}}.h", | 1031 "$blink_core_output_dir/{{source_name_part}}.h", |
1025 ] | 1032 ] |
1026 args = [ | 1033 args = [ |
1027 "{{source}}", | 1034 "{{source}}", |
1028 rel_blink_core_gen_dir, | 1035 rel_blink_core_gen_dir, |
1029 bison_exe, | 1036 bison_exe, |
1030 ] | 1037 ] |
1031 | 1038 |
1032 deps = make_core_generated_deps | 1039 deps = make_core_generated_deps |
1033 } | 1040 } |
OLD | NEW |