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

Side by Side Diff: ui/ui.gyp

Issue 7265011: RenderText API Outline. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Exclude Mac, fix font comparison. Created 9 years, 5 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) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 'toolkit_views2': 0, # ui/views/ is an experimental framework on Windows. 8 'toolkit_views2': 0, # ui/views/ is an experimental framework on Windows.
9 }, 9 },
10 'target_defaults': { 10 'target_defaults': {
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after
239 'gfx/platform_font_gtk.h', 239 'gfx/platform_font_gtk.h',
240 'gfx/platform_font_gtk.cc', 240 'gfx/platform_font_gtk.cc',
241 'gfx/platform_font_mac.h', 241 'gfx/platform_font_mac.h',
242 'gfx/platform_font_mac.mm', 242 'gfx/platform_font_mac.mm',
243 'gfx/platform_font_win.h', 243 'gfx/platform_font_win.h',
244 'gfx/platform_font_win.cc', 244 'gfx/platform_font_win.cc',
245 'gfx/point.cc', 245 'gfx/point.cc',
246 'gfx/point.h', 246 'gfx/point.h',
247 'gfx/rect.cc', 247 'gfx/rect.cc',
248 'gfx/rect.h', 248 'gfx/rect.h',
249 'gfx/render_text.cc',
250 'gfx/render_text.h',
251 'gfx/render_text_linux.cc',
252 'gfx/render_text_linux.h',
253 'gfx/render_text_win.cc',
254 'gfx/render_text_win.h',
249 'gfx/scoped_cg_context_save_gstate_mac.h', 255 'gfx/scoped_cg_context_save_gstate_mac.h',
250 'gfx/scoped_ns_graphics_context_save_gstate_mac.h', 256 'gfx/scoped_ns_graphics_context_save_gstate_mac.h',
251 'gfx/scoped_ns_graphics_context_save_gstate_mac.mm', 257 'gfx/scoped_ns_graphics_context_save_gstate_mac.mm',
252 'gfx/scrollbar_size.cc', 258 'gfx/scrollbar_size.cc',
253 'gfx/scrollbar_size.h', 259 'gfx/scrollbar_size.h',
254 'gfx/size.cc', 260 'gfx/size.cc',
255 'gfx/size.h', 261 'gfx/size.h',
256 'gfx/skbitmap_operations.cc', 262 'gfx/skbitmap_operations.cc',
257 'gfx/skbitmap_operations.h', 263 'gfx/skbitmap_operations.h',
258 'gfx/skia_util.cc', 264 'gfx/skia_util.cc',
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
363 'UI_IMPLEMENTATION', 369 'UI_IMPLEMENTATION',
364 ], 370 ],
365 }], 371 }],
366 ['OS=="mac"', { 372 ['OS=="mac"', {
367 'link_settings': { 373 'link_settings': {
368 'libraries': [ 374 'libraries': [
369 '$(SDKROOT)/System/Library/Frameworks/Accelerate.framework', 375 '$(SDKROOT)/System/Library/Frameworks/Accelerate.framework',
370 '$(SDKROOT)/System/Library/Frameworks/AudioUnit.framework', 376 '$(SDKROOT)/System/Library/Frameworks/AudioUnit.framework',
371 ], 377 ],
372 }, 378 },
379 'sources/': [
380 ['exclude', '^gfx/render_text.cc'],
381 ['exclude', '^gfx/render_text.h'],
382 ['exclude', '^gfx/render_text_linux.cc'],
383 ['exclude', '^gfx/render_text_linux.h'],
384 ['exclude', '^gfx/render_text_win.cc'],
385 ['exclude', '^gfx/render_text_win.h'],
386 ],
373 }], 387 }],
374 ['use_x11==1', { 388 ['use_x11==1', {
375 'all_dependent_settings': { 389 'all_dependent_settings': {
376 'ldflags': [ 390 'ldflags': [
377 '-L<(PRODUCT_DIR)', 391 '-L<(PRODUCT_DIR)',
378 ], 392 ],
379 'link_settings': { 393 'link_settings': {
380 'libraries': [ 394 'libraries': [
381 '-lX11', 395 '-lX11',
382 '-ldl', 396 '-ldl',
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
486 'defines': [ 500 'defines': [
487 'UI_IMPLEMENTATION', 501 'UI_IMPLEMENTATION',
488 ], 502 ],
489 }], 503 }],
490 ], 504 ],
491 }, 505 },
492 ], 506 ],
493 }], 507 }],
494 ], 508 ],
495 } 509 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698