| 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': { | |
| 10 'conditions': [ | |
| 11 ['touchui==0', {'sources/': [ | |
| 12 ['exclude', '_(touch)\\.cc$'], | |
| 13 ]}], | |
| 14 ], | |
| 15 }, | |
| 16 'includes': [ | 9 'includes': [ |
| 17 'ui_resources.gypi', | 10 'ui_resources.gypi', |
| 18 ], | 11 ], |
| 19 'targets': [ | 12 'targets': [ |
| 20 { | 13 { |
| 21 'target_name': 'ui', | 14 'target_name': 'ui', |
| 22 'type': '<(component)', | 15 'type': '<(component)', |
| 23 'variables': { 'enable_wexit_time_destructors': 1, }, | 16 'variables': { 'enable_wexit_time_destructors': 1, }, |
| 24 'dependencies': [ | 17 'dependencies': [ |
| 25 '../base/base.gyp:base', | 18 '../base/base.gyp:base', |
| (...skipping 616 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 642 'shutil.copyfile(\'<(ui_copy_target)\', \'<(ui_copy_dest)\'); '
\ | 635 'shutil.copyfile(\'<(ui_copy_target)\', \'<(ui_copy_dest)\'); '
\ |
| 643 'os.chmod(\'<(ui_copy_dest)\', 0700)' | 636 'os.chmod(\'<(ui_copy_dest)\', 0700)' |
| 644 ] | 637 ] |
| 645 } | 638 } |
| 646 ], | 639 ], |
| 647 }, | 640 }, |
| 648 ], | 641 ], |
| 649 }], | 642 }], |
| 650 ], | 643 ], |
| 651 } | 644 } |
| OLD | NEW |