Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(70)

Side by Side Diff: Source/core/core.gni

Issue 890023004: Clean up core.gyp (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Patch for landing Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « Source/core/BUILD.gn ('k') | Source/core/core.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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(
(...skipping 15 matching lines...) Expand all
26 get_path_info(_gypi.core_testing_dictionary_idl_files, "abspath") 26 get_path_info(_gypi.core_testing_dictionary_idl_files, "abspath")
27 27
28 # 'partial interface', target (right side of) 'implements', and 28 # 'partial interface', target (right side of) 'implements', and
29 # interfaces with static bindings (in bindings/core/v8/) 29 # interfaces with static bindings (in bindings/core/v8/)
30 core_dependency_idl_files = 30 core_dependency_idl_files =
31 get_path_info(_gypi.core_dependency_idl_files, "abspath") 31 get_path_info(_gypi.core_dependency_idl_files, "abspath")
32 32
33 # Interfaces that inherit from Event, including Event itself. 33 # Interfaces that inherit from Event, including Event itself.
34 core_event_idl_files = get_path_info(_gypi.core_event_idl_files, "abspath") 34 core_event_idl_files = get_path_info(_gypi.core_event_idl_files, "abspath")
35 35
36 webcore_files = get_path_info(_gypi.webcore_files, "abspath") 36 webcore_non_rendering_files =
37 get_path_info(_gypi.webcore_non_rendering_files, "abspath")
38 webcore_rendering_files =
39 get_path_info(_gypi.webcore_rendering_files, "abspath")
37 webcore_dom_files = get_path_info(_gypi.webcore_dom_files, "abspath") 40 webcore_dom_files = get_path_info(_gypi.webcore_dom_files, "abspath")
38 webcore_html_files = get_path_info(_gypi.webcore_html_files, "abspath") 41 webcore_html_files = get_path_info(_gypi.webcore_html_files, "abspath")
39 webcore_svg_files = get_path_info(_gypi.webcore_svg_files, "abspath") 42 webcore_svg_files = get_path_info(_gypi.webcore_svg_files, "abspath")
40 webcore_testing_idl_files = 43 webcore_testing_idl_files =
41 get_path_info(_gypi.webcore_testing_idl_files, "abspath") 44 get_path_info(_gypi.webcore_testing_idl_files, "abspath")
42 webcore_testing_idl_with_modules_dependency_files = 45 webcore_testing_idl_with_modules_dependency_files =
43 get_path_info(_gypi.webcore_testing_idl_with_modules_dependency_files, "abspat h") 46 get_path_info(_gypi.webcore_testing_idl_with_modules_dependency_files, "abspat h")
44 webcore_testing_dependency_idl_files = 47 webcore_testing_dependency_idl_files =
45 get_path_info(_gypi.webcore_testing_dependency_idl_files, "abspath") 48 get_path_info(_gypi.webcore_testing_dependency_idl_files, "abspath")
46 generated_core_dictionary_files = 49 generated_core_dictionary_files =
47 get_path_info(_gypi.generated_core_dictionary_files, "abspath") 50 get_path_info(_gypi.generated_core_dictionary_files, "abspath")
48 generated_core_testing_dictionary_files = 51 generated_core_testing_dictionary_files =
49 get_path_info(_gypi.generated_core_testing_dictionary_files, "abspath") 52 get_path_info(_gypi.generated_core_testing_dictionary_files, "abspath")
50 generated_webcore_testing_idl_files = 53 generated_webcore_testing_idl_files =
51 get_path_info(_gypi.generated_webcore_testing_idl_files, "abspath") 54 get_path_info(_gypi.generated_webcore_testing_idl_files, "abspath")
52 webcore_testing_files = get_path_info(_gypi.webcore_testing_files, "abspath") 55 webcore_testing_files = get_path_info(_gypi.webcore_testing_files, "abspath")
53 core_unittest_files = get_path_info(_gypi.core_unittest_files, "abspath") 56 core_unittest_files = get_path_info(_gypi.core_unittest_files, "abspath")
OLDNEW
« no previous file with comments | « Source/core/BUILD.gn ('k') | Source/core/core.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698