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

Side by Side 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 unified diff | Download patch
« Source/modules/InitModules.cpp ('K') | « Source/modules/modules.gypi ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4 {
5 'includes': [
6 'modules_generated.gypi',
7 '../bindings/scripts/scripts.gypi',
8 '../build/features.gypi',
9 '../build/scripts/scripts.gypi',
10 ],
11 'targets': [
12 {
13 # GN version: //third_party/WebKit/Source/modules:make_modules_generated
14 'target_name': 'make_modules_generated',
15 'type': 'none',
16 'hard_dependency': 1,
17 'dependencies': [
18 #'generated_testing_idls',
19 '../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.
20 '../bindings/modules/generated.gyp:modules_event_generated',
21 '../config.gyp:config',
22 ],
23 'actions': [
24 {
25 'action_name': 'IndexedDBNames',
26 'inputs': [
27 '<@(make_names_files)',
28 'indexeddb/IndexedDBNames.in',
29 ],
30 'outputs': [
31 '<(blink_modules_output_dir)/IndexedDBNames.cpp',
32 '<(blink_modules_output_dir)/IndexedDBNames.h',
33 ],
34 'action': [
35 'python',
36 '../build/scripts/make_names.py',
37 'indexeddb/IndexedDBNames.in',
38 '--output_dir',
39 '<(blink_modules_output_dir)',
40 ],
41 },
42 ],
43 },
44 ],
45 }
OLDNEW
« 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