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

Side by Side Diff: remoting/remoting.gyp

Issue 3169047: Add in some infrastructure to make tracing of logical requests broken over async callbacks easier. (Closed) Base URL: git://codf21.jail.google.com/chromium.git
Patch Set: sent Created 10 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/base/tracer.cc ('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) 2010 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2010 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 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 9
10 'target_defaults': { 10 'target_defaults': {
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 109
110 { 110 {
111 'target_name': 'chromoting_base', 111 'target_name': 'chromoting_base',
112 'type': '<(library)', 112 'type': '<(library)',
113 'dependencies': [ 113 'dependencies': [
114 '../gfx/gfx.gyp:gfx', 114 '../gfx/gfx.gyp:gfx',
115 '../media/media.gyp:media', 115 '../media/media.gyp:media',
116 '../third_party/protobuf2/protobuf.gyp:protobuf_lite', 116 '../third_party/protobuf2/protobuf.gyp:protobuf_lite',
117 '../third_party/zlib/zlib.gyp:zlib', 117 '../third_party/zlib/zlib.gyp:zlib',
118 'base/protocol/chromotocol.gyp:chromotocol_proto_lib', 118 'base/protocol/chromotocol.gyp:chromotocol_proto_lib',
119 'base/protocol/chromotocol.gyp:trace_proto_lib',
119 'chromoting_jingle_glue', 120 'chromoting_jingle_glue',
120 # TODO(hclam): Enable VP8 in the build. 121 # TODO(hclam): Enable VP8 in the build.
121 #'third_party/on2/on2.gyp:vp8', 122 #'third_party/on2/on2.gyp:vp8',
122 ], 123 ],
123 'export_dependent_settings': [ 124 'export_dependent_settings': [
124 '../third_party/protobuf2/protobuf.gyp:protobuf_lite', 125 '../third_party/protobuf2/protobuf.gyp:protobuf_lite',
125 'base/protocol/chromotocol.gyp:chromotocol_proto_lib', 126 'base/protocol/chromotocol.gyp:chromotocol_proto_lib',
126 # TODO(hclam): Enable VP8 in the build. 127 # TODO(hclam): Enable VP8 in the build.
127 #'third_party/on2/on2.gyp:vp8', 128 #'third_party/on2/on2.gyp:vp8',
128 ], 129 ],
(...skipping 22 matching lines...) Expand all
151 'base/encoder_zlib.h', 152 'base/encoder_zlib.h',
152 # TODO(hclam): Enable VP8 in the build. 153 # TODO(hclam): Enable VP8 in the build.
153 #'base/encoder_vp8.cc', 154 #'base/encoder_vp8.cc',
154 #'base/encoder_vp8.h', 155 #'base/encoder_vp8.h',
155 'base/multiple_array_input_stream.cc', 156 'base/multiple_array_input_stream.cc',
156 'base/multiple_array_input_stream.h', 157 'base/multiple_array_input_stream.h',
157 'base/protocol_decoder.cc', 158 'base/protocol_decoder.cc',
158 'base/protocol_decoder.h', 159 'base/protocol_decoder.h',
159 'base/protocol_util.cc', 160 'base/protocol_util.cc',
160 'base/protocol_util.h', 161 'base/protocol_util.h',
162 'base/tracer.cc',
163 'base/tracer.h',
161 'base/types.h', 164 'base/types.h',
162 ], 165 ],
163 }, # end of target 'chromoting_base' 166 }, # end of target 'chromoting_base'
164 167
165 { 168 {
166 'target_name': 'chromoting_host', 169 'target_name': 'chromoting_host',
167 'type': '<(library)', 170 'type': '<(library)',
168 'dependencies': [ 171 'dependencies': [
169 'chromoting_base', 172 'chromoting_base',
170 'chromoting_jingle_glue', 173 'chromoting_jingle_glue',
(...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after
403 ], # end of 'conditions' 406 ], # end of 'conditions'
404 }, # end of target 'chromoting_unittests' 407 }, # end of target 'chromoting_unittests'
405 ], # end of targets 408 ], # end of targets
406 } 409 }
407 410
408 # Local Variables: 411 # Local Variables:
409 # tab-width:2 412 # tab-width:2
410 # indent-tabs-mode:nil 413 # indent-tabs-mode:nil
411 # End: 414 # End:
412 # vim: set expandtab tabstop=2 shiftwidth=2: 415 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « remoting/base/tracer.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698