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

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: time Created 9 years, 4 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 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 # depends on. See comments in chromoting_instance.cc for details. 128 # depends on. See comments in chromoting_instance.cc for details.
129 # crbug.com/74951 129 # crbug.com/74951
130 '<(DEPTH)/webkit/support/webkit_support.gyp:glue', 130 '<(DEPTH)/webkit/support/webkit_support.gyp:glue',
131 '<(DEPTH)/skia/skia.gyp:skia', 131 '<(DEPTH)/skia/skia.gyp:skia',
132 ], 132 ],
133 'sources': [ 133 'sources': [
134 'client/plugin/chromoting_instance.cc', 134 'client/plugin/chromoting_instance.cc',
135 'client/plugin/chromoting_instance.h', 135 'client/plugin/chromoting_instance.h',
136 'client/plugin/chromoting_scriptable_object.cc', 136 'client/plugin/chromoting_scriptable_object.cc',
137 'client/plugin/chromoting_scriptable_object.h', 137 'client/plugin/chromoting_scriptable_object.h',
138 'client/plugin/pepper_client_logger.cc',
139 'client/plugin/pepper_client_logger.h',
140 'client/plugin/pepper_entrypoints.cc', 138 'client/plugin/pepper_entrypoints.cc',
141 'client/plugin/pepper_entrypoints.h', 139 'client/plugin/pepper_entrypoints.h',
142 'client/plugin/pepper_input_handler.cc', 140 'client/plugin/pepper_input_handler.cc',
143 'client/plugin/pepper_input_handler.h', 141 'client/plugin/pepper_input_handler.h',
144 'client/plugin/pepper_port_allocator_session.cc', 142 'client/plugin/pepper_port_allocator_session.cc',
145 'client/plugin/pepper_port_allocator_session.h', 143 'client/plugin/pepper_port_allocator_session.h',
146 'client/plugin/pepper_view.cc', 144 'client/plugin/pepper_view.cc',
147 'client/plugin/pepper_view.h', 145 'client/plugin/pepper_view.h',
148 'client/plugin/pepper_view_proxy.cc', 146 'client/plugin/pepper_view_proxy.cc',
149 'client/plugin/pepper_view_proxy.h', 147 'client/plugin/pepper_view_proxy.h',
(...skipping 12 matching lines...) Expand all
162 'dependencies': [ 160 'dependencies': [
163 'remoting_base', 161 'remoting_base',
164 'remoting_host', 162 'remoting_host',
165 'remoting_jingle_glue', 163 'remoting_jingle_glue',
166 '../third_party/npapi/npapi.gyp:npapi', 164 '../third_party/npapi/npapi.gyp:npapi',
167 ], 165 ],
168 'sources': [ 166 'sources': [
169 'host/plugin/host_plugin.cc', 167 'host/plugin/host_plugin.cc',
170 'host/plugin/host_plugin.def', 168 'host/plugin/host_plugin.def',
171 'host/plugin/host_plugin.rc', 169 'host/plugin/host_plugin.rc',
172 'host/plugin/host_plugin_logger.cc',
173 'host/plugin/host_plugin_logger.h',
174 'host/plugin/host_plugin_resource.h', 170 'host/plugin/host_plugin_resource.h',
175 'host/plugin/host_plugin_utils.cc', 171 'host/plugin/host_plugin_utils.cc',
176 'host/plugin/host_plugin_utils.h', 172 'host/plugin/host_plugin_utils.h',
177 'host/plugin/host_script_object.cc', 173 'host/plugin/host_script_object.cc',
178 'host/plugin/host_script_object.h', 174 'host/plugin/host_script_object.h',
179 ], 175 ],
180 'conditions': [ 176 'conditions': [
181 ['OS=="mac"', { 177 ['OS=="mac"', {
182 'mac_bundle': 1, 178 'mac_bundle': 1,
183 'xcode_settings': { 179 'xcode_settings': {
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
311 'base/decompressor.h', 307 'base/decompressor.h',
312 'base/decompressor_verbatim.cc', 308 'base/decompressor_verbatim.cc',
313 'base/decompressor_verbatim.h', 309 'base/decompressor_verbatim.h',
314 'base/decompressor_zlib.cc', 310 'base/decompressor_zlib.cc',
315 'base/decompressor_zlib.h', 311 'base/decompressor_zlib.h',
316 'base/encoder.h', 312 'base/encoder.h',
317 'base/encoder_vp8.cc', 313 'base/encoder_vp8.cc',
318 'base/encoder_vp8.h', 314 'base/encoder_vp8.h',
319 'base/encoder_row_based.cc', 315 'base/encoder_row_based.cc',
320 'base/encoder_row_based.h', 316 'base/encoder_row_based.h',
321 'base/logger.cc',
322 'base/logger.h',
323 'base/rate_counter.cc', 317 'base/rate_counter.cc',
324 'base/rate_counter.h', 318 'base/rate_counter.h',
325 'base/running_average.cc', 319 'base/running_average.cc',
326 'base/running_average.h', 320 'base/running_average.h',
321 'base/task_thread_proxy.cc',
322 'base/task_thread_proxy.h',
327 'base/tracer.cc', 323 'base/tracer.cc',
328 'base/tracer.h', 324 'base/tracer.h',
329 'base/types.h', 325 'base/types.h',
330 'base/util.cc', 326 'base/util.cc',
331 'base/util.h', 327 'base/util.h',
332 ], 328 ],
333 'conditions': [ 329 'conditions': [
334 ['target_arch=="arm"', { 330 ['target_arch=="arm"', {
335 'sources!': [ 331 'sources!': [
336 'base/decoder_vp8.cc', 332 'base/decoder_vp8.cc',
(...skipping 458 matching lines...) Expand 10 before | Expand all | Expand 10 after
795 ['target_arch=="arm"', { 791 ['target_arch=="arm"', {
796 'sources!': [ 792 'sources!': [
797 'base/decoder_vp8_unittest.cc', 793 'base/decoder_vp8_unittest.cc',
798 'base/encoder_vp8_unittest.cc', 794 'base/encoder_vp8_unittest.cc',
799 ], 795 ],
800 }], 796 }],
801 ], # end of 'conditions' 797 ], # end of 'conditions'
802 }, # end of target 'remoting_unittests' 798 }, # end of target 'remoting_unittests'
803 ], # end of targets 799 ], # end of targets
804 } 800 }
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