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

Side by Side Diff: ui/ui.gyp

Issue 7511029: Implement Pango RenderText for Linux. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: update comment about u_strToUTF8, exclude pango_util from win/mac Created 9 years, 4 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 219 matching lines...) Expand 10 before | Expand all | Expand 10 after
230 'gfx/insets.cc', 230 'gfx/insets.cc',
231 'gfx/insets.h', 231 'gfx/insets.h',
232 'gfx/interpolated_transform.h', 232 'gfx/interpolated_transform.h',
233 'gfx/interpolated_transform.cc', 233 'gfx/interpolated_transform.cc',
234 'gfx/mac/nsimage_cache.h', 234 'gfx/mac/nsimage_cache.h',
235 'gfx/mac/nsimage_cache.mm', 235 'gfx/mac/nsimage_cache.mm',
236 'gfx/mac/scoped_ns_disable_screen_updates.h', 236 'gfx/mac/scoped_ns_disable_screen_updates.h',
237 'gfx/native_theme.cc', 237 'gfx/native_theme.cc',
238 'gfx/native_theme.h', 238 'gfx/native_theme.h',
239 'gfx/native_widget_types.h', 239 'gfx/native_widget_types.h',
240 'gfx/pango_util.h',
241 'gfx/pango_util.cc',
240 'gfx/path.cc', 242 'gfx/path.cc',
241 'gfx/path.h', 243 'gfx/path.h',
242 'gfx/path_gtk.cc', 244 'gfx/path_gtk.cc',
243 'gfx/path_win.cc', 245 'gfx/path_win.cc',
244 'gfx/platform_font.h', 246 'gfx/platform_font.h',
245 'gfx/platform_font_gtk.h', 247 'gfx/platform_font_gtk.h',
246 'gfx/platform_font_gtk.cc', 248 'gfx/platform_font_gtk.cc',
247 'gfx/platform_font_mac.h', 249 'gfx/platform_font_mac.h',
248 'gfx/platform_font_mac.mm', 250 'gfx/platform_font_mac.mm',
249 'gfx/platform_font_win.h', 251 'gfx/platform_font_win.h',
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
349 'gfx/canvas_direct2d.h', 351 'gfx/canvas_direct2d.h',
350 'gfx/gdi_util.cc', 352 'gfx/gdi_util.cc',
351 'gfx/gdi_util.h', 353 'gfx/gdi_util.h',
352 'gfx/icon_util.cc', 354 'gfx/icon_util.cc',
353 'gfx/icon_util.h', 355 'gfx/icon_util.h',
354 'gfx/native_theme_win.cc', 356 'gfx/native_theme_win.cc',
355 'gfx/native_theme_win.h', 357 'gfx/native_theme_win.h',
356 'gfx/win_util.cc', 358 'gfx/win_util.cc',
357 'gfx/win_util.h', 359 'gfx/win_util.h',
358 ], 360 ],
361 'sources!': [
362 'gfx/pango_util.h',
363 'gfx/pango_util.cc',
364 ],
359 'include_dirs': [ 365 'include_dirs': [
360 '../', 366 '../',
361 '../third_party/wtl/include', 367 '../third_party/wtl/include',
362 ], 368 ],
363 'msvs_settings': { 369 'msvs_settings': {
364 'VCLinkerTool': { 370 'VCLinkerTool': {
365 'DelayLoadDLLs': [ 371 'DelayLoadDLLs': [
366 'd2d1.dll', 372 'd2d1.dll',
367 'd3d10_1.dll', 373 'd3d10_1.dll',
368 ], 374 ],
(...skipping 19 matching lines...) Expand all
388 'base/dragdrop/drop_target.h', 394 'base/dragdrop/drop_target.h',
389 'base/dragdrop/os_exchange_data.cc', 395 'base/dragdrop/os_exchange_data.cc',
390 'base/view_prop.cc', 396 'base/view_prop.cc',
391 'base/view_prop.h', 397 'base/view_prop.h',
392 ], 398 ],
393 'sources/': [ 399 'sources/': [
394 ['exclude', '^base/win/*'], 400 ['exclude', '^base/win/*'],
395 ], 401 ],
396 }], 402 }],
397 ['OS=="mac"', { 403 ['OS=="mac"', {
404 'sources!': [
405 'gfx/pango_util.h',
406 'gfx/pango_util.cc',
407 ],
398 'link_settings': { 408 'link_settings': {
399 'libraries': [ 409 'libraries': [
400 '$(SDKROOT)/System/Library/Frameworks/Accelerate.framework', 410 '$(SDKROOT)/System/Library/Frameworks/Accelerate.framework',
401 '$(SDKROOT)/System/Library/Frameworks/AudioUnit.framework', 411 '$(SDKROOT)/System/Library/Frameworks/AudioUnit.framework',
402 ], 412 ],
403 }, 413 },
404 }], 414 }],
405 ['use_x11==1', { 415 ['use_x11==1', {
406 'all_dependent_settings': { 416 'all_dependent_settings': {
407 'ldflags': [ 417 'ldflags': [
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
521 'configurations': { 531 'configurations': {
522 'Common_Base': { 532 'Common_Base': {
523 'msvs_target_platform': 'x64', 533 'msvs_target_platform': 'x64',
524 }, 534 },
525 }, 535 },
526 }, 536 },
527 ], 537 ],
528 }], 538 }],
529 ], 539 ],
530 } 540 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698