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 { |
11 # GN version: //chrome/browser/ui/libgtk2ui | 11 # GN version: //chrome/browser/ui/libgtk2ui |
12 'target_name': 'gtk2ui', | 12 'target_name': 'gtk2ui', |
13 'type': '<(component)', | 13 'type': '<(component)', |
14 'dependencies': [ | 14 'dependencies': [ |
15 '../../../../base/base.gyp:base', | 15 '../../../../base/base.gyp:base', |
16 '../../../../base/base.gyp:base_i18n', | 16 '../../../../base/base.gyp:base_i18n', |
17 '../../../../base/third_party/dynamic_annotations/dynamic_annotations.gy
p:dynamic_annotations', | 17 '../../../../base/third_party/dynamic_annotations/dynamic_annotations.gy
p:dynamic_annotations', |
18 '../../../../build/linux/system.gyp:gconf', | 18 '../../../../build/linux/system.gyp:gconf', |
19 '../../../../build/linux/system.gyp:x11', | 19 '../../../../build/linux/system.gyp:x11', |
20 '../../../../components/components_resources.gyp:components_resources', | 20 '../../../../components/components_resources.gyp:components_resources', |
21 '../../../../content/content.gyp:content', | 21 '../../../../content/content.gyp:content', |
22 '../../../../printing/printing.gyp:cups', | |
23 '../../../../printing/printing.gyp:printing', | |
24 '../../../../skia/skia.gyp:skia', | 22 '../../../../skia/skia.gyp:skia', |
25 '../../../../ui/aura/aura.gyp:aura', | 23 '../../../../ui/aura/aura.gyp:aura', |
26 '../../../../ui/base/ime/ui_base_ime.gyp:ui_base_ime', | 24 '../../../../ui/base/ime/ui_base_ime.gyp:ui_base_ime', |
27 '../../../../ui/base/ui_base.gyp:ui_base', | 25 '../../../../ui/base/ui_base.gyp:ui_base', |
28 '../../../../ui/events/events.gyp:events', | 26 '../../../../ui/events/events.gyp:events', |
29 '../../../../ui/events/events.gyp:events_base', | 27 '../../../../ui/events/events.gyp:events_base', |
30 '../../../../ui/gfx/gfx.gyp:gfx', | 28 '../../../../ui/gfx/gfx.gyp:gfx', |
31 '../../../../ui/gfx/gfx.gyp:gfx_geometry', | 29 '../../../../ui/gfx/gfx.gyp:gfx_geometry', |
32 '../../../../ui/gfx/x/gfx_x11.gyp:gfx_x11', | 30 '../../../../ui/gfx/x/gfx_x11.gyp:gfx_x11', |
33 '../../../../ui/native_theme/native_theme.gyp:native_theme', | 31 '../../../../ui/native_theme/native_theme.gyp:native_theme', |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
112 [ 'clang==1', { | 110 [ 'clang==1', { |
113 'cflags': [ | 111 'cflags': [ |
114 # G_DEFINE_TYPE automatically generates a *get_instance_private inli
ne function after glib 2.37. | 112 # G_DEFINE_TYPE automatically generates a *get_instance_private inli
ne function after glib 2.37. |
115 # That's unused. Prevent to complain about it. | 113 # That's unused. Prevent to complain about it. |
116 '-Wno-unused-function', | 114 '-Wno-unused-function', |
117 | 115 |
118 # G_STATIC_ASSERT uses a typedef as a static_assert. | 116 # G_STATIC_ASSERT uses a typedef as a static_assert. |
119 '-Wno-unused-local-typedef', | 117 '-Wno-unused-local-typedef', |
120 ], | 118 ], |
121 }], | 119 }], |
| 120 ['enable_basic_printing==1', { |
| 121 'dependencies': [ |
| 122 '../../../../printing/printing.gyp:printing', |
| 123 ], |
| 124 }], |
| 125 ['use_cups==1', { |
| 126 'dependencies': [ |
| 127 '../../../../printing/printing.gyp:cups', |
| 128 ], |
| 129 }], |
122 ], | 130 ], |
123 }, | 131 }, |
124 ], | 132 ], |
125 } | 133 } |
OLD | NEW |