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

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

Issue 275273002: x11: Split the gfx_x11 target into its own gyp file. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 years, 7 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) 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 362 matching lines...) Expand 10 before | Expand all | Expand 10 after
373 }], 373 }],
374 ['OS=="android" or OS=="ios"', { 374 ['OS=="android" or OS=="ios"', {
375 'sources!': [ 375 'sources!': [
376 'render_text.cc', 376 'render_text.cc',
377 'render_text.h', 377 'render_text.h',
378 'text_utils_skia.cc', 378 'text_utils_skia.cc',
379 ], 379 ],
380 }], 380 }],
381 ['use_x11==1', { 381 ['use_x11==1', {
382 'dependencies': [ 382 'dependencies': [
383 'gfx_x11', 383 'x/gfx_x11.gyp:gfx_x11',
384 ], 384 ],
385 }], 385 }],
386 ['use_pango==1', { 386 ['use_pango==1', {
387 'dependencies': [ 387 'dependencies': [
388 '<(DEPTH)/build/linux/system.gyp:pangocairo', 388 '<(DEPTH)/build/linux/system.gyp:pangocairo',
389 ], 389 ],
390 'sources!': [ 390 'sources!': [
391 'platform_font_ozone.cc', 391 'platform_font_ozone.cc',
392 'render_text_ozone.cc', 392 'render_text_ozone.cc',
393 ], 393 ],
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
558 'dependencies': [ 558 'dependencies': [
559 'gfx_unittests', 559 'gfx_unittests',
560 ], 560 ],
561 'variables': { 561 'variables': {
562 'test_suite_name': 'gfx_unittests', 562 'test_suite_name': 'gfx_unittests',
563 }, 563 },
564 'includes': [ '../../build/apk_test.gypi' ], 564 'includes': [ '../../build/apk_test.gypi' ],
565 }, 565 },
566 ], 566 ],
567 }], 567 }],
568 ['use_x11 == 1', {
569 'targets': [
570 {
571 'target_name': 'gfx_x11',
572 'type': '<(component)',
573 'dependencies': [
574 '../../base/base.gyp:base',
575 '../../build/linux/system.gyp:x11',
576 'gfx_geometry',
577 ],
578 'defines': [
579 'GFX_IMPLEMENTATION',
580 ],
581 'sources': [
582 'x/x11_atom_cache.cc',
583 'x/x11_atom_cache.h',
584 'x/x11_connection.cc',
585 'x/x11_connection.h',
586 'x/x11_error_tracker.cc',
587 'x/x11_error_tracker.h',
588 'x/x11_types.cc',
589 'x/x11_types.h',
590 ],
591 },
592 ]
593 }],
594 ], 568 ],
595 } 569 }
OLDNEW
« no previous file with comments | « ui/events/events.gyp ('k') | ui/gfx/x/gfx_x11.gyp » ('j') | ui/gfx/x/gfx_x11.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698