| 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 473 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 484 # font_gtk.cc uses fontconfig. | 484 # font_gtk.cc uses fontconfig. |
| 485 '../build/linux/system.gyp:fontconfig', | 485 '../build/linux/system.gyp:fontconfig', |
| 486 '../build/linux/system.gyp:glib', | 486 '../build/linux/system.gyp:glib', |
| 487 '../build/linux/system.gyp:pangocairo', | 487 '../build/linux/system.gyp:pangocairo', |
| 488 '../build/linux/system.gyp:x11', | 488 '../build/linux/system.gyp:x11', |
| 489 '../build/linux/system.gyp:xext', | 489 '../build/linux/system.gyp:xext', |
| 490 '../build/linux/system.gyp:xfixes', | 490 '../build/linux/system.gyp:xfixes', |
| 491 ], | 491 ], |
| 492 'link_settings': { | 492 'link_settings': { |
| 493 'libraries': [ | 493 'libraries': [ |
| 494 '-lXcursor', # For XCursor* function calls in x11_util.cc. |
| 494 '-lXrender', # For XRender* function calls in x11_util.cc. | 495 '-lXrender', # For XRender* function calls in x11_util.cc. |
| 495 ], | 496 ], |
| 496 }, | 497 }, |
| 497 'conditions': [ | 498 'conditions': [ |
| 498 ['toolkit_views==0', { | 499 ['toolkit_views==0', { |
| 499 # Note: because of gyp predence rules this has to be defined as | 500 # Note: because of gyp predence rules this has to be defined as |
| 500 # 'sources/' rather than 'sources!'. | 501 # 'sources/' rather than 'sources!'. |
| 501 'sources/': [ | 502 'sources/': [ |
| 502 ['exclude', '^base/dragdrop/drag_drop_types_gtk.cc'], | 503 ['exclude', '^base/dragdrop/drag_drop_types_gtk.cc'], |
| 503 ['exclude', '^base/dragdrop/drag_utils_gtk.cc'], | 504 ['exclude', '^base/dragdrop/drag_utils_gtk.cc'], |
| (...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 741 'shutil.copyfile(\'<(ui_copy_target)\', \'<(ui_copy_dest)\'); '
\ | 742 'shutil.copyfile(\'<(ui_copy_target)\', \'<(ui_copy_dest)\'); '
\ |
| 742 'os.chmod(\'<(ui_copy_dest)\', 0700)' | 743 'os.chmod(\'<(ui_copy_dest)\', 0700)' |
| 743 ] | 744 ] |
| 744 } | 745 } |
| 745 ], | 746 ], |
| 746 }, | 747 }, |
| 747 ], | 748 ], |
| 748 }], | 749 }], |
| 749 ], | 750 ], |
| 750 } | 751 } |
| OLD | NEW |