| 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 blink_core_output_dir = "$root_gen_dir/blink/core" | 5 blink_core_output_dir = "$root_gen_dir/blink/core" |
| 6 | 6 |
| 7 # This file is the GN version of core.gypi. We rebase most paths to be absolute | 7 # This file is the GN version of core.gypi. We rebase most paths to be absolute |
| 8 # so these lists can be used by BUILD files in different directories without | 8 # so these lists can be used by BUILD files in different directories without |
| 9 # worrying about the base directory. | 9 # worrying about the base directory. |
| 10 _gypi = exec_script( | 10 _gypi = exec_script( |
| 11 "//build/gypi_to_gn.py", | 11 "//build/gypi_to_gn.py", |
| 12 [ rebase_path("core.gypi"), | 12 [ rebase_path("core.gypi"), |
| 13 "--replace=<(SHARED_INTERMEDIATE_DIR)=$root_gen_dir", | 13 "--replace=<(SHARED_INTERMEDIATE_DIR)=$root_gen_dir", |
| 14 "--replace=<(blink_core_output_dir)=$blink_core_output_dir"], | 14 "--replace=<(blink_core_output_dir)=$blink_core_output_dir"], |
| 15 "scope", | 15 "scope", |
| 16 [ "core.gypi" ]) | 16 [ "core.gypi" ]) |
| 17 | 17 |
| 18 # Files for which bindings (.cpp and .h files) will be generated. | 18 # Files for which bindings (.cpp and .h files) will be generated. |
| 19 core_idl_files = get_path_info(_gypi.core_idl_files, "abspath") | 19 core_idl_files = get_path_info(_gypi.core_idl_files, "abspath") |
| 20 | 20 |
| 21 core_testing_dictionary_idl_files = get_path_info(_gypi.core_testing_dictionary_
idl_files, "abspath") |
| 22 |
| 21 # 'partial interface', target (right side of) 'implements', and | 23 # 'partial interface', target (right side of) 'implements', and |
| 22 # interfaces with static bindings (in bindings/core/v8/) | 24 # interfaces with static bindings (in bindings/core/v8/) |
| 23 core_dependency_idl_files = | 25 core_dependency_idl_files = |
| 24 get_path_info(_gypi.core_dependency_idl_files, "abspath") | 26 get_path_info(_gypi.core_dependency_idl_files, "abspath") |
| 25 | 27 |
| 26 # Interfaces that inherit from Event, including Event itself. | 28 # Interfaces that inherit from Event, including Event itself. |
| 27 core_event_idl_files = get_path_info(_gypi.core_event_idl_files, "abspath") | 29 core_event_idl_files = get_path_info(_gypi.core_event_idl_files, "abspath") |
| 28 | 30 |
| 29 webcore_files = get_path_info(_gypi.webcore_files, "abspath") | 31 webcore_files = get_path_info(_gypi.webcore_files, "abspath") |
| 30 webcore_dom_files = get_path_info(_gypi.webcore_dom_files, "abspath") | 32 webcore_dom_files = get_path_info(_gypi.webcore_dom_files, "abspath") |
| 31 webcore_html_files = get_path_info(_gypi.webcore_html_files, "abspath") | 33 webcore_html_files = get_path_info(_gypi.webcore_html_files, "abspath") |
| 32 webcore_svg_files = get_path_info(_gypi.webcore_svg_files, "abspath") | 34 webcore_svg_files = get_path_info(_gypi.webcore_svg_files, "abspath") |
| 33 webcore_testing_idl_files = get_path_info(_gypi.webcore_testing_idl_files, "absp
ath") | 35 webcore_testing_idl_files = get_path_info(_gypi.webcore_testing_idl_files, "absp
ath") |
| 34 webcore_testing_dependency_idl_files = | 36 webcore_testing_dependency_idl_files = |
| 35 get_path_info(_gypi.webcore_testing_dependency_idl_files, "abspath") | 37 get_path_info(_gypi.webcore_testing_dependency_idl_files, "abspath") |
| 38 generated_core_testing_dictionary_files = |
| 39 get_path_info(_gypi.generated_core_testing_dictionary_files, "abspath") |
| 36 generated_webcore_testing_idl_files = | 40 generated_webcore_testing_idl_files = |
| 37 get_path_info(_gypi.generated_webcore_testing_idl_files, "abspath") | 41 get_path_info(_gypi.generated_webcore_testing_idl_files, "abspath") |
| 38 webcore_testing_files = get_path_info(_gypi.webcore_testing_files, "abspath") | 42 webcore_testing_files = get_path_info(_gypi.webcore_testing_files, "abspath") + |
| 43 generated_core_testing_dictionary_files |
| 39 core_unittest_files = get_path_info(_gypi.core_unittest_files, "abspath") | 44 core_unittest_files = get_path_info(_gypi.core_unittest_files, "abspath") |
| OLD | NEW |