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 623 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
649 'shutil.copyfile(\'<(ui_copy_target)\', \'<(ui_copy_dest)\'); '
\ | 642 'shutil.copyfile(\'<(ui_copy_target)\', \'<(ui_copy_dest)\'); '
\ |
650 'os.chmod(\'<(ui_copy_dest)\', 0700)' | 643 'os.chmod(\'<(ui_copy_dest)\', 0700)' |
651 ] | 644 ] |
652 } | 645 } |
653 ], | 646 ], |
654 }, | 647 }, |
655 ], | 648 ], |
656 }], | 649 }], |
657 ], | 650 ], |
658 } | 651 } |
OLD | NEW |