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

Side by Side Diff: ui/gfx/gfx.gyp

Issue 26541007: ozone: Allow building for ozone without depending on pango (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years, 1 month 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) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after
190 'rect.cc', 190 'rect.cc',
191 'rect.h', 191 'rect.h',
192 'rect_base.h', 192 'rect_base.h',
193 'rect_base_impl.h', 193 'rect_base_impl.h',
194 'rect_conversions.cc', 194 'rect_conversions.cc',
195 'rect_conversions.h', 195 'rect_conversions.h',
196 'rect_f.cc', 196 'rect_f.cc',
197 'rect_f.h', 197 'rect_f.h',
198 'render_text.cc', 198 'render_text.cc',
199 'render_text.h', 199 'render_text.h',
200 'render_text_linux.cc',
201 'render_text_linux.h',
202 'render_text_mac.cc', 200 'render_text_mac.cc',
203 'render_text_mac.h', 201 'render_text_mac.h',
202 'render_text_ozone.cc',
203 'render_text_pango.cc',
204 'render_text_pango.h',
204 'render_text_win.cc', 205 'render_text_win.cc',
205 'render_text_win.h', 206 'render_text_win.h',
206 'safe_integer_conversions.h', 207 'safe_integer_conversions.h',
207 'scoped_canvas.h', 208 'scoped_canvas.h',
208 'scoped_cg_context_save_gstate_mac.h', 209 'scoped_cg_context_save_gstate_mac.h',
209 'scoped_ns_graphics_context_save_gstate_mac.h', 210 'scoped_ns_graphics_context_save_gstate_mac.h',
210 'scoped_ns_graphics_context_save_gstate_mac.mm', 211 'scoped_ns_graphics_context_save_gstate_mac.mm',
211 'scoped_ui_graphics_push_context_ios.h', 212 'scoped_ui_graphics_push_context_ios.h',
212 'scoped_ui_graphics_push_context_ios.mm', 213 'scoped_ui_graphics_push_context_ios.mm',
213 'screen.cc', 214 'screen.cc',
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
297 'sources!': [ 298 'sources!': [
298 'canvas_android.cc', 299 'canvas_android.cc',
299 ], 300 ],
300 }, { # use_canvas_skia!=1 301 }, { # use_canvas_skia!=1
301 'sources!': [ 302 'sources!': [
302 'canvas_skia.cc', 303 'canvas_skia.cc',
303 ], 304 ],
304 }], 305 }],
305 ['use_pango==0', { 306 ['use_pango==0', {
306 'sources/': [ 307 'sources/': [
307 ['exclude', '^pango_util\\.'], 308 ['exclude', '^pango_util\\.'],
msw 2013/11/04 23:10:46 nit: would it make sense to add "_util" to your li
sadrul 2013/11/05 02:42:27 Done.
308 ['exclude', '^platform_font_pango\\.'],
309 ], 309 ],
310 }], 310 }],
311 ['toolkit_uses_gtk == 1', { 311 ['toolkit_uses_gtk == 1', {
312 'dependencies': [ 312 'dependencies': [
313 '<(DEPTH)/build/linux/system.gyp:gtk', 313 '<(DEPTH)/build/linux/system.gyp:gtk',
314 ], 314 ],
315 'sources': [ 315 'sources': [
316 'gtk_native_view_id_manager.cc', 316 'gtk_native_view_id_manager.cc',
317 'gtk_native_view_id_manager.h', 317 'gtk_native_view_id_manager.h',
318 'gtk_preserve_window.cc', 318 'gtk_preserve_window.cc',
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
406 ], 406 ],
407 'variables': { 407 'variables': {
408 'jni_gen_package': 'ui/gfx', 408 'jni_gen_package': 'ui/gfx',
409 }, 409 },
410 'includes': [ '../../build/jni_generator.gypi' ], 410 'includes': [ '../../build/jni_generator.gypi' ],
411 }, 411 },
412 ], 412 ],
413 }], 413 }],
414 ], 414 ],
415 } 415 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698