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', | |
360 ], | 359 ], |
361 'sources': [ | 360 'sources': [ |
362 'gfx/linux_util.cc', | 361 'gfx/linux_util.cc', |
363 'gfx/linux_util.h', | 362 'gfx/linux_util.h', |
364 ], | 363 ], |
365 'link_settings': { | 364 'link_settings': { |
366 'libraries': [ | 365 'libraries': [ |
367 '-lXrender', # For XRender* function calls in x11_util.cc. | 366 '-lXrender', # For XRender* function calls in x11_util.cc. |
368 ], | 367 ], |
369 }, | 368 }, |
(...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
620 'shutil.copyfile(\'<(ui_copy_target)\', \'<(ui_copy_dest)\'); '
\ | 619 'shutil.copyfile(\'<(ui_copy_target)\', \'<(ui_copy_dest)\'); '
\ |
621 'os.chmod(\'<(ui_copy_dest)\', 0700)' | 620 'os.chmod(\'<(ui_copy_dest)\', 0700)' |
622 ] | 621 ] |
623 } | 622 } |
624 ], | 623 ], |
625 }, | 624 }, |
626 ], | 625 ], |
627 }], | 626 }], |
628 ], | 627 ], |
629 } | 628 } |
OLD | NEW |