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

Side by Side Diff: remoting/remoting_host.gypi

Issue 830193002: Using PolicyServiceWatcher instead of PolicyWatcherLinux/Win/Mac. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebasing... Created 5 years, 11 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/policy_hack/policy_watcher_win.cc ('k') | remoting/remoting_host_srcs.gypi » ('j') | 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_host_linux.gypi', 7 'remoting_host_linux.gypi',
8 'remoting_host_mac.gypi', 8 'remoting_host_mac.gypi',
9 'remoting_host_win.gypi', 9 'remoting_host_win.gypi',
10 ], 10 ],
(...skipping 29 matching lines...) Expand all
40 'enable_wexit_time_destructors': 1, 40 'enable_wexit_time_destructors': 1,
41 'host_bundle_name': '<!(python <(version_py_path) -f <(branding_path ) -t "@MAC_HOST_BUNDLE_NAME@")', 41 'host_bundle_name': '<!(python <(version_py_path) -f <(branding_path ) -t "@MAC_HOST_BUNDLE_NAME@")',
42 'prefpane_bundle_name': '<!(python <(version_py_path) -f <(branding_ path) -t "@MAC_PREFPANE_BUNDLE_NAME@")', 42 'prefpane_bundle_name': '<!(python <(version_py_path) -f <(branding_ path) -t "@MAC_PREFPANE_BUNDLE_NAME@")',
43 }, 43 },
44 'dependencies': [ 44 'dependencies': [
45 'remoting_base', 45 'remoting_base',
46 'remoting_protocol', 46 'remoting_protocol',
47 'remoting_resources', 47 'remoting_resources',
48 '../base/base.gyp:base_i18n', 48 '../base/base.gyp:base_i18n',
49 '../components/components.gyp:policy', 49 '../components/components.gyp:policy',
50 '../components/components.gyp:policy_component_common',
50 '../crypto/crypto.gyp:crypto', 51 '../crypto/crypto.gyp:crypto',
51 '../google_apis/google_apis.gyp:google_apis', 52 '../google_apis/google_apis.gyp:google_apis',
52 '../ipc/ipc.gyp:ipc', 53 '../ipc/ipc.gyp:ipc',
53 '../ui/events/events.gyp:dom4_keycode_converter', 54 '../ui/events/events.gyp:dom4_keycode_converter',
54 ], 55 ],
55 'defines': [ 56 'defines': [
56 'HOST_BUNDLE_NAME="<(host_bundle_name)"', 57 'HOST_BUNDLE_NAME="<(host_bundle_name)"',
57 'PREFPANE_BUNDLE_NAME="<(prefpane_bundle_name)"', 58 'PREFPANE_BUNDLE_NAME="<(prefpane_bundle_name)"',
58 'VERSION=<(version_full)', 59 'VERSION=<(version_full)',
59 ], 60 ],
(...skipping 22 matching lines...) Expand all
82 ], 83 ],
83 'link_settings': { 84 'link_settings': {
84 'libraries': [ 85 'libraries': [
85 '-lpam', 86 '-lpam',
86 ], 87 ],
87 }, 88 },
88 }], 89 }],
89 ['chromeos==1', { 90 ['chromeos==1', {
90 'dependencies' : [ 91 'dependencies' : [
91 '../cc/cc.gyp:cc', 92 '../cc/cc.gyp:cc',
92 '../components/components.gyp:policy_component_common',
93 '../content/content.gyp:content', 93 '../content/content.gyp:content',
94 '../ppapi/ppapi_internal.gyp:ppapi_host', 94 '../ppapi/ppapi_internal.gyp:ppapi_host',
95 '../skia/skia.gyp:skia', 95 '../skia/skia.gyp:skia',
96 '../ui/aura/aura.gyp:aura', 96 '../ui/aura/aura.gyp:aura',
97 '../ui/compositor/compositor.gyp:compositor', 97 '../ui/compositor/compositor.gyp:compositor',
98 '../ui/events/events.gyp:events', 98 '../ui/events/events.gyp:events',
99 '../ui/events/platform/events_platform.gyp:events_platform', 99 '../ui/events/platform/events_platform.gyp:events_platform',
100 '../ui/views/views.gyp:views', 100 '../ui/views/views.gyp:views',
101 ], 101 ],
102 'include_dirs': [ 102 'include_dirs': [
103 '../third_party/skia/include/utils', 103 '../third_party/skia/include/utils',
104 ], 104 ],
105 'sources!' : [ 105 'sources!' : [
106 'host/clipboard_x11.cc', 106 'host/clipboard_x11.cc',
107 'host/continue_window_linux.cc', 107 'host/continue_window_linux.cc',
108 'host/disconnect_window_linux.cc', 108 'host/disconnect_window_linux.cc',
109 'host/linux/x_server_clipboard.cc', 109 'host/linux/x_server_clipboard.cc',
110 'host/linux/x_server_clipboard.h', 110 'host/linux/x_server_clipboard.h',
111 'host/local_input_monitor_x11.cc', 111 'host/local_input_monitor_x11.cc',
112 'host/policy_hack/policy_watcher_linux.cc',
113 'host/remoting_me2me_host.cc', 112 'host/remoting_me2me_host.cc',
114 ], 113 ],
115 'conditions': [ 114 'conditions': [
116 ['use_ash==1', { 115 ['use_ash==1', {
117 'dependencies': [ 116 'dependencies': [
118 '../ash/ash.gyp:ash', 117 '../ash/ash.gyp:ash',
119 ], 118 ],
120 }], 119 }],
121 ['use_ozone==0', { 120 ['use_ozone==0', {
122 'sources!': [ 121 'sources!': [
(...skipping 616 matching lines...) Expand 10 before | Expand all | Expand 10 after
739 }], # mac_breakpad==1 738 }], # mac_breakpad==1
740 ], # conditions 739 ], # conditions
741 }], # OS=mac 740 }], # OS=mac
742 ], 741 ],
743 }, # end of target 'remoting_it2me_native_messaging_host' 742 }, # end of target 'remoting_it2me_native_messaging_host'
744 ], # end of 'targets' 743 ], # end of 'targets'
745 }], # # end of OS!="win" and enable_it2me_host==1 744 }], # # end of OS!="win" and enable_it2me_host==1
746 745
747 ], # end of 'conditions' 746 ], # end of 'conditions'
748 } 747 }
OLDNEW
« no previous file with comments | « remoting/host/policy_hack/policy_watcher_win.cc ('k') | remoting/remoting_host_srcs.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698