| Index: Source/bindings/bindings.gni
|
| diff --git a/Source/bindings/bindings.gni b/Source/bindings/bindings.gni
|
| index 8f97aec4873c4d3f3702685d8d808a70d49acd48..3bc58a247b92089d9fe55c73a7d956e8ae78146b 100644
|
| --- a/Source/bindings/bindings.gni
|
| +++ b/Source/bindings/bindings.gni
|
| @@ -20,25 +20,25 @@ bindings_core_v8_custom_files = get_path_info(
|
| bindings_core_v8_custom_dir),
|
| "abspath")
|
|
|
| -# v8/v8.gypi -------------------------------------------------------------------
|
| +# core/v8/v8.gypi --------------------------------------------------------------
|
|
|
| # These paths are relative to v8.
|
| -_v8_gypi = exec_script(
|
| +_core_v8_gypi = exec_script(
|
| "//build/gypi_to_gn.py",
|
| - [ rebase_path("v8/v8.gypi") ],
|
| + [ rebase_path("core/v8/v8.gypi") ],
|
| "scope",
|
| - [ "v8/v8.gypi" ])
|
| + [ "core/v8/v8.gypi" ])
|
|
|
| -bindings_v8_dir = get_path_info("v8", "abspath")
|
| +bindings_core_v8_dir = get_path_info("core/v8", "abspath")
|
|
|
| # v8.gypi references includes a reference to the custom_files list. Manually
|
| # expand that.
|
| -_rel_bindings_v8_files = _v8_gypi.bindings_v8_files
|
| -_rel_bindings_v8_files -= [ "<@(bindings_core_v8_custom_files)" ]
|
| -bindings_v8_files = get_path_info(
|
| - rebase_path(_rel_bindings_v8_files, ".", "v8"),
|
| +_rel_bindings_core_v8_files = _core_v8_gypi.bindings_core_v8_files
|
| +_rel_bindings_core_v8_files -= [ "<@(bindings_core_v8_custom_files)" ]
|
| +bindings_core_v8_files = get_path_info(
|
| + rebase_path(_rel_bindings_core_v8_files, ".", "core/v8"),
|
| "abspath")
|
| -bindings_v8_files += bindings_core_v8_custom_files
|
| +bindings_core_v8_files += bindings_core_v8_custom_files
|
|
|
| # bindings.gypi ----------------------------------------------------------------
|
|
|
| @@ -47,5 +47,5 @@ blink_output_dir = "$root_gen_dir/blink"
|
| bindings_output_dir = "$root_gen_dir/blink/bindings"
|
|
|
| bindings_unittest_files = get_path_info(
|
| - rebase_path(_v8_gypi.bindings_v8_unittest_files, ".", bindings_v8_dir),
|
| + rebase_path(_core_v8_gypi.bindings_core_v8_unittest_files, ".", bindings_core_v8_dir),
|
| "abspath")
|
|
|