OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 'target_defaults': { | 9 'target_defaults': { |
10 'conditions': [ | 10 'conditions': [ |
(...skipping 338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
349 ], | 349 ], |
350 }], | 350 }], |
351 ['use_glib == 1', { | 351 ['use_glib == 1', { |
352 'dependencies': [ | 352 'dependencies': [ |
353 # font_gtk.cc uses fontconfig. | 353 # font_gtk.cc uses fontconfig. |
354 '../build/linux/system.gyp:fontconfig', | 354 '../build/linux/system.gyp:fontconfig', |
355 '../build/linux/system.gyp:glib', | 355 '../build/linux/system.gyp:glib', |
356 '../build/linux/system.gyp:pangocairo', | 356 '../build/linux/system.gyp:pangocairo', |
357 '../build/linux/system.gyp:x11', | 357 '../build/linux/system.gyp:x11', |
358 '../build/linux/system.gyp:xext', | 358 '../build/linux/system.gyp:xext', |
| 359 '../build/linux/system.gyp:xfixes', |
359 ], | 360 ], |
360 'sources': [ | 361 'sources': [ |
361 'gfx/linux_util.cc', | 362 'gfx/linux_util.cc', |
362 'gfx/linux_util.h', | 363 'gfx/linux_util.h', |
363 ], | 364 ], |
364 'link_settings': { | 365 'link_settings': { |
365 'libraries': [ | 366 'libraries': [ |
366 '-lXrender', # For XRender* function calls in x11_util.cc. | 367 '-lXrender', # For XRender* function calls in x11_util.cc. |
367 ], | 368 ], |
368 }, | 369 }, |
(...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
619 'shutil.copyfile(\'<(ui_copy_target)\', \'<(ui_copy_dest)\'); '
\ | 620 'shutil.copyfile(\'<(ui_copy_target)\', \'<(ui_copy_dest)\'); '
\ |
620 'os.chmod(\'<(ui_copy_dest)\', 0700)' | 621 'os.chmod(\'<(ui_copy_dest)\', 0700)' |
621 ] | 622 ] |
622 } | 623 } |
623 ], | 624 ], |
624 }, | 625 }, |
625 ], | 626 ], |
626 }], | 627 }], |
627 ], | 628 ], |
628 } | 629 } |
OLD | NEW |