| 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/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 import("//third_party/WebKit/Source/bindings/bindings.gni") | 6 import("//third_party/WebKit/Source/bindings/bindings.gni") |
| 7 import("//third_party/WebKit/Source/bindings/core/v8/generated.gni") | 7 import("//third_party/WebKit/Source/bindings/core/v8/generated.gni") |
| 8 import("//third_party/WebKit/Source/bindings/modules/modules.gni") | 8 import("//third_party/WebKit/Source/bindings/modules/modules.gni") |
| 9 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni") | 9 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni") |
| 10 import("//third_party/WebKit/Source/bindings/scripts/scripts.gni") | 10 import("//third_party/WebKit/Source/bindings/scripts/scripts.gni") |
| (...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 212 # 'msvs_shard': 5, | 212 # 'msvs_shard': 5, |
| 213 #}], | 213 #}], |
| 214 } | 214 } |
| 215 | 215 |
| 216 # GYP version: //third_party/WebKit/Source/core/core.gyp:webcore_remaining | 216 # GYP version: //third_party/WebKit/Source/core/core.gyp:webcore_remaining |
| 217 source_set("remaining") { | 217 source_set("remaining") { |
| 218 # This is currently a mashup of "webcore_rendering" and "webcore_remaining" | 218 # This is currently a mashup of "webcore_rendering" and "webcore_remaining" |
| 219 # in GYP. The file list variable is the same and then GYP filters on wether | 219 # in GYP. The file list variable is the same and then GYP filters on wether |
| 220 # the path starts with "rendering/" or not. We should tweak the .gypis a bit | 220 # the path starts with "rendering/" or not. We should tweak the .gypis a bit |
| 221 # to separate out the rendering files. | 221 # to separate out the rendering files. |
| 222 sources = rebase_path(webcore_files, ".", "//") | 222 sources = rebase_path(webcore_non_rendering_files, ".", "//") |
| 223 sources += rebase_path(webcore_rendering_files, ".", "//") |
| 223 | 224 |
| 224 configs -= core_config_remove | 225 configs -= core_config_remove |
| 225 configs += core_config_add | 226 configs += core_config_add |
| 226 | 227 |
| 227 cflags = [] | 228 cflags = [] |
| 228 libs = [] | 229 libs = [] |
| 229 | 230 |
| 230 deps = [ | 231 deps = [ |
| 231 ":prerequisites", | 232 ":prerequisites", |
| 232 ] | 233 ] |
| (...skipping 804 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1037 "$blink_core_output_dir/{{source_name_part}}.h", | 1038 "$blink_core_output_dir/{{source_name_part}}.h", |
| 1038 ] | 1039 ] |
| 1039 args = [ | 1040 args = [ |
| 1040 "{{source}}", | 1041 "{{source}}", |
| 1041 rel_blink_core_gen_dir, | 1042 rel_blink_core_gen_dir, |
| 1042 bison_exe, | 1043 bison_exe, |
| 1043 ] | 1044 ] |
| 1044 | 1045 |
| 1045 deps = make_core_generated_deps | 1046 deps = make_core_generated_deps |
| 1046 } | 1047 } |
| OLD | NEW |