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

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

Issue 2841443005: [Bindings] Create and use V8 context snapshots (Closed)
Patch Set: Work for some comments Created 3 years, 7 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("//build/split_static_library.gni") 5 import("//build/split_static_library.gni")
6 import("//build/config/chromecast_build.gni") 6 import("//build/config/chromecast_build.gni")
7 import("//third_party/WebKit/Source/bindings/bindings.gni") 7 import("//third_party/WebKit/Source/bindings/bindings.gni")
8 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni") 8 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni")
9 import("//third_party/WebKit/Source/bindings/modules/v8/v8.gni") 9 import("//third_party/WebKit/Source/bindings/modules/v8/v8.gni")
10 import("//third_party/WebKit/Source/build/scripts/scripts.gni") 10 import("//third_party/WebKit/Source/build/scripts/scripts.gni")
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 63
64 sources += generated_modules_dictionary_files 64 sources += generated_modules_dictionary_files
65 sources += generated_modules_callback_function_files 65 sources += generated_modules_callback_function_files
66 66
67 # Compile sources generated by module_names script. 67 # Compile sources generated by module_names script.
68 sources += get_target_outputs(":module_names") 68 sources += get_target_outputs(":module_names")
69 69
70 sources += bindings_modules_v8_files 70 sources += bindings_modules_v8_files
71 sources += rebase_path(bindings_modules_generated_interface_files, ".", "//") 71 sources += rebase_path(bindings_modules_generated_interface_files, ".", "//")
72 sources += rebase_path(bindings_modules_generated_union_type_files, ".", "//") 72 sources += rebase_path(bindings_modules_generated_union_type_files, ".", "//")
73 sources += rebase_path(bindings_generated_reference_files, ".", "//")
73 sources += 74 sources +=
74 rebase_path(bindings_modules_generated_partial_interface_files, ".", "//") 75 rebase_path(bindings_modules_generated_partial_interface_files, ".", "//")
75 sources += 76 sources +=
76 rebase_path([ bindings_modules_generated_init_partial_interfaces_file ], 77 rebase_path([ bindings_modules_generated_init_partial_interfaces_file ],
77 ".", 78 ".",
78 "//") 79 "//")
79 80
80 configs += [ 81 configs += [
81 ":modules_implementation", 82 ":modules_implementation",
82 83
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
328 ":modules_testing", 329 ":modules_testing",
329 "//components/payments/mojom:mojom_blink", 330 "//components/payments/mojom:mojom_blink",
330 "//skia", 331 "//skia",
331 "//testing/gmock", 332 "//testing/gmock",
332 "//testing/gtest", 333 "//testing/gtest",
333 "//third_party/WebKit/Source/core", 334 "//third_party/WebKit/Source/core",
334 "//third_party/WebKit/Source/platform/wtf", 335 "//third_party/WebKit/Source/platform/wtf",
335 "//v8", 336 "//v8",
336 ] 337 ]
337 } 338 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698