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

Unified Diff: Source/modules/modules_generated.gyp

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
« Source/modules/InitModules.cpp ('K') | « Source/modules/modules.gypi ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/modules_generated.gyp
diff --git a/Source/modules/modules_generated.gyp b/Source/modules/modules_generated.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..8eec91963272a0f3763dc962321045e8f11b31c5
--- /dev/null
+++ b/Source/modules/modules_generated.gyp
@@ -0,0 +1,45 @@
+# Copyright 2014 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+{
+ 'includes': [
+ 'modules_generated.gypi',
+ '../bindings/scripts/scripts.gypi',
+ '../build/features.gypi',
+ '../build/scripts/scripts.gypi',
+ ],
+ 'targets': [
+ {
+ # GN version: //third_party/WebKit/Source/modules:make_modules_generated
+ 'target_name': 'make_modules_generated',
+ 'type': 'none',
+ 'hard_dependency': 1,
+ 'dependencies': [
+ #'generated_testing_idls',
+ '../core/core_generated.gyp:core_event_interfaces',
cmumford 2014/08/12 19:52:34 I just noticed core_event_interfaces - I don't bel
abarth-chromium 2014/08/12 20:33:00 This seems unlikely to be necessary.
+ '../bindings/modules/generated.gyp:modules_event_generated',
+ '../config.gyp:config',
+ ],
+ 'actions': [
+ {
+ 'action_name': 'IndexedDBNames',
+ 'inputs': [
+ '<@(make_names_files)',
+ 'indexeddb/IndexedDBNames.in',
+ ],
+ 'outputs': [
+ '<(blink_modules_output_dir)/IndexedDBNames.cpp',
+ '<(blink_modules_output_dir)/IndexedDBNames.h',
+ ],
+ 'action': [
+ 'python',
+ '../build/scripts/make_names.py',
+ 'indexeddb/IndexedDBNames.in',
+ '--output_dir',
+ '<(blink_modules_output_dir)',
+ ],
+ },
+ ],
+ },
+ ],
+}
« Source/modules/InitModules.cpp ('K') | « Source/modules/modules.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698