| 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 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |