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("//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/*" | 10 visibility = [ "//third_party/WebKit/*" ] |
11 | 11 |
12 # Main interface IDL files (excluding dependencies and testing) | 12 # Main interface IDL files (excluding dependencies and testing) |
13 # are included as properties on global objects, and in aggregate bindings. | 13 # are included as properties on global objects, and in aggregate bindings. |
14 main_interface_idl_files = core_idl_files + modules_idl_files | 14 main_interface_idl_files = core_idl_files + modules_idl_files |
15 | 15 |
16 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" |
17 write_file(main_interface_idl_files_list, | 17 write_file(main_interface_idl_files_list, |
18 rebase_path(main_interface_idl_files, root_build_dir)) | 18 rebase_path(main_interface_idl_files, root_build_dir)) |
19 | 19 |
20 generated_global_constructors_idl_files = [ | 20 generated_global_constructors_idl_files = [ |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 deps = [ ":global_objects" ] | 96 deps = [ ":global_objects" ] |
97 } | 97 } |
98 | 98 |
99 # GYP version: generated.gyp:generated_idls | 99 # GYP version: generated.gyp:generated_idls |
100 group("generated_idls") { | 100 group("generated_idls") { |
101 deps = [ | 101 deps = [ |
102 ":global_constructors_idls", | 102 ":global_constructors_idls", |
103 "//third_party/WebKit/Source/core:generated_testing_idls", | 103 "//third_party/WebKit/Source/core:generated_testing_idls", |
104 ] | 104 ] |
105 } | 105 } |
OLD | NEW |