Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(36)

Side by Side Diff: ui/ui.gyp

Issue 8495043: Turn on -Wexit-time-destructors for ui and content. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« ui/base/x/x11_util.cc ('K') | « ui/gfx/native_theme_gtk.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
Mark Mentovai 2011/11/09 17:44:44 Don’t remove this line, most of our files seem to
Nico 2011/11/09 18:16:02 Fine, let's waste those bytes. Done.
5 { 4 {
6 'variables': { 5 'variables': {
7 'chromium_code': 1, 6 'chromium_code': 1,
8 }, 7 },
9 'target_defaults': { 8 'target_defaults': {
10 'conditions': [ 9 'conditions': [
11 ['touchui==0', {'sources/': [ 10 ['touchui==0', {'sources/': [
12 ['exclude', '_(touch)\\.cc$'], 11 ['exclude', '_(touch)\\.cc$'],
13 ]}], 12 ]}],
14 ], 13 ],
15 }, 14 },
16 'includes': [ 15 'includes': [
17 'ui_resources.gypi', 16 'ui_resources.gypi',
18 ], 17 ],
19 'targets': [ 18 'targets': [
20 { 19 {
21 'target_name': 'ui', 20 'target_name': 'ui',
22 'type': '<(component)', 21 'type': '<(component)',
22 'variables': { 'enable_wexit_time_destructors': 1, },
Mark Mentovai 2011/11/09 17:44:44 Can this go into the top-level 'variables' in this
Nico 2011/11/09 18:16:02 No, then it's enabled for tests as well, and they
23 'dependencies': [ 23 'dependencies': [
24 '../base/base.gyp:base', 24 '../base/base.gyp:base',
25 '../base/base.gyp:base_i18n', 25 '../base/base.gyp:base_i18n',
26 '../base/base.gyp:base_static', 26 '../base/base.gyp:base_static',
27 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 27 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
28 '../build/temp_gyp/googleurl.gyp:googleurl', 28 '../build/temp_gyp/googleurl.gyp:googleurl',
29 '../net/net.gyp:net', 29 '../net/net.gyp:net',
30 '../skia/skia.gyp:skia', 30 '../skia/skia.gyp:skia',
31 '../third_party/icu/icu.gyp:icui18n', 31 '../third_party/icu/icu.gyp:icui18n',
32 '../third_party/icu/icu.gyp:icuuc', 32 '../third_party/icu/icu.gyp:icuuc',
(...skipping 576 matching lines...) Expand 10 before | Expand all | Expand 10 after
609 'shutil.copyfile(\'<(ui_copy_target)\', \'<(ui_copy_dest)\'); ' \ 609 'shutil.copyfile(\'<(ui_copy_target)\', \'<(ui_copy_dest)\'); ' \
610 'os.chmod(\'<(ui_copy_dest)\', 0700)' 610 'os.chmod(\'<(ui_copy_dest)\', 0700)'
611 ] 611 ]
612 } 612 }
613 ], 613 ],
614 }, 614 },
615 ], 615 ],
616 }], 616 }],
617 ], 617 ],
618 } 618 }
OLDNEW
« ui/base/x/x11_util.cc ('K') | « ui/gfx/native_theme_gtk.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698