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

Side by Side Diff: chrome/browser/ui/libgtk2ui/libgtk2ui.gyp

Issue 722513003: Enable -Wunused-local-typedef (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 6 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
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 'x11_input_method_context_impl_gtk2.h', 89 'x11_input_method_context_impl_gtk2.h',
90 ], 90 ],
91 'conditions': [ 91 'conditions': [
92 ['use_gconf==0', { 92 ['use_gconf==0', {
93 'sources!': [ 93 'sources!': [
94 'gconf_listener.cc', 94 'gconf_listener.cc',
95 'gconf_listener.h', 95 'gconf_listener.h',
96 ], 96 ],
97 }], 97 }],
98 [ 'clang==1', { 98 [ 'clang==1', {
99 # G_DEFINE_TYPE automatically generates a *get_instance_private inline function after glib 2.37.
100 # That's unused. Prevent to complain about it.
101 'cflags': [ 99 'cflags': [
100 # G_DEFINE_TYPE automatically generates a *get_instance_private inli ne function after glib 2.37.
101 # That's unused. Prevent to complain about it.
102 '-Wno-unused-function', 102 '-Wno-unused-function',
103
104 # G_STATIC_ASSERT uses a typedef as a static_assert.
105 '-Wno-unused-local-typedef',
103 ], 106 ],
104 }], 107 }],
105 ], 108 ],
106 }, 109 },
107 ], 110 ],
108 } 111 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/libgtk2ui/BUILD.gn ('k') | components/pairing/fake_host_pairing_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698