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

Unified Diff: chrome/browser/ui/libgtk2ui/libgtk2ui.gyp

Issue 2321703002: Remove all gyp[i] files in //chrome (Closed)
Patch Set: merge Created 4 years, 3 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/ui/cocoa/notifications/notification_common.gyp ('k') | chrome/chrome.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/libgtk2ui/libgtk2ui.gyp
diff --git a/chrome/browser/ui/libgtk2ui/libgtk2ui.gyp b/chrome/browser/ui/libgtk2ui/libgtk2ui.gyp
deleted file mode 100644
index 287db2f1bdf876f6f3ff0655fe04eaf71dd77e71..0000000000000000000000000000000000000000
--- a/chrome/browser/ui/libgtk2ui/libgtk2ui.gyp
+++ /dev/null
@@ -1,138 +0,0 @@
-# Copyright (c) 2012 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-{
- 'variables': {
- 'chromium_code': 1,
- },
- 'targets': [
- {
- # GN version: //chrome/browser/ui/libgtk2ui
- 'target_name': 'gtk2ui',
- 'type': '<(component)',
- 'dependencies': [
- '../../../../base/base.gyp:base',
- '../../../../base/base.gyp:base_i18n',
- '../../../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
- '../../../../build/linux/system.gyp:gconf',
- '../../../../build/linux/system.gyp:x11',
- '../../../../build/linux/system.gyp:xcursor',
- '../../../../components/components_resources.gyp:components_resources',
- '../../../../content/content.gyp:content',
- '../../../../skia/skia.gyp:skia',
- '../../../../ui/aura/aura.gyp:aura',
- '../../../../ui/base/ime/ui_base_ime.gyp:ui_base_ime',
- '../../../../ui/base/ui_base.gyp:ui_base',
- '../../../../ui/base/x/ui_base_x.gyp:ui_base_x',
- '../../../../ui/display/display.gyp:display',
- '../../../../ui/events/events.gyp:events',
- '../../../../ui/events/events.gyp:events_base',
- '../../../../ui/events/keycodes/events_keycodes.gyp:keycodes_x11',
- '../../../../ui/events/platform/x11/x11_events_platform.gyp:x11_events_platform',
- '../../../../ui/gfx/gfx.gyp:gfx',
- '../../../../ui/gfx/gfx.gyp:gfx_geometry',
- '../../../../ui/gfx/x/gfx_x11.gyp:gfx_x11',
- '../../../../ui/native_theme/native_theme.gyp:native_theme',
- '../../../../ui/resources/ui_resources.gyp:ui_resources',
- '../../../../ui/shell_dialogs/shell_dialogs.gyp:shell_dialogs',
- '../../../../ui/strings/ui_strings.gyp:ui_strings',
- '../../../../ui/views/views.gyp:views',
- '../../../chrome_resources.gyp:chrome_extra_resources',
- '../../../chrome_resources.gyp:chrome_resources',
- '../../../chrome_resources.gyp:chrome_strings',
- '../../../chrome_resources.gyp:theme_resources',
- ],
- 'defines': [
- 'LIBGTK2UI_IMPLEMENTATION',
- ],
- # Several of our source files are named _gtk2.cc. This isn't to
- # differentiate them from their source files (ninja and make are sane
- # build systems, unlike MSVS). It is instead to get around the rest of
- # the normal, global gtk exclusion rules, as we are otherwise using gtk
- # in a non-gtk build.
- 'sources': [
- # Note: sources list duplicated in GN build.
- 'app_indicator_icon.cc',
- 'app_indicator_icon.h',
- 'app_indicator_icon_menu.cc',
- 'app_indicator_icon_menu.h',
- 'chrome_gtk_frame.cc',
- 'chrome_gtk_frame.h',
- 'chrome_gtk_menu_subclasses.cc',
- 'chrome_gtk_menu_subclasses.h',
- 'gconf_listener.cc',
- 'gconf_listener.h',
- 'gtk2_event_loop.cc',
- 'gtk2_event_loop.h',
- 'gtk2_key_bindings_handler.cc',
- 'gtk2_key_bindings_handler.h',
- 'gtk2_status_icon.cc',
- 'gtk2_status_icon.h',
- 'gtk2_ui.cc',
- 'gtk2_ui.h',
- 'gtk2_util.cc',
- 'gtk2_util.h',
- 'libgtk2ui_export.h',
- 'menu_util.cc',
- 'menu_util.h',
- 'native_theme_gtk2.cc',
- 'native_theme_gtk2.h',
- 'print_dialog_gtk2.cc',
- 'print_dialog_gtk2.h',
- 'printing_gtk2_util.cc',
- 'printing_gtk2_util.h',
- 'select_file_dialog_impl.cc',
- 'select_file_dialog_impl.h',
- 'select_file_dialog_impl_gtk2.cc',
- 'select_file_dialog_impl_gtk2.h',
- 'select_file_dialog_impl_kde.cc',
- 'skia_utils_gtk2.cc',
- 'skia_utils_gtk2.h',
- 'unity_service.cc',
- 'unity_service.h',
- 'x11_input_method_context_impl_gtk2.cc',
- 'x11_input_method_context_impl_gtk2.h',
- ],
- 'conditions': [
- ['use_gconf==0', {
- 'sources!': [
- 'gconf_listener.cc',
- 'gconf_listener.h',
- ],
- }],
- ['use_gtk3==1', {
- 'dependencies': [
- '../../../../build/linux/system.gyp:gtk3',
- '../../../../build/linux/system.gyp:gtkprint3',
- ],
- }, {
- 'dependencies': [
- '../../../../build/linux/system.gyp:gtk2',
- '../../../../build/linux/system.gyp:gtkprint2',
- ],
- }],
- [ 'clang==1', {
- 'cflags': [
- # G_DEFINE_TYPE automatically generates a *get_instance_private inline function after glib 2.37.
- # That's unused. Prevent to complain about it.
- '-Wno-unused-function',
-
- # G_STATIC_ASSERT uses a typedef as a static_assert.
- '-Wno-unused-local-typedef',
- ],
- }],
- ['enable_basic_printing==1', {
- 'dependencies': [
- '../../../../printing/printing.gyp:printing',
- ],
- }],
- ['use_cups==1', {
- 'dependencies': [
- '../../../../printing/printing.gyp:cups',
- ],
- }],
- ],
- },
- ],
-}
« no previous file with comments | « chrome/browser/ui/cocoa/notifications/notification_common.gyp ('k') | chrome/chrome.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698