| 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 459 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 470 ['exclude', 'base/native_theme/native_theme_win.cc'], | 470 ['exclude', 'base/native_theme/native_theme_win.cc'], |
| 471 ['exclude', 'base/native_theme/native_theme_win.h'], | 471 ['exclude', 'base/native_theme/native_theme_win.h'], |
| 472 ['exclude', 'gfx/path_win.cc'], | 472 ['exclude', 'gfx/path_win.cc'], |
| 473 ], | 473 ], |
| 474 }], | 474 }], |
| 475 ['use_aura==0 and toolkit_views==0', { | 475 ['use_aura==0 and toolkit_views==0', { |
| 476 'sources/': [ | 476 'sources/': [ |
| 477 ['exclude', '^base/gestures/*'], | 477 ['exclude', '^base/gestures/*'], |
| 478 ] | 478 ] |
| 479 }], | 479 }], |
| 480 ['use_aura==1 and use_ash==0 and OS=="linux"', { |
| 481 'sources': [ |
| 482 'base/linux_ui.cc', |
| 483 'base/linux_ui.h', |
| 484 ] |
| 485 }], |
| 480 ['use_ibus==1', { | 486 ['use_ibus==1', { |
| 481 'dependencies': [ | 487 'dependencies': [ |
| 482 '../build/linux/system.gyp:ibus', | 488 '../build/linux/system.gyp:ibus', |
| 483 ], | 489 ], |
| 484 }], | 490 }], |
| 485 ['use_glib == 1', { | 491 ['use_glib == 1', { |
| 486 'dependencies': [ | 492 'dependencies': [ |
| 487 # font_gtk.cc uses fontconfig. | 493 # font_gtk.cc uses fontconfig. |
| 488 '../build/linux/system.gyp:fontconfig', | 494 '../build/linux/system.gyp:fontconfig', |
| 489 '../build/linux/system.gyp:glib', | 495 '../build/linux/system.gyp:glib', |
| (...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 721 'shutil.copyfile(\'<(ui_copy_target)\', \'<(ui_copy_dest)\'); '
\ | 727 'shutil.copyfile(\'<(ui_copy_target)\', \'<(ui_copy_dest)\'); '
\ |
| 722 'os.chmod(\'<(ui_copy_dest)\', 0700)' | 728 'os.chmod(\'<(ui_copy_dest)\', 0700)' |
| 723 ] | 729 ] |
| 724 } | 730 } |
| 725 ], | 731 ], |
| 726 }, | 732 }, |
| 727 ], | 733 ], |
| 728 }], | 734 }], |
| 729 ], | 735 ], |
| 730 } | 736 } |
| OLD | NEW |