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

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
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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
172 '<(DEPTH)/ui/native_theme/native_theme.gyp:native_theme', 145 '<(DEPTH)/ui/native_theme/native_theme.gyp:native_theme',
173 '<(DEPTH)/ui/ui.gyp:ui', 146 '<(DEPTH)/ui/ui.gyp:ui',
174 '<(DEPTH)/ui/ui.gyp:ui_resources', 147 '<(DEPTH)/ui/ui.gyp:ui_resources',
175 '<(DEPTH)/v8/tools/gyp/v8.gyp:v8', 148 '<(DEPTH)/v8/tools/gyp/v8.gyp:v8',
176 '<(DEPTH)/webkit/renderer/compositor_bindings/compositor_bindings.gyp:we bkit_compositor_support', 149 '<(DEPTH)/webkit/renderer/compositor_bindings/compositor_bindings.gyp:we bkit_compositor_support',
177 'glue_common', 150 'glue_common',
178 'plugins_common', 151 'plugins_common',
179 'plugins', 152 'plugins',
180 'user_agent', 153 'user_agent',
181 'webkit_base', 154 'webkit_base',
155 'webkit_common',
jamesr 2013/05/29 00:28:11 in the codereview tool this looks incorrectly inde
ananta 2013/05/29 00:34:44 Done.
182 'webkit_media', 156 'webkit_media',
183 'webkit_resources', 157 'webkit_resources',
184 'webkit_storage', 158 'webkit_storage',
185 'webkit_strings', 159 'webkit_strings',
186 ], 160 ],
187 'include_dirs': [ 161 'include_dirs': [
188 '<(INTERMEDIATE_DIR)', 162 '<(INTERMEDIATE_DIR)',
189 '<(SHARED_INTERMEDIATE_DIR)/webkit', 163 '<(SHARED_INTERMEDIATE_DIR)/webkit',
190 '<(SHARED_INTERMEDIATE_DIR)/ui', 164 '<(SHARED_INTERMEDIATE_DIR)/ui',
191 ], 165 ],
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
368 'variables': { 342 'variables': {
369 'jni_gen_package': 'webkit', 343 'jni_gen_package': 'webkit',
370 'input_java_class': 'android/widget/OverScroller.class', 344 'input_java_class': 'android/widget/OverScroller.class',
371 }, 345 },
372 'includes': [ '../../build/jar_file_jni_generator.gypi' ], 346 'includes': [ '../../build/jar_file_jni_generator.gypi' ],
373 }, 347 },
374 ], 348 ],
375 }], 349 }],
376 ], 350 ],
377 } 351 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698