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

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

Issue 2841443005: [Bindings] Create and use V8 context snapshots (Closed)
Patch Set: Rebase Created 3 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
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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 "EventTargetModules.h", 59 "EventTargetModules.h",
60 "ModulesExport.h", 60 "ModulesExport.h",
61 "ModulesInitializer.cpp", 61 "ModulesInitializer.cpp",
62 "ModulesInitializer.h", 62 "ModulesInitializer.h",
63 ] 63 ]
64 64
65 # Compile sources generated by module_names script. 65 # Compile sources generated by module_names script.
66 sources += get_target_outputs(":module_names") 66 sources += get_target_outputs(":module_names")
67 67
68 sources += bindings_modules_v8_files 68 sources += bindings_modules_v8_files
69 sources += rebase_path(
70 [ bindings_generated_v8_context_snapshot_external_references_file ],
71 ".",
72 "//")
69 73
70 configs += [ 74 configs += [
71 ":modules_implementation", 75 ":modules_implementation",
72 76
73 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 77 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
74 "//build/config/compiler:no_size_t_to_int_warning", 78 "//build/config/compiler:no_size_t_to_int_warning",
75 "//third_party/WebKit/Source:config", 79 "//third_party/WebKit/Source:config",
76 "//third_party/WebKit/Source:non_test_config", 80 "//third_party/WebKit/Source:non_test_config",
77 "//third_party/WebKit/Source:inside_blink", 81 "//third_party/WebKit/Source:inside_blink",
78 "//third_party/WebKit/Source/core:blink_core_pch", 82 "//third_party/WebKit/Source/core:blink_core_pch",
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after
328 ":modules", 332 ":modules",
329 ":modules_testing", 333 ":modules_testing",
330 "//skia", 334 "//skia",
331 "//testing/gmock", 335 "//testing/gmock",
332 "//testing/gtest", 336 "//testing/gtest",
333 "//third_party/WebKit/Source/core", 337 "//third_party/WebKit/Source/core",
334 "//third_party/WebKit/Source/platform/wtf", 338 "//third_party/WebKit/Source/platform/wtf",
335 "//v8", 339 "//v8",
336 ] 340 ]
337 } 341 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698