OLD | NEW |
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 360 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
371 }], | 371 }], |
372 ['OS=="android" or OS=="ios"', { | 372 ['OS=="android" or OS=="ios"', { |
373 'sources!': [ | 373 'sources!': [ |
374 'render_text.cc', | 374 'render_text.cc', |
375 'render_text.h', | 375 'render_text.h', |
376 'text_utils_skia.cc', | 376 'text_utils_skia.cc', |
377 ], | 377 ], |
378 }], | 378 }], |
379 ['use_x11==1', { | 379 ['use_x11==1', { |
380 'dependencies': [ | 380 'dependencies': [ |
381 'gfx_x11', | 381 'x/gfx_x11.gyp:gfx_x11', |
382 ], | 382 ], |
383 }], | 383 }], |
384 ['use_pango==1', { | 384 ['use_pango==1', { |
385 'dependencies': [ | 385 'dependencies': [ |
386 '<(DEPTH)/build/linux/system.gyp:pangocairo', | 386 '<(DEPTH)/build/linux/system.gyp:pangocairo', |
387 ], | 387 ], |
388 'sources!': [ | 388 'sources!': [ |
389 'platform_font_ozone.cc', | 389 'platform_font_ozone.cc', |
390 'render_text_ozone.cc', | 390 'render_text_ozone.cc', |
391 ], | 391 ], |
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
522 'dependencies': [ | 522 'dependencies': [ |
523 'gfx_unittests', | 523 'gfx_unittests', |
524 ], | 524 ], |
525 'variables': { | 525 'variables': { |
526 'test_suite_name': 'gfx_unittests', | 526 'test_suite_name': 'gfx_unittests', |
527 }, | 527 }, |
528 'includes': [ '../../build/apk_test.gypi' ], | 528 'includes': [ '../../build/apk_test.gypi' ], |
529 }, | 529 }, |
530 ], | 530 ], |
531 }], | 531 }], |
532 ['use_x11 == 1', { | |
533 'targets': [ | |
534 { | |
535 'target_name': 'gfx_x11', | |
536 'type': '<(component)', | |
537 'dependencies': [ | |
538 '../../base/base.gyp:base', | |
539 '../../build/linux/system.gyp:x11', | |
540 'gfx_geometry', | |
541 ], | |
542 'defines': [ | |
543 'GFX_IMPLEMENTATION', | |
544 ], | |
545 'sources': [ | |
546 'x/x11_atom_cache.cc', | |
547 'x/x11_atom_cache.h', | |
548 'x/x11_connection.cc', | |
549 'x/x11_connection.h', | |
550 'x/x11_error_tracker.cc', | |
551 'x/x11_error_tracker.h', | |
552 'x/x11_types.cc', | |
553 'x/x11_types.h', | |
554 ], | |
555 }, | |
556 ] | |
557 }], | |
558 ], | 532 ], |
559 } | 533 } |
OLD | NEW |