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

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

Issue 15971005: Move the WebCursor sources from webkit/glue to webkit/common/cursors. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: 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/webcursor_win.cc ('k') | webkit/plugins/npapi/webplugin_delegate.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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 77
78 'include_dirs': [ 78 'include_dirs': [
79 '<(INTERMEDIATE_DIR)', 79 '<(INTERMEDIATE_DIR)',
80 '<(SHARED_INTERMEDIATE_DIR)/webkit', 80 '<(SHARED_INTERMEDIATE_DIR)/webkit',
81 '<(SHARED_INTERMEDIATE_DIR)/ui', 81 '<(SHARED_INTERMEDIATE_DIR)/ui',
82 ], 82 ],
83 83
84 'sources': [ 84 'sources': [
85 'multipart_response_delegate.cc', 85 'multipart_response_delegate.cc',
86 'multipart_response_delegate.h', 86 'multipart_response_delegate.h',
87 'webcursor.cc',
88 'webcursor.h',
89 'webcursor_android.cc',
90 'webcursor_aura.cc',
91 'webcursor_aurawin.cc',
92 'webcursor_aurax11.cc',
93 'webcursor_null.cc',
94 'webcursor_gtk.cc',
95 'webcursor_gtk_data.h',
96 'webcursor_mac.mm',
97 'webcursor_win.cc',
98 'weburlrequest_extradata_impl.cc', 87 'weburlrequest_extradata_impl.cc',
99 'weburlrequest_extradata_impl.h', 88 'weburlrequest_extradata_impl.h',
100 'weburlresponse_extradata_impl.cc', 89 'weburlresponse_extradata_impl.cc',
101 'weburlresponse_extradata_impl.h', 90 'weburlresponse_extradata_impl.h',
102 ], 91 ],
103 92
104 'conditions': [ 93 'conditions': [
105 ['toolkit_uses_gtk == 1', { 94 ['toolkit_uses_gtk == 1', {
106 'dependencies': [ 95 'dependencies': [
107 '<(DEPTH)/build/linux/system.gyp:gtk', 96 '<(DEPTH)/build/linux/system.gyp:gtk',
108 ], 97 ],
109 'sources/': [['exclude', '_x11\\.cc$']], 98 'sources/': [['exclude', '_x11\\.cc$']],
110 }], 99 }],
111 ['use_aura==1', {
112 'sources!': [
113 'webcursor_mac.mm',
114 'webcursor_win.cc',
115 ],
116 }],
117 ['use_aura==1 and use_x11==1', {
118 'link_settings': {
119 'libraries': [ '-lXcursor', ],
120 },
121 }],
122 ['use_ozone==0', {
123 'sources!': [
124 'webcursor_null.cc',
125 ],
126 }],
127 ['OS!="mac"', { 100 ['OS!="mac"', {
128 'sources/': [['exclude', '_mac\\.(cc|mm)$']], 101 'sources/': [['exclude', '_mac\\.(cc|mm)$']],
129 }, { # else: OS=="mac" 102 }, { # else: OS=="mac"
130 'link_settings': { 103 'link_settings': {
131 'libraries': [ 104 'libraries': [
132 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework', 105 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework',
133 ], 106 ],
134 }, 107 },
135 }], 108 }],
136 ['OS!="win"', { 109 ['OS!="win"', {
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
200 '<(DEPTH)/ui/native_theme/native_theme.gyp:native_theme', 173 '<(DEPTH)/ui/native_theme/native_theme.gyp:native_theme',
201 '<(DEPTH)/ui/ui.gyp:ui', 174 '<(DEPTH)/ui/ui.gyp:ui',
202 '<(DEPTH)/ui/ui.gyp:ui_resources', 175 '<(DEPTH)/ui/ui.gyp:ui_resources',
203 '<(DEPTH)/v8/tools/gyp/v8.gyp:v8', 176 '<(DEPTH)/v8/tools/gyp/v8.gyp:v8',
204 '<(DEPTH)/webkit/renderer/compositor_bindings/compositor_bindings.gyp:we bkit_compositor_support', 177 '<(DEPTH)/webkit/renderer/compositor_bindings/compositor_bindings.gyp:we bkit_compositor_support',
205 'glue_common', 178 'glue_common',
206 'plugins_common', 179 'plugins_common',
207 'plugins', 180 'plugins',
208 'user_agent', 181 'user_agent',
209 'webkit_base', 182 'webkit_base',
183 'webkit_common',
210 'webkit_media', 184 'webkit_media',
211 'webkit_resources', 185 'webkit_resources',
212 'webkit_storage', 186 'webkit_storage',
213 'webkit_strings', 187 'webkit_strings',
214 ], 188 ],
215 'include_dirs': [ 189 'include_dirs': [
216 '<(INTERMEDIATE_DIR)', 190 '<(INTERMEDIATE_DIR)',
217 '<(SHARED_INTERMEDIATE_DIR)/webkit', 191 '<(SHARED_INTERMEDIATE_DIR)/webkit',
218 '<(SHARED_INTERMEDIATE_DIR)/ui', 192 '<(SHARED_INTERMEDIATE_DIR)/ui',
219 ], 193 ],
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
392 'variables': { 366 'variables': {
393 'jni_gen_package': 'webkit', 367 'jni_gen_package': 'webkit',
394 'input_java_class': 'android/widget/OverScroller.class', 368 'input_java_class': 'android/widget/OverScroller.class',
395 }, 369 },
396 'includes': [ '../../build/jar_file_jni_generator.gypi' ], 370 'includes': [ '../../build/jar_file_jni_generator.gypi' ],
397 }, 371 },
398 ], 372 ],
399 }], 373 }],
400 ], 374 ],
401 } 375 }
OLDNEW
« no previous file with comments | « webkit/glue/webcursor_win.cc ('k') | webkit/plugins/npapi/webplugin_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698