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

Side by Side Diff: remoting/remoting.gyp

Issue 7355011: Modify Chromoting logging to hook into base logging. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add timestamp Created 9 years, 5 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 | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 # TODO(dmaclach): can we pick this up some other way? Right now it's 7 # TODO(dmaclach): can we pick this up some other way? Right now it's
8 # duplicated from chrome.gyp 8 # duplicated from chrome.gyp
9 'chromium_code': 1, 9 'chromium_code': 1,
10 # Use a consistent MIME-type independent of branding. 10 # Use a consistent MIME-type independent of branding.
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 # depends on. See comments in chromoting_instance.cc for details. 108 # depends on. See comments in chromoting_instance.cc for details.
109 # crbug.com/74951 109 # crbug.com/74951
110 '<(DEPTH)/webkit/support/webkit_support.gyp:glue', 110 '<(DEPTH)/webkit/support/webkit_support.gyp:glue',
111 '<(DEPTH)/skia/skia.gyp:skia', 111 '<(DEPTH)/skia/skia.gyp:skia',
112 ], 112 ],
113 'sources': [ 113 'sources': [
114 'client/plugin/chromoting_instance.cc', 114 'client/plugin/chromoting_instance.cc',
115 'client/plugin/chromoting_instance.h', 115 'client/plugin/chromoting_instance.h',
116 'client/plugin/chromoting_scriptable_object.cc', 116 'client/plugin/chromoting_scriptable_object.cc',
117 'client/plugin/chromoting_scriptable_object.h', 117 'client/plugin/chromoting_scriptable_object.h',
118 'client/plugin/pepper_client_logger.cc',
119 'client/plugin/pepper_client_logger.h',
120 'client/plugin/pepper_entrypoints.cc', 118 'client/plugin/pepper_entrypoints.cc',
121 'client/plugin/pepper_entrypoints.h', 119 'client/plugin/pepper_entrypoints.h',
122 'client/plugin/pepper_input_handler.cc', 120 'client/plugin/pepper_input_handler.cc',
123 'client/plugin/pepper_input_handler.h', 121 'client/plugin/pepper_input_handler.h',
124 'client/plugin/pepper_port_allocator_session.cc', 122 'client/plugin/pepper_port_allocator_session.cc',
125 'client/plugin/pepper_port_allocator_session.h', 123 'client/plugin/pepper_port_allocator_session.h',
126 'client/plugin/pepper_view.cc', 124 'client/plugin/pepper_view.cc',
127 'client/plugin/pepper_view.h', 125 'client/plugin/pepper_view.h',
128 'client/plugin/pepper_view_proxy.cc', 126 'client/plugin/pepper_view_proxy.cc',
129 'client/plugin/pepper_view_proxy.h', 127 'client/plugin/pepper_view_proxy.h',
(...skipping 12 matching lines...) Expand all
142 'dependencies': [ 140 'dependencies': [
143 'remoting_base', 141 'remoting_base',
144 'remoting_host', 142 'remoting_host',
145 'remoting_jingle_glue', 143 'remoting_jingle_glue',
146 '../third_party/npapi/npapi.gyp:npapi', 144 '../third_party/npapi/npapi.gyp:npapi',
147 ], 145 ],
148 'sources': [ 146 'sources': [
149 'host/plugin/host_plugin.cc', 147 'host/plugin/host_plugin.cc',
150 'host/plugin/host_plugin.def', 148 'host/plugin/host_plugin.def',
151 'host/plugin/host_plugin.rc', 149 'host/plugin/host_plugin.rc',
152 'host/plugin/host_plugin_logger.cc',
153 'host/plugin/host_plugin_logger.h',
154 'host/plugin/host_plugin_resource.h', 150 'host/plugin/host_plugin_resource.h',
155 'host/plugin/host_plugin_utils.cc', 151 'host/plugin/host_plugin_utils.cc',
156 'host/plugin/host_plugin_utils.h', 152 'host/plugin/host_plugin_utils.h',
157 'host/plugin/host_script_object.cc', 153 'host/plugin/host_script_object.cc',
158 'host/plugin/host_script_object.h', 154 'host/plugin/host_script_object.h',
159 ], 155 ],
160 'conditions': [ 156 'conditions': [
161 ['OS=="mac"', { 157 ['OS=="mac"', {
162 'mac_bundle': 1, 158 'mac_bundle': 1,
163 'xcode_settings': { 159 'xcode_settings': {
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
288 'base/decompressor.h', 284 'base/decompressor.h',
289 'base/decompressor_verbatim.cc', 285 'base/decompressor_verbatim.cc',
290 'base/decompressor_verbatim.h', 286 'base/decompressor_verbatim.h',
291 'base/decompressor_zlib.cc', 287 'base/decompressor_zlib.cc',
292 'base/decompressor_zlib.h', 288 'base/decompressor_zlib.h',
293 'base/encoder.h', 289 'base/encoder.h',
294 'base/encoder_vp8.cc', 290 'base/encoder_vp8.cc',
295 'base/encoder_vp8.h', 291 'base/encoder_vp8.h',
296 'base/encoder_row_based.cc', 292 'base/encoder_row_based.cc',
297 'base/encoder_row_based.h', 293 'base/encoder_row_based.h',
298 'base/logger.cc',
299 'base/logger.h',
300 'base/rate_counter.cc', 294 'base/rate_counter.cc',
301 'base/rate_counter.h', 295 'base/rate_counter.h',
302 'base/running_average.cc', 296 'base/running_average.cc',
303 'base/running_average.h', 297 'base/running_average.h',
304 'base/tracer.cc', 298 'base/tracer.cc',
305 'base/tracer.h', 299 'base/tracer.h',
306 'base/types.h', 300 'base/types.h',
307 'base/util.cc', 301 'base/util.cc',
308 'base/util.h', 302 'base/util.h',
309 ], 303 ],
(...skipping 462 matching lines...) Expand 10 before | Expand all | Expand 10 after
772 ['target_arch=="arm"', { 766 ['target_arch=="arm"', {
773 'sources!': [ 767 'sources!': [
774 'base/decoder_vp8_unittest.cc', 768 'base/decoder_vp8_unittest.cc',
775 'base/encoder_vp8_unittest.cc', 769 'base/encoder_vp8_unittest.cc',
776 ], 770 ],
777 }], 771 }],
778 ], # end of 'conditions' 772 ], # end of 'conditions'
779 }, # end of target 'remoting_unittests' 773 }, # end of target 'remoting_unittests'
780 ], # end of targets 774 ], # end of targets
781 } 775 }
OLDNEW
« remoting/host/plugin/host_script_object.cc ('K') | « remoting/host/simple_host_process.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698