| 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 'target_name': 'gtk2ui', | 11 'target_name': 'gtk2ui', |
| 12 'type': '<(component)', | 12 'type': '<(component)', |
| 13 'dependencies': [ | 13 'dependencies': [ |
| 14 '../../../../base/base.gyp:base', | 14 '../../../../base/base.gyp:base', |
| 15 '../../../../base/base.gyp:base_i18n', | 15 '../../../../base/base.gyp:base_i18n', |
| 16 '../../../../base/third_party/dynamic_annotations/dynamic_annotations.gy
p:dynamic_annotations', | 16 '../../../../base/third_party/dynamic_annotations/dynamic_annotations.gy
p:dynamic_annotations', |
| 17 '../../../../build/linux/system.gyp:gconf', | 17 '../../../../build/linux/system.gyp:gconf', |
| 18 '../../../../build/linux/system.gyp:gtk', | 18 '../../../../build/linux/system.gyp:gtk', |
| 19 '../../../../build/linux/system.gyp:gtkprint', | 19 '../../../../build/linux/system.gyp:gtkprint', |
| 20 '../../../../components/components_resources.gyp:components_resources', |
| 20 '../../../../printing/printing.gyp:cups', | 21 '../../../../printing/printing.gyp:cups', |
| 21 '../../../../skia/skia.gyp:skia', | 22 '../../../../skia/skia.gyp:skia', |
| 22 '../../../../ui/base/ui_base.gyp:ui_base', | 23 '../../../../ui/base/ui_base.gyp:ui_base', |
| 23 '../../../../ui/resources/ui_resources.gyp:ui_resources', | 24 '../../../../ui/resources/ui_resources.gyp:ui_resources', |
| 24 '../../../../ui/strings/ui_strings.gyp:ui_strings', | 25 '../../../../ui/strings/ui_strings.gyp:ui_strings', |
| 25 '../../../../ui/views/views.gyp:views', | 26 '../../../../ui/views/views.gyp:views', |
| 26 '../../../chrome_resources.gyp:chrome_extra_resources', | 27 '../../../chrome_resources.gyp:chrome_extra_resources', |
| 27 '../../../chrome_resources.gyp:chrome_resources', | 28 '../../../chrome_resources.gyp:chrome_resources', |
| 28 '../../../chrome_resources.gyp:chrome_strings', | 29 '../../../chrome_resources.gyp:chrome_strings', |
| 29 '../../../chrome_resources.gyp:theme_resources', | 30 '../../../chrome_resources.gyp:theme_resources', |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 # G_DEFINE_TYPE automatically generates a *get_instance_private inline
function after glib 2.37. | 97 # G_DEFINE_TYPE automatically generates a *get_instance_private inline
function after glib 2.37. |
| 97 # That's unused. Prevent to complain about it. | 98 # That's unused. Prevent to complain about it. |
| 98 'cflags': [ | 99 'cflags': [ |
| 99 '-Wno-unused-function', | 100 '-Wno-unused-function', |
| 100 ], | 101 ], |
| 101 }], | 102 }], |
| 102 ], | 103 ], |
| 103 }, | 104 }, |
| 104 ], | 105 ], |
| 105 } | 106 } |
| OLD | NEW |