| 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 318 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 329 "$bindings_core_v8_output_dir/V8InternalRuntimeFlags.h", | 329 "$bindings_core_v8_output_dir/V8InternalRuntimeFlags.h", |
| 330 "$bindings_core_v8_output_dir/V8LayerRect.cpp", | 330 "$bindings_core_v8_output_dir/V8LayerRect.cpp", |
| 331 "$bindings_core_v8_output_dir/V8LayerRect.h", | 331 "$bindings_core_v8_output_dir/V8LayerRect.h", |
| 332 "$bindings_core_v8_output_dir/V8LayerRectList.cpp", | 332 "$bindings_core_v8_output_dir/V8LayerRectList.cpp", |
| 333 "$bindings_core_v8_output_dir/V8LayerRectList.h", | 333 "$bindings_core_v8_output_dir/V8LayerRectList.h", |
| 334 ] | 334 ] |
| 335 } | 335 } |
| 336 | 336 |
| 337 # GYP version: //third_party/WebKit/Source/core/core.gyp:webcore_generated | 337 # GYP version: //third_party/WebKit/Source/core/core.gyp:webcore_generated |
| 338 source_set("core_generated") { | 338 source_set("core_generated") { |
| 339 sources = bindings_v8_files | 339 sources = bindings_core_v8_files |
| 340 # These files include all the .cpp files generated from the .idl files | 340 # These files include all the .cpp files generated from the .idl files |
| 341 # in webcore_files. | 341 # in webcore_files. |
| 342 sources += bindings_core_generated_aggregate_files | 342 sources += bindings_core_generated_aggregate_files |
| 343 | 343 |
| 344 sources += [ | 344 sources += [ |
| 345 # Additional .cpp files for HashTools.h | 345 # Additional .cpp files for HashTools.h |
| 346 "$blink_core_output_dir/CSSPropertyNames.cpp", | 346 "$blink_core_output_dir/CSSPropertyNames.cpp", |
| 347 "$blink_core_output_dir/CSSValueKeywords.cpp", | 347 "$blink_core_output_dir/CSSValueKeywords.cpp", |
| 348 | 348 |
| 349 # Additional .cpp files from make_core_generated actions. | 349 # Additional .cpp files from make_core_generated actions. |
| (...skipping 584 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 934 } | 934 } |
| 935 | 935 |
| 936 # One-off scripts -------------------------------------------------------------- | 936 # One-off scripts -------------------------------------------------------------- |
| 937 | 937 |
| 938 # "generatePrivateScript" in make_core_generated from GYP. | 938 # "generatePrivateScript" in make_core_generated from GYP. |
| 939 action("make_core_generated_private_script") { | 939 action("make_core_generated_private_script") { |
| 940 visibility = ":make_core_generated" | 940 visibility = ":make_core_generated" |
| 941 script = "../build/scripts/make_private_script_source.py" | 941 script = "../build/scripts/make_private_script_source.py" |
| 942 | 942 |
| 943 source_prereqs = [ | 943 source_prereqs = [ |
| 944 "../bindings/v8/PrivateScriptRunner.js", | 944 "../bindings/core/v8/PrivateScriptRunner.js", |
| 945 ] | 945 ] |
| 946 outputs = [ | 946 outputs = [ |
| 947 "$blink_core_output_dir/PrivateScriptSources.h", | 947 "$blink_core_output_dir/PrivateScriptSources.h", |
| 948 ] | 948 ] |
| 949 | 949 |
| 950 args = rebase_path(outputs, root_build_dir) | 950 args = rebase_path(outputs, root_build_dir) |
| 951 args += rebase_path(source_prereqs, root_build_dir) | 951 args += rebase_path(source_prereqs, root_build_dir) |
| 952 | 952 |
| 953 deps = make_core_generated_deps | 953 deps = make_core_generated_deps |
| 954 } | 954 } |
| (...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1107 "$blink_core_output_dir/{{source_name_part}}.h", | 1107 "$blink_core_output_dir/{{source_name_part}}.h", |
| 1108 ] | 1108 ] |
| 1109 args = [ | 1109 args = [ |
| 1110 "{{source}}", | 1110 "{{source}}", |
| 1111 rel_blink_core_gen_dir, | 1111 rel_blink_core_gen_dir, |
| 1112 bison_exe, | 1112 bison_exe, |
| 1113 ] | 1113 ] |
| 1114 | 1114 |
| 1115 deps = make_core_generated_deps | 1115 deps = make_core_generated_deps |
| 1116 } | 1116 } |
| OLD | NEW |