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

Side by Side Diff: remoting/remoting_host.gypi

Issue 1293073006: Make gtk2/gtk3 compile time switchable. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove deprecation warning. Created 5 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 unified diff | Download patch
« no previous file with comments | « remoting/host/it2me/BUILD.gn ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 'includes': [ 6 'includes': [
7 'remoting_enable.gypi', 7 'remoting_enable.gypi',
8 ], 8 ],
9 9
10 'conditions': [ 10 'conditions': [
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 '../build/linux/system.gyp:xext', 65 '../build/linux/system.gyp:xext',
66 '../build/linux/system.gyp:xfixes', 66 '../build/linux/system.gyp:xfixes',
67 '../build/linux/system.gyp:xi', 67 '../build/linux/system.gyp:xi',
68 '../build/linux/system.gyp:xrandr', 68 '../build/linux/system.gyp:xrandr',
69 '../build/linux/system.gyp:xtst', 69 '../build/linux/system.gyp:xtst',
70 ], 70 ],
71 }], 71 }],
72 ['chromeos==0 and use_ozone==0', { 72 ['chromeos==0 and use_ozone==0', {
73 'dependencies': [ 73 'dependencies': [
74 # use GTK on Linux, even for Aura builds. 74 # use GTK on Linux, even for Aura builds.
75 '../build/linux/system.gyp:gtk', 75 '../build/linux/system.gyp:gtk2',
76 ], 76 ],
77 }] 77 }]
78 ], 78 ],
79 }], 79 }],
80 ['chromeos==1', { 80 ['chromeos==1', {
81 'dependencies' : [ 81 'dependencies' : [
82 '../cc/cc.gyp:cc', 82 '../cc/cc.gyp:cc',
83 '../gpu/gpu.gyp:command_buffer_common', 83 '../gpu/gpu.gyp:command_buffer_common',
84 '../ppapi/ppapi_internal.gyp:ppapi_host', 84 '../ppapi/ppapi_internal.gyp:ppapi_host',
85 '../skia/skia.gyp:skia', 85 '../skia/skia.gyp:skia',
(...skipping 581 matching lines...) Expand 10 before | Expand all | Expand 10 after
667 ], 667 ],
668 'sources': [ 668 'sources': [
669 'host/it2me/it2me_native_messaging_host_entry_point.cc', 669 'host/it2me/it2me_native_messaging_host_entry_point.cc',
670 'host/it2me/it2me_native_messaging_host_main.cc', 670 'host/it2me/it2me_native_messaging_host_main.cc',
671 'host/it2me/it2me_native_messaging_host_main.h', 671 'host/it2me/it2me_native_messaging_host_main.h',
672 ], 672 ],
673 'conditions': [ 673 'conditions': [
674 ['OS=="linux" and chromeos==0 and use_ozone==0', { 674 ['OS=="linux" and chromeos==0 and use_ozone==0', {
675 'dependencies': [ 675 'dependencies': [
676 # Always use GTK on Linux, even for Aura builds. 676 # Always use GTK on Linux, even for Aura builds.
677 '../build/linux/system.gyp:gtk', 677 '../build/linux/system.gyp:gtk2',
678 ], 678 ],
679 }], 679 }],
680 ['OS=="linux" and use_allocator!="none"', { 680 ['OS=="linux" and use_allocator!="none"', {
681 'dependencies': [ 681 'dependencies': [
682 '../base/allocator/allocator.gyp:allocator', 682 '../base/allocator/allocator.gyp:allocator',
683 ], 683 ],
684 }], 684 }],
685 ['OS=="mac"', { 685 ['OS=="mac"', {
686 'mac_bundle': 1, 686 'mac_bundle': 1,
687 'variables': { 687 'variables': {
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
749 # Dummy target for chromeos==1 749 # Dummy target for chromeos==1
750 'target_name': 'remoting_it2me_native_messaging_host', 750 'target_name': 'remoting_it2me_native_messaging_host',
751 'type': 'executable', 751 'type': 'executable',
752 }, 752 },
753 ], # targets 753 ], # targets
754 }], # end of chromeos==0 754 }], # end of chromeos==0
755 ], # end of conditions 755 ], # end of conditions
756 }], # end of OS!="win" and enable_remoting_host==1 756 }], # end of OS!="win" and enable_remoting_host==1
757 ], # end of 'conditions' 757 ], # end of 'conditions'
758 } 758 }
OLDNEW
« no previous file with comments | « remoting/host/it2me/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698