OLD | NEW |
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 Loading... |
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 } |
OLD | NEW |