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

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: comments 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
« no previous file with comments | « content/content.gyp ('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 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
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 }
OLDNEW
« no previous file with comments | « content/content.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698