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

Side by Side Diff: Source/modules/modules.gyp

Issue 426063010: IndexedDB: Fixed threading bugs with use of AtomicStrings. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Switched to proper code-generated static strings like Core creates them. 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
OLDNEW
1 # 1 #
2 # Copyright (C) 2013 Google Inc. All rights reserved. 2 # Copyright (C) 2013 Google Inc. All rights reserved.
3 # 3 #
4 # Redistribution and use in source and binary forms, with or without 4 # Redistribution and use in source and binary forms, with or without
5 # modification, are permitted provided that the following conditions are 5 # modification, are permitted provided that the following conditions are
6 # met: 6 # met:
7 # 7 #
8 # * Redistributions of source code must retain the above copyright 8 # * Redistributions of source code must retain the above copyright
9 # notice, this list of conditions and the following disclaimer. 9 # notice, this list of conditions and the following disclaimer.
10 # * Redistributions in binary form must reproduce the above 10 # * Redistributions in binary form must reproduce the above
(...skipping 25 matching lines...) Expand all
36 ], 36 ],
37 'targets': [{ 37 'targets': [{
38 # GN version: //third_party/WebKit/Source/modules:modules 38 # GN version: //third_party/WebKit/Source/modules:modules
39 'target_name': 'modules', 39 'target_name': 'modules',
40 'type': 'static_library', 40 'type': 'static_library',
41 'dependencies': [ 41 'dependencies': [
42 '<(DEPTH)/third_party/zlib/zlib.gyp:zlib', 42 '<(DEPTH)/third_party/zlib/zlib.gyp:zlib',
43 '<(DEPTH)/third_party/sqlite/sqlite.gyp:sqlite', 43 '<(DEPTH)/third_party/sqlite/sqlite.gyp:sqlite',
44 '../config.gyp:config', 44 '../config.gyp:config',
45 '../core/core.gyp:webcore', 45 '../core/core.gyp:webcore',
46 'make_modules_generated', 46 'modules_generated.gyp:make_modules_generated',
47 ], 47 ],
48 'defines': [ 48 'defines': [
49 'BLINK_IMPLEMENTATION=1', 49 'BLINK_IMPLEMENTATION=1',
50 'INSIDE_BLINK', 50 'INSIDE_BLINK',
51 ], 51 ],
52 'sources': [ 52 'sources': [
53 '<@(modules_files)', 53 '<@(modules_files)',
54 '<@(bindings_modules_v8_files)', 54 '<@(bindings_modules_v8_files)',
55 '<@(bindings_modules_v8_generated_aggregate_files)', 55 '<@(bindings_modules_v8_generated_aggregate_files)',
56 ], 56 ],
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 '../core/core.gyp:webcore', 120 '../core/core.gyp:webcore',
121 ], 121 ],
122 'defines': [ 122 'defines': [
123 'BLINK_IMPLEMENTATION=1', 123 'BLINK_IMPLEMENTATION=1',
124 'INSIDE_BLINK', 124 'INSIDE_BLINK',
125 ], 125 ],
126 'sources': [ 126 'sources': [
127 '<@(modules_testing_files)', 127 '<@(modules_testing_files)',
128 ], 128 ],
129 129
130 },
131 {
132 # FIXME: should be in modules_generated.gyp
133 # GN version: //third_party/WebKit/Source/modules:make_modules_generated
134 'target_name': 'make_modules_generated',
135 'type': 'none',
136 'hard_dependency': 1,
137 'dependencies': [
138 #'generated_testing_idls',
139 '../core/core_generated.gyp:core_event_interfaces',
140 '../bindings/modules/generated.gyp:modules_event_generated',
141 '../config.gyp:config',
142 ],
143 'sources': [
144 # bison rule
145 '../core/css/CSSGrammar.y',
146 '../core/xml/XPathGrammar.y',
147 ],
148 'actions': [
149 ],
150 }], 130 }],
151 } 131 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698