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

Side by Side Diff: third_party/WebKit/Source/bindings/scripts/scripts.gni

Issue 2648173002: Rename webmodule codegen bits to WebAgentAPI. (Closed)
Patch Set: Created 3 years, 11 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
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/core/core_idl_files.gni") 5 import("//third_party/WebKit/Source/core/core_idl_files.gni")
6 import("//third_party/WebKit/Source/modules/modules_idl_files.gni") 6 import("//third_party/WebKit/Source/modules/modules_idl_files.gni")
7 7
8 bindings_scripts_dir = get_path_info(".", "abspath") 8 bindings_scripts_dir = get_path_info(".", "abspath")
9 bindings_scripts_output_dir = "$root_gen_dir/blink/bindings/scripts" 9 bindings_scripts_output_dir = "$root_gen_dir/blink/bindings/scripts"
10 10
(...skipping 23 matching lines...) Expand all
34 # Blink IDL front end (ex-lexer/parser) 34 # Blink IDL front end (ex-lexer/parser)
35 "idl_definitions.py", 35 "idl_definitions.py",
36 "idl_reader.py", 36 "idl_reader.py",
37 "idl_types.py", 37 "idl_types.py",
38 "idl_validator.py", 38 "idl_validator.py",
39 "interface_dependency_resolver.py", 39 "interface_dependency_resolver.py",
40 40
41 # V8 code generator 41 # V8 code generator
42 "code_generator.py", 42 "code_generator.py",
43 "code_generator_v8.py", 43 "code_generator_v8.py",
44 "code_generator_web_module.py", 44 "code_generator_blink_api.py",
bashi 2017/01/25 23:57:14 alphabetical order
45 "v8_attributes.py", 45 "v8_attributes.py",
46 "v8_callback_function.py", 46 "v8_callback_function.py",
47 "v8_callback_interface.py", 47 "v8_callback_interface.py",
48 "v8_dictionary.py", 48 "v8_dictionary.py",
49 "v8_globals.py", 49 "v8_globals.py",
50 "v8_interface.py", 50 "v8_interface.py",
51 "v8_methods.py", 51 "v8_methods.py",
52 "v8_types.py", 52 "v8_types.py",
53 "v8_union.py", 53 "v8_union.py",
54 "v8_utilities.py", 54 "v8_utilities.py",
(...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after
368 args += [ rebase_path(output_idl_file, root_build_dir) ] 368 args += [ rebase_path(output_idl_file, root_build_dir) ]
369 output_idl_files += [ output_idl_file ] 369 output_idl_files += [ output_idl_file ]
370 output_header_files += 370 output_header_files +=
371 [ "$output_dir/${interface}${component}Constructors.h" ] 371 [ "$output_dir/${interface}${component}Constructors.h" ]
372 } 372 }
373 373
374 outputs = output_idl_files + output_header_files 374 outputs = output_idl_files + output_header_files
375 deps = invoker.deps 375 deps = invoker.deps
376 } 376 }
377 } 377 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698