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

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

Issue 454773002: Blink-in-JS: Support private scripts in partial interfaces (PrivateScriptRunner part) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 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
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/idl.gni") 5 import("//third_party/WebKit/Source/bindings/idl.gni")
6 import("//third_party/WebKit/Source/core/core.gni") 6 import("//third_party/WebKit/Source/core/core.gni")
7 7
8 # Don't actually read idl.gypi since that just defines variables in terms of 8 # Don't actually read idl.gypi since that just defines variables in terms of
9 # others, which gypi_to_gn doesn't handle. 9 # others, which gypi_to_gn doesn't handle.
10 10
11 # IDL file lists; see: http://www.chromium.org/developers/web-idl-interfaces 11 # IDL file lists; see: http://www.chromium.org/developers/web-idl-interfaces
12 # Interface IDL files: generate individual bindings (includes testing) 12 # Interface IDL files: generate individual bindings (includes testing)
13 core_interface_idl_files = 13 core_interface_idl_files =
14 core_idl_files + 14 core_idl_files +
15 webcore_testing_idl_files + 15 webcore_testing_idl_files +
16 generated_webcore_testing_idl_files 16 generated_webcore_testing_idl_files
17 17
18 # Static IDL files 18 # Static IDL files
19 core_static_interface_idl_files = 19 core_static_interface_idl_files =
20 core_idl_files + 20 core_idl_files +
21 webcore_testing_idl_files 21 webcore_testing_idl_files
22 core_static_dependency_idl_files = 22 core_static_dependency_idl_files =
23 core_dependency_idl_files 23 core_dependency_idl_files +
24 webcore_testing_dependency_idl_files
24 25
25 # Generated IDL files 26 # Generated IDL files
26 core_generated_interface_idl_files = 27 core_generated_interface_idl_files =
27 generated_webcore_testing_idl_files # interfaces 28 generated_webcore_testing_idl_files # interfaces
28 core_generated_dependency_idl_files = 29 core_generated_dependency_idl_files =
29 # FIXME: Generate separate core_global_constructors_idls 30 # FIXME: Generate separate core_global_constructors_idls
30 # http://crbug.com/358074 31 # http://crbug.com/358074
31 generated_global_constructors_idl_files # partial interfaces 32 generated_global_constructors_idl_files # partial interfaces
32 33
33 # Static IDL files / Generated IDL files 34 # Static IDL files / Generated IDL files
(...skipping 14 matching lines...) Expand all
48 core_generated_interface_idl_files + 49 core_generated_interface_idl_files +
49 core_generated_dependency_idl_files 50 core_generated_dependency_idl_files
50 51
51 # Dependency IDL files: don't generate individual bindings, but do process 52 # Dependency IDL files: don't generate individual bindings, but do process
52 # in IDL dependency computation, and count as build dependencies 53 # in IDL dependency computation, and count as build dependencies
53 # 'core_dependency_idl_files' is already used in Source/core, so avoid 54 # 'core_dependency_idl_files' is already used in Source/core, so avoid
54 # collision 55 # collision
55 core_all_dependency_idl_files = 56 core_all_dependency_idl_files =
56 core_static_dependency_idl_files + 57 core_static_dependency_idl_files +
57 core_generated_dependency_idl_files 58 core_generated_dependency_idl_files
OLDNEW
« no previous file with comments | « LayoutTests/fast/dom/private_script_unittest-expected.txt ('k') | Source/bindings/core/idl.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698