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

Unified Diff: Source/modules/BUILD.gn

Issue 426063010: IndexedDB: Fixed threading bugs with use of AtomicStrings. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Commented names and removed bison build rule 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 side-by-side diff with in-line comments
Download patch
Index: Source/modules/BUILD.gn
diff --git a/Source/modules/BUILD.gn b/Source/modules/BUILD.gn
index d3a3c987aee1de9b237ad921a4c089b282aba916..ea88a430a1ba427d77c3ffe65e5422bd8974970d 100644
--- a/Source/modules/BUILD.gn
+++ b/Source/modules/BUILD.gn
@@ -84,10 +84,29 @@ source_set("modules_testing") {
]
}
-# GYP version: WebKit/Source/modules/modules.gyp:make_modules_generated
+action("module_names") {
+ script = "../build/scripts/make_names.py"
+
+ module_names_in = "indexeddb/IndexedDBNames.in"
+ inputs = make_names_files + [ module_names_in ]
+
+ outputs = [
+ "$blink_modules_output_dir/IndexedDBNames.cpp",
+ "$blink_modules_output_dir/IndexedDBNames.h",
+ ]
+
+ args = [
+ rebase_path(module_names_in, root_build_dir),
+ "--output_dir",
+ rebase_path(blink_modules_output_dir, root_build_dir),
+ ]
+}
+
+# GYP version: WebKit/Source/modules/modules_generated.gyp:make_modules_generated
group("make_modules_generated") {
deps = [
"//third_party/WebKit/Source/core:core_event_interfaces",
"//third_party/WebKit/Source/bindings/modules:bindings_modules_generated",
+ ":module_names",
]
}
« no previous file with comments | « Source/core/Init.h ('k') | Source/modules/InitModules.h » ('j') | Source/modules/InitModules.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698