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': [ |
11 ['touchui==0', {'sources/': [ | 11 ['touchui==0', {'sources/': [ |
12 ['exclude', '_(touch)\\.cc$'], | 12 ['exclude', '_(touch)\\.cc$'], |
13 ]}], | 13 ]}], |
14 ], | 14 ], |
15 }, | 15 }, |
16 'includes': [ | 16 'includes': [ |
17 'ui_resources.gypi', | 17 'ui_resources.gypi', |
18 ], | 18 ], |
19 'targets': [ | 19 'targets': [ |
20 { | 20 { |
21 'target_name': 'ui', | 21 'target_name': 'ui', |
22 'type': '<(component)', | 22 'type': '<(component)', |
| 23 'variables': { 'enable_wexit_time_destructors': 1, }, |
23 'dependencies': [ | 24 'dependencies': [ |
24 '../base/base.gyp:base', | 25 '../base/base.gyp:base', |
25 '../base/base.gyp:base_i18n', | 26 '../base/base.gyp:base_i18n', |
26 '../base/base.gyp:base_static', | 27 '../base/base.gyp:base_static', |
27 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', | 28 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
28 '../build/temp_gyp/googleurl.gyp:googleurl', | 29 '../build/temp_gyp/googleurl.gyp:googleurl', |
29 '../net/net.gyp:net', | 30 '../net/net.gyp:net', |
30 '../skia/skia.gyp:skia', | 31 '../skia/skia.gyp:skia', |
31 '../third_party/icu/icu.gyp:icui18n', | 32 '../third_party/icu/icu.gyp:icui18n', |
32 '../third_party/icu/icu.gyp:icuuc', | 33 '../third_party/icu/icu.gyp:icuuc', |
(...skipping 576 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
609 'shutil.copyfile(\'<(ui_copy_target)\', \'<(ui_copy_dest)\'); '
\ | 610 'shutil.copyfile(\'<(ui_copy_target)\', \'<(ui_copy_dest)\'); '
\ |
610 'os.chmod(\'<(ui_copy_dest)\', 0700)' | 611 'os.chmod(\'<(ui_copy_dest)\', 0700)' |
611 ] | 612 ] |
612 } | 613 } |
613 ], | 614 ], |
614 }, | 615 }, |
615 ], | 616 ], |
616 }], | 617 }], |
617 ], | 618 ], |
618 } | 619 } |
OLD | NEW |