| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'includes': [ | 9 'includes': [ |
| 10 'ui_resources.gypi', | 10 'ui_resources.gypi', |
| (...skipping 553 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 564 'gfx/platform_font_pango.cc', | 564 'gfx/platform_font_pango.cc', |
| 565 ], | 565 ], |
| 566 }], | 566 }], |
| 567 ['use_x11==1', { | 567 ['use_x11==1', { |
| 568 'all_dependent_settings': { | 568 'all_dependent_settings': { |
| 569 'ldflags': [ | 569 'ldflags': [ |
| 570 '-L<(PRODUCT_DIR)', | 570 '-L<(PRODUCT_DIR)', |
| 571 ], | 571 ], |
| 572 'link_settings': { | 572 'link_settings': { |
| 573 'libraries': [ | 573 'libraries': [ |
| 574 '-lX11', | 574 '-lX11 -lXcursor', |
| 575 ], | 575 ], |
| 576 }, | 576 }, |
| 577 }, | 577 }, |
| 578 }, { # use_x11==0 | 578 }, { # use_x11==0 |
| 579 'sources!': [ | 579 'sources!': [ |
| 580 'base/keycodes/keyboard_code_conversion_x.cc', | 580 'base/keycodes/keyboard_code_conversion_x.cc', |
| 581 'base/keycodes/keyboard_code_conversion_x.h', | 581 'base/keycodes/keyboard_code_conversion_x.h', |
| 582 'base/x/', | 582 'base/x/', |
| 583 ], | 583 ], |
| 584 }], | 584 }], |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 679 'shutil.copyfile(\'<(ui_copy_target)\', \'<(ui_copy_dest)\'); '
\ | 679 'shutil.copyfile(\'<(ui_copy_target)\', \'<(ui_copy_dest)\'); '
\ |
| 680 'os.chmod(\'<(ui_copy_dest)\', 0700)' | 680 'os.chmod(\'<(ui_copy_dest)\', 0700)' |
| 681 ] | 681 ] |
| 682 } | 682 } |
| 683 ], | 683 ], |
| 684 }, | 684 }, |
| 685 ], | 685 ], |
| 686 }], | 686 }], |
| 687 ], | 687 ], |
| 688 } | 688 } |
| OLD | NEW |