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

Side by Side Diff: ui/ui.gyp

Issue 7265011: RenderText API Outline. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix permissions, export RenderText and StyleRange via UI_API. 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
« no previous file with comments | « ui/gfx/render_text_win.cc ('k') | ui/ui_unittests.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/screen.h', 258 'gfx/screen.h',
253 'gfx/screen_gtk.cc', 259 'gfx/screen_gtk.cc',
254 'gfx/screen_win.cc', 260 'gfx/screen_win.cc',
255 'gfx/scoped_cg_context_save_gstate_mac.h', 261 'gfx/scoped_cg_context_save_gstate_mac.h',
256 'gfx/scoped_ns_graphics_context_save_gstate_mac.h', 262 'gfx/scoped_ns_graphics_context_save_gstate_mac.h',
257 'gfx/scoped_ns_graphics_context_save_gstate_mac.mm', 263 'gfx/scoped_ns_graphics_context_save_gstate_mac.mm',
258 'gfx/scrollbar_size.cc', 264 'gfx/scrollbar_size.cc',
259 'gfx/scrollbar_size.h', 265 'gfx/scrollbar_size.h',
260 'gfx/size.cc', 266 'gfx/size.cc',
261 'gfx/size.h', 267 'gfx/size.h',
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
389 'base/keycodes/keyboard_code_conversion_x.cc', 395 'base/keycodes/keyboard_code_conversion_x.cc',
390 'base/keycodes/keyboard_code_conversion_x.h', 396 'base/keycodes/keyboard_code_conversion_x.h',
391 ], 397 ],
392 }], 398 }],
393 ['chromeos==1', { 399 ['chromeos==1', {
394 'sources': [ 400 'sources': [
395 'gfx/native_theme_chromeos.cc', 401 'gfx/native_theme_chromeos.cc',
396 'gfx/native_theme_chromeos.h', 402 'gfx/native_theme_chromeos.h',
397 ], 403 ],
398 }], 404 }],
405 ['toolkit_views==0', {
406 'sources/': [
407 ['exclude', '^gfx/render_text.cc'],
viettrungluu 2011/07/27 17:10:28 Don't do this. Each of these regexes needs to be a
408 ['exclude', '^gfx/render_text.h'],
409 ['exclude', '^gfx/render_text_linux.cc'],
410 ['exclude', '^gfx/render_text_linux.h'],
411 ['exclude', '^gfx/render_text_win.cc'],
412 ['exclude', '^gfx/render_text_win.h'],
413 ],
414 }],
399 ], 415 ],
400 }, 416 },
401 { 417 {
402 'target_name': 'gfx_resources', 418 'target_name': 'gfx_resources',
403 'type': 'none', 419 'type': 'none',
404 'variables': { 420 'variables': {
405 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/ui/gfx', 421 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/ui/gfx',
406 }, 422 },
407 'actions': [ 423 'actions': [
408 { 424 {
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
481 'configurations': { 497 'configurations': {
482 'Common_Base': { 498 'Common_Base': {
483 'msvs_target_platform': 'x64', 499 'msvs_target_platform': 'x64',
484 }, 500 },
485 }, 501 },
486 }, 502 },
487 ], 503 ],
488 }], 504 }],
489 ], 505 ],
490 } 506 }
OLDNEW
« no previous file with comments | « ui/gfx/render_text_win.cc ('k') | ui/ui_unittests.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698