OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 | 9 |
10 'targets': [ | 10 'targets': [ |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 ['OS=="linux" and chromeos==0 and use_x11==1', { | 66 ['OS=="linux" and chromeos==0 and use_x11==1', { |
67 'dependencies': [ | 67 'dependencies': [ |
68 '../../build/linux/system.gyp:atk', | 68 '../../build/linux/system.gyp:atk', |
69 '../../build/linux/system.gyp:gconf', | 69 '../../build/linux/system.gyp:gconf', |
70 '../../build/linux/system.gyp:glib', | 70 '../../build/linux/system.gyp:glib', |
71 ], | 71 ], |
72 'variables': { | 72 'variables': { |
73 'clang_warning_flags': [ | 73 'clang_warning_flags': [ |
74 # glib uses the pre-c++11 typedef-as-static_assert hack. | 74 # glib uses the pre-c++11 typedef-as-static_assert hack. |
75 '-Wno-unused-local-typedefs', | 75 '-Wno-unused-local-typedefs', |
| 76 # G_DEFINE_TYPE automatically generates a |
| 77 # *get_instance_private inline function after glib 2.37. |
| 78 # That's unused. Prevent to complain about it. |
| 79 '-Wno-unused-function', |
76 ], | 80 ], |
77 }, | 81 }, |
78 }], | 82 }], |
79 ['OS!="linux" or chromeos==1 or use_x11==0', { | 83 ['OS!="linux" or chromeos==1 or use_x11==0', { |
80 'sources!': [ | 84 'sources!': [ |
81 'platform/ax_platform_node_auralinux.cc', | 85 'platform/ax_platform_node_auralinux.cc', |
82 'platform/ax_platform_node_auralinux.h', | 86 'platform/ax_platform_node_auralinux.h', |
83 'platform/atk_util_auralinux.cc', | 87 'platform/atk_util_auralinux.cc', |
84 'platform/atk_util_auralinux.h', | 88 'platform/atk_util_auralinux.h', |
85 ], | 89 ], |
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
206 'type': 'none', | 210 'type': 'none', |
207 'variables': { | 211 'variables': { |
208 'source_file': 'ax_enums.idl', | 212 'source_file': 'ax_enums.idl', |
209 }, | 213 }, |
210 'includes': [ '../../build/android/java_cpp_enum.gypi' ], | 214 'includes': [ '../../build/android/java_cpp_enum.gypi' ], |
211 }, | 215 }, |
212 ], | 216 ], |
213 }], | 217 }], |
214 ], | 218 ], |
215 } | 219 } |
OLD | NEW |