| 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/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//third_party/WebKit/Source/config.gni") | 6 import("//third_party/WebKit/Source/config.gni") |
| 7 | 7 |
| 8 blink_core_output_dir = "$root_gen_dir/blink/core" | 8 blink_core_output_dir = "$root_gen_dir/blink/core" |
| 9 | 9 |
| 10 # This file sets core_config_add and core_config_remove lists of configs to | 10 # This file sets core_config_add and core_config_remove lists of configs to |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 core_event_idl_files = get_path_info(_gypi.core_event_idl_files, "abspath") | 78 core_event_idl_files = get_path_info(_gypi.core_event_idl_files, "abspath") |
| 79 | 79 |
| 80 # IDL files that only have typedefs/enums. | 80 # IDL files that only have typedefs/enums. |
| 81 core_typedefs_enums_only_idl_files = | 81 core_typedefs_enums_only_idl_files = |
| 82 get_path_info(_gypi.core_typedefs_enums_only_idl_files, "abspath") | 82 get_path_info(_gypi.core_typedefs_enums_only_idl_files, "abspath") |
| 83 | 83 |
| 84 webcore_non_rendering_files = | 84 webcore_non_rendering_files = |
| 85 get_path_info(_gypi.webcore_non_rendering_files, "abspath") | 85 get_path_info(_gypi.webcore_non_rendering_files, "abspath") |
| 86 webcore_rendering_files = | 86 webcore_rendering_files = |
| 87 get_path_info(_gypi.webcore_rendering_files, "abspath") | 87 get_path_info(_gypi.webcore_rendering_files, "abspath") |
| 88 webcore_html_files = get_path_info(_gypi.webcore_html_files, "abspath") |
| 89 webcore_svg_files = get_path_info(_gypi.webcore_svg_files, "abspath") |
| 88 webcore_testing_idl_files = | 90 webcore_testing_idl_files = |
| 89 get_path_info(_gypi.webcore_testing_idl_files, "abspath") | 91 get_path_info(_gypi.webcore_testing_idl_files, "abspath") |
| 90 webcore_testing_idl_with_modules_dependency_files = | 92 webcore_testing_idl_with_modules_dependency_files = |
| 91 get_path_info(_gypi.webcore_testing_idl_with_modules_dependency_files, | 93 get_path_info(_gypi.webcore_testing_idl_with_modules_dependency_files, |
| 92 "abspath") | 94 "abspath") |
| 93 webcore_testing_dependency_idl_files = | 95 webcore_testing_dependency_idl_files = |
| 94 get_path_info(_gypi.webcore_testing_dependency_idl_files, "abspath") | 96 get_path_info(_gypi.webcore_testing_dependency_idl_files, "abspath") |
| 95 generated_core_dictionary_files = | 97 generated_core_dictionary_files = |
| 96 get_path_info(_gypi.generated_core_dictionary_files, "abspath") | 98 get_path_info(_gypi.generated_core_dictionary_files, "abspath") |
| 97 generated_core_testing_dictionary_files = | 99 generated_core_testing_dictionary_files = |
| 98 get_path_info(_gypi.generated_core_testing_dictionary_files, "abspath") | 100 get_path_info(_gypi.generated_core_testing_dictionary_files, "abspath") |
| 99 generated_webcore_testing_idl_files = | 101 generated_webcore_testing_idl_files = |
| 100 get_path_info(_gypi.generated_webcore_testing_idl_files, "abspath") | 102 get_path_info(_gypi.generated_webcore_testing_idl_files, "abspath") |
| 101 webcore_testing_files = get_path_info(_gypi.webcore_testing_files, "abspath") | 103 webcore_testing_files = get_path_info(_gypi.webcore_testing_files, "abspath") |
| OLD | NEW |