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

Side by Side Diff: webkit/glue/webkit_glue.gypi

Issue 15961005: move webkit/glue/cpp_* -> webkit/renderer/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix test targets Created 7 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « webkit/glue/cpp_variant_unittest.cc ('k') | webkit/renderer/cpp_binding_example.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 { 5 {
6 'target_defaults': { 6 'target_defaults': {
7 # Disable narrowing-conversion-in-initialization-list warnings in that we 7 # Disable narrowing-conversion-in-initialization-list warnings in that we
8 # do not want to fix it in data file "webcursor_gtk_data.h". 8 # do not want to fix it in data file "webcursor_gtk_data.h".
9 'cflags+': ['-Wno-narrowing'], 9 'cflags+': ['-Wno-narrowing'],
10 'cflags_cc+': ['-Wno-narrowing'], 10 'cflags_cc+': ['-Wno-narrowing'],
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
140 'msvs_disabled_warnings': [ 4800, 4267 ], 140 'msvs_disabled_warnings': [ 4800, 4267 ],
141 'sources/': [['exclude', '_posix\\.cc$']], 141 'sources/': [['exclude', '_posix\\.cc$']],
142 'include_dirs': [ 142 'include_dirs': [
143 '<(DEPTH)/third_party/wtl/include', 143 '<(DEPTH)/third_party/wtl/include',
144 ], 144 ],
145 }], 145 }],
146 ], 146 ],
147 }, 147 },
148 148
149 { 149 {
150 'target_name': 'glue_renderer',
151 'type': '<(component)',
152 'variables': { 'enable_wexit_time_destructors': 1, },
153 'defines': [
154 'WEBKIT_EXTENSIONS_IMPLEMENTATION',
155 'WEBKIT_GLUE_IMPLEMENTATION',
156 ],
157 'dependencies': [
158 '<(DEPTH)/base/base.gyp:base_i18n',
159 '<(DEPTH)/base/base.gyp:base',
160 '<(DEPTH)/third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit',
161 'glue_common',
162 ],
163
164 'include_dirs': [
165 '<(INTERMEDIATE_DIR)',
166 '<(SHARED_INTERMEDIATE_DIR)/webkit',
167 ],
168
169 'sources': [
170 '../renderer/cpp_bound_class.cc',
171 '../renderer/cpp_bound_class.h',
172 '../renderer/cpp_variant.cc',
173 '../renderer/cpp_variant.h',
174 ],
175 },
176
177 {
150 'target_name': 'glue', 178 'target_name': 'glue',
151 'type': '<(component)', 179 'type': '<(component)',
152 'variables': { 'enable_wexit_time_destructors': 1, }, 180 'variables': { 'enable_wexit_time_destructors': 1, },
153 'defines': [ 181 'defines': [
154 'WEBKIT_EXTENSIONS_IMPLEMENTATION', 182 'WEBKIT_EXTENSIONS_IMPLEMENTATION',
155 'WEBKIT_GLUE_IMPLEMENTATION', 183 'WEBKIT_GLUE_IMPLEMENTATION',
156 ], 184 ],
157 'dependencies': [ 185 'dependencies': [
158 '<(DEPTH)/base/base.gyp:base_i18n', 186 '<(DEPTH)/base/base.gyp:base_i18n',
159 '<(DEPTH)/base/base.gyp:base_static', 187 '<(DEPTH)/base/base.gyp:base_static',
(...skipping 23 matching lines...) Expand all
183 'webkit_resources', 211 'webkit_resources',
184 'webkit_storage', 212 'webkit_storage',
185 'webkit_strings', 213 'webkit_strings',
186 ], 214 ],
187 'include_dirs': [ 215 'include_dirs': [
188 '<(INTERMEDIATE_DIR)', 216 '<(INTERMEDIATE_DIR)',
189 '<(SHARED_INTERMEDIATE_DIR)/webkit', 217 '<(SHARED_INTERMEDIATE_DIR)/webkit',
190 '<(SHARED_INTERMEDIATE_DIR)/ui', 218 '<(SHARED_INTERMEDIATE_DIR)/ui',
191 ], 219 ],
192 'sources': [ 220 'sources': [
193 'cpp_bound_class.cc',
194 'cpp_bound_class.h',
195 'cpp_variant.cc',
196 'cpp_variant.h',
197 'cursor_utils.cc', 221 'cursor_utils.cc',
198 'cursor_utils.h', 222 'cursor_utils.h',
199 'fling_curve_configuration.cc', 223 'fling_curve_configuration.cc',
200 'fling_curve_configuration.h', 224 'fling_curve_configuration.h',
201 'fling_animator_impl_android.cc', 225 'fling_animator_impl_android.cc',
202 'fling_animator_impl_android.h', 226 'fling_animator_impl_android.h',
203 'ftp_directory_listing_response_delegate.cc', 227 'ftp_directory_listing_response_delegate.cc',
204 'ftp_directory_listing_response_delegate.h', 228 'ftp_directory_listing_response_delegate.h',
205 'glue_serialize_deprecated.cc', 229 'glue_serialize_deprecated.cc',
206 'glue_serialize_deprecated.h', 230 'glue_serialize_deprecated.h',
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
368 'variables': { 392 'variables': {
369 'jni_gen_package': 'webkit', 393 'jni_gen_package': 'webkit',
370 'input_java_class': 'android/widget/OverScroller.class', 394 'input_java_class': 'android/widget/OverScroller.class',
371 }, 395 },
372 'includes': [ '../../build/jar_file_jni_generator.gypi' ], 396 'includes': [ '../../build/jar_file_jni_generator.gypi' ],
373 }, 397 },
374 ], 398 ],
375 }], 399 }],
376 ], 400 ],
377 } 401 }
OLDNEW
« no previous file with comments | « webkit/glue/cpp_variant_unittest.cc ('k') | webkit/renderer/cpp_binding_example.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698