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

Side by Side Diff: ui/ui.gyp

Issue 7265011: RenderText API Outline. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add TODO comments, revise cursor movement API, etc. 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 231 matching lines...) Expand 10 before | Expand all | Expand 10 after
242 'gfx/platform_font_gtk.h', 242 'gfx/platform_font_gtk.h',
243 'gfx/platform_font_gtk.cc', 243 'gfx/platform_font_gtk.cc',
244 'gfx/platform_font_mac.h', 244 'gfx/platform_font_mac.h',
245 'gfx/platform_font_mac.mm', 245 'gfx/platform_font_mac.mm',
246 'gfx/platform_font_win.h', 246 'gfx/platform_font_win.h',
247 'gfx/platform_font_win.cc', 247 'gfx/platform_font_win.cc',
248 'gfx/point.cc', 248 'gfx/point.cc',
249 'gfx/point.h', 249 'gfx/point.h',
250 'gfx/rect.cc', 250 'gfx/rect.cc',
251 'gfx/rect.h', 251 'gfx/rect.h',
252 'gfx/render_text.cc',
253 'gfx/render_text.h',
254 'gfx/render_text_linux.cc',
255 'gfx/render_text_linux.h',
256 'gfx/render_text_win.cc',
257 'gfx/render_text_win.h',
252 'gfx/scoped_cg_context_save_gstate_mac.h', 258 'gfx/scoped_cg_context_save_gstate_mac.h',
253 'gfx/scoped_ns_graphics_context_save_gstate_mac.h', 259 'gfx/scoped_ns_graphics_context_save_gstate_mac.h',
254 'gfx/scoped_ns_graphics_context_save_gstate_mac.mm', 260 'gfx/scoped_ns_graphics_context_save_gstate_mac.mm',
255 'gfx/scrollbar_size.cc', 261 'gfx/scrollbar_size.cc',
256 'gfx/scrollbar_size.h', 262 'gfx/scrollbar_size.h',
257 'gfx/size.cc', 263 'gfx/size.cc',
258 'gfx/size.h', 264 'gfx/size.h',
259 'gfx/skbitmap_operations.cc', 265 'gfx/skbitmap_operations.cc',
260 'gfx/skbitmap_operations.h', 266 'gfx/skbitmap_operations.h',
261 'gfx/skia_util.cc', 267 'gfx/skia_util.cc',
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
361 ['exclude', '^base/win/*'], 367 ['exclude', '^base/win/*'],
362 ], 368 ],
363 }], 369 }],
364 ['OS=="mac"', { 370 ['OS=="mac"', {
365 'link_settings': { 371 'link_settings': {
366 'libraries': [ 372 'libraries': [
367 '$(SDKROOT)/System/Library/Frameworks/Accelerate.framework', 373 '$(SDKROOT)/System/Library/Frameworks/Accelerate.framework',
368 '$(SDKROOT)/System/Library/Frameworks/AudioUnit.framework', 374 '$(SDKROOT)/System/Library/Frameworks/AudioUnit.framework',
369 ], 375 ],
370 }, 376 },
377 'sources/': [
378 ['exclude', '^gfx/render_text.cc'],
379 ['exclude', '^gfx/render_text.h'],
380 ['exclude', '^gfx/render_text_linux.cc'],
381 ['exclude', '^gfx/render_text_linux.h'],
382 ['exclude', '^gfx/render_text_win.cc'],
383 ['exclude', '^gfx/render_text_win.h'],
384 ],
oshima 2011/07/23 09:51:12 we don't need for non views linux, do we?
msw 2011/07/25 05:09:54 Ok, I excluded these from all non-views builds. I
371 }], 385 }],
372 ['use_x11==1', { 386 ['use_x11==1', {
373 'all_dependent_settings': { 387 'all_dependent_settings': {
374 'ldflags': [ 388 'ldflags': [
375 '-L<(PRODUCT_DIR)', 389 '-L<(PRODUCT_DIR)',
376 ], 390 ],
377 'link_settings': { 391 'link_settings': {
378 'libraries': [ 392 'libraries': [
379 '-lX11', 393 '-lX11',
380 '-ldl', 394 '-ldl',
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
478 'configurations': { 492 'configurations': {
479 'Common_Base': { 493 'Common_Base': {
480 'msvs_target_platform': 'x64', 494 'msvs_target_platform': 'x64',
481 }, 495 },
482 }, 496 },
483 }, 497 },
484 ], 498 ],
485 }], 499 }],
486 ], 500 ],
487 } 501 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698