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

Side by Side Diff: Source/bindings/BUILD.gn

Issue 329993006: Implement main blink target in GN. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « Source/BUILD.gn ('k') | Source/bindings/core/BUILD.gn » ('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 import("//third_party/WebKit/Source/bindings/bindings.gni") 5 import("//third_party/WebKit/Source/bindings/bindings.gni")
6 import("//third_party/WebKit/Source/build/scripts/scripts.gni") 6 import("//third_party/WebKit/Source/build/scripts/scripts.gni")
7 import("//third_party/WebKit/Source/core/core.gni") 7 import("//third_party/WebKit/Source/core/core.gni")
8 import("//third_party/WebKit/Source/modules/modules.gni") 8 import("//third_party/WebKit/Source/modules/modules.gni")
9 9
10 visibility = "//third_party/WebKit/*"
11
10 # Main interface IDL files (excluding dependencies and testing) 12 # Main interface IDL files (excluding dependencies and testing)
11 # are included as properties on global objects, and in aggregate bindings. 13 # are included as properties on global objects, and in aggregate bindings.
12 main_interface_idl_files = core_idl_files + modules_idl_files 14 main_interface_idl_files = core_idl_files + modules_idl_files
13 15
14 main_interface_idl_files_list = "$target_gen_dir/main_interface_idl_files.tmp" 16 main_interface_idl_files_list = "$target_gen_dir/main_interface_idl_files.tmp"
15 write_file(main_interface_idl_files_list, 17 write_file(main_interface_idl_files_list,
16 rebase_path(main_interface_idl_files, root_build_dir)) 18 rebase_path(main_interface_idl_files, root_build_dir))
17 19
18 generated_global_constructors_idl_files = [ 20 generated_global_constructors_idl_files = [
19 "$blink_output_dir/WindowConstructors.idl", 21 "$blink_output_dir/WindowConstructors.idl",
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 deps = [ ":global_objects" ] 96 deps = [ ":global_objects" ]
95 } 97 }
96 98
97 # GYP version: generated.gyp:generated_idls 99 # GYP version: generated.gyp:generated_idls
98 group("generated_idls") { 100 group("generated_idls") {
99 deps = [ 101 deps = [
100 ":global_constructors_idls", 102 ":global_constructors_idls",
101 "//third_party/WebKit/Source/core:generated_testing_idls", 103 "//third_party/WebKit/Source/core:generated_testing_idls",
102 ] 104 ]
103 } 105 }
OLDNEW
« no previous file with comments | « Source/BUILD.gn ('k') | Source/bindings/core/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698