| 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 362 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |