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

Side by Side Diff: third_party/WebKit/Source/bindings/modules/BUILD.gn

Issue 1439973004: [PoC] Reformat all BUILD.gn and *.gni files with new gn. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@gn-sort-deps
Patch Set: Synchronize with new version of gn patch Created 5 years, 1 month 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
OLDNEW
1 # Copyright 2014 Tfe Chromium Authors. All rights reserved. 1 # Copyright 2014 Tfe 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/modules/modules.gni") 5 import("//third_party/WebKit/Source/modules/modules.gni")
6 import("//third_party/WebKit/Source/bindings/core/core.gni") 6 import("//third_party/WebKit/Source/bindings/core/core.gni")
7 import("//third_party/WebKit/Source/bindings/modules/modules.gni") 7 import("//third_party/WebKit/Source/bindings/modules/modules.gni")
8 import("//third_party/WebKit/Source/bindings/scripts/scripts.gni") 8 import("//third_party/WebKit/Source/bindings/scripts/scripts.gni")
9 import("//third_party/WebKit/Source/build/scripts/scripts.gni") 9 import("//third_party/WebKit/Source/build/scripts/scripts.gni")
10 10
11 visibility = [ "//third_party/WebKit/*" ] 11 visibility = [ "//third_party/WebKit/*" ]
12 12
13 # GYP version: Source/bindings/modules/generated.gyp:bindings_modules_generated 13 # GYP version: Source/bindings/modules/generated.gyp:bindings_modules_generated
14 group("bindings_modules_generated") { 14 group("bindings_modules_generated") {
15 public_deps = [ 15 public_deps = [
16 ":modules_bindings_generated_event_interfaces",
17 ":bindings_modules_generated_event_modules_factory", 16 ":bindings_modules_generated_event_modules_factory",
18 ":bindings_modules_generated_event_modules_names", 17 ":bindings_modules_generated_event_modules_names",
19 ":bindings_modules_generated_event_target_modules_names", 18 ":bindings_modules_generated_event_target_modules_names",
19 ":modules_bindings_generated_event_interfaces",
20 ] 20 ]
21 } 21 }
22 22
23 # GYP version: event_interfaces action in bindings_modules_generated 23 # GYP version: event_interfaces action in bindings_modules_generated
24 generate_event_interfaces("modules_bindings_generated_event_interfaces") { 24 generate_event_interfaces("modules_bindings_generated_event_interfaces") {
25 sources = modules_event_idl_files 25 sources = modules_event_idl_files
26 output_file = "EventModulesInterfaces.in" 26 output_file = "EventModulesInterfaces.in"
27 suffix = "Modules" 27 suffix = "Modules"
28 } 28 }
29 29
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 sources = modules_idl_files 134 sources = modules_idl_files
135 global_objects_file = 135 global_objects_file =
136 "$bindings_modules_output_dir/GlobalObjectsModules.pickle" 136 "$bindings_modules_output_dir/GlobalObjectsModules.pickle"
137 interfaces = modules_global_constructors_original_interfaces 137 interfaces = modules_global_constructors_original_interfaces
138 component = "Modules" 138 component = "Modules"
139 output_dir = blink_modules_output_dir 139 output_dir = blink_modules_output_dir
140 deps = [ 140 deps = [
141 ":modules_global_objects", 141 ":modules_global_objects",
142 ] 142 ]
143 } 143 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698