| OLD | NEW |
| (Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 # This file is gn GN version of core.gypi. Note that all file lists are |
| 6 # relative to the source root. |
| 7 _gypi = exec_script( |
| 8 "//build/gypi_to_gn.py", |
| 9 [ rebase_path("core.gypi"), |
| 10 "--replace=<(SHARED_INTERMEDIATE_DIR)=$root_gen_dir" ], |
| 11 "scope", |
| 12 [ "core.gypi" ]) |
| 13 |
| 14 # Files for which bindings (.cpp and .h files) will be generated |
| 15 core_idl_files = rebase_path(_gypi.core_idl_files, "//") |
| 16 |
| 17 # 'partial interface', target (right side of) 'implements', and |
| 18 # interfaces with static bindings (in bindings/v8/) |
| 19 core_dependency_idl_files = rebase_path(_gypi.core_dependency_idl_files, "//") |
| 20 |
| 21 # Interfaces that inherit from Event, including Event itself. |
| 22 core_event_idl_files = rebase_path(_gypi.core_event_idl_files, "//") |
| 23 |
| 24 webcore_files = rebase_path(_gypi.webcore_files, "//") |
| 25 webcore_dom_files = rebase_path(_gypi.webcore_dom_files, "//") |
| 26 webcore_html_files = rebase_path(_gypi.webcore_html_files, "//") |
| 27 webcore_svg_files = rebase_path(_gypi.webcore_svg_files, "//") |
| 28 webcore_testing_idl_files = rebase_path(_gypi.webcore_testing_idl_files, "//") |
| 29 generated_webcore_testing_idl_files = |
| 30 rebase_path(_gypi.generated_webcore_testing_idl_files, "//") |
| 31 webcore_testing_files = rebase_path(_gypi.webcore_testing_files, "//") |
| 32 core_unittest_files = rebase_path(_gypi.core_unittest_files, "//") |
| OLD | NEW |