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 | |
183 public_configs = [ | 176 public_configs = [ |
184 ":core_include_dirs", | 177 ":core_include_dirs", |
185 ":link_core_modules_separately", | 178 ":link_core_modules_separately", |
186 ] | 179 ] |
187 } | 180 } |
188 | 181 |
189 # GYP version: //third_party/WebKit/Source/core/core.gyp:webcore_dom | 182 # GYP version: //third_party/WebKit/Source/core/core.gyp:webcore_dom |
190 source_set("dom") { | 183 source_set("dom") { |
191 sources = rebase_path(webcore_dom_files, ".", "//") | 184 sources = rebase_path(webcore_dom_files, ".", "//") |
192 | 185 |
(...skipping 838 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1031 "$blink_core_output_dir/{{source_name_part}}.h", | 1024 "$blink_core_output_dir/{{source_name_part}}.h", |
1032 ] | 1025 ] |
1033 args = [ | 1026 args = [ |
1034 "{{source}}", | 1027 "{{source}}", |
1035 rel_blink_core_gen_dir, | 1028 rel_blink_core_gen_dir, |
1036 bison_exe, | 1029 bison_exe, |
1037 ] | 1030 ] |
1038 | 1031 |
1039 deps = make_core_generated_deps | 1032 deps = make_core_generated_deps |
1040 } | 1033 } |
OLD | NEW |