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

Side by Side Diff: remoting/remoting.gyp

Issue 3303001: Basic user access check for chromoting host. (Closed)
Patch Set: - 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/host/in_memory_host_config.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 155 matching lines...) Expand 10 before | Expand all | Expand 10 after
166 }, # end of target 'chromoting_base' 166 }, # end of target 'chromoting_base'
167 167
168 { 168 {
169 'target_name': 'chromoting_host', 169 'target_name': 'chromoting_host',
170 'type': '<(library)', 170 'type': '<(library)',
171 'dependencies': [ 171 'dependencies': [
172 'chromoting_base', 172 'chromoting_base',
173 'chromoting_jingle_glue', 173 'chromoting_jingle_glue',
174 ], 174 ],
175 'sources': [ 175 'sources': [
176 'host/access_verifier.cc',
177 'host/access_verifier.h',
176 'host/capturer.cc', 178 'host/capturer.cc',
177 'host/capturer.h', 179 'host/capturer.h',
178 'host/capturer_fake.cc', 180 'host/capturer_fake.cc',
179 'host/capturer_fake.h', 181 'host/capturer_fake.h',
180 'host/chromoting_host.cc', 182 'host/chromoting_host.cc',
181 'host/chromoting_host.h', 183 'host/chromoting_host.h',
182 'host/chromoting_host_context.cc', 184 'host/chromoting_host_context.cc',
183 'host/chromoting_host_context.h', 185 'host/chromoting_host_context.h',
184 'host/client_connection.cc', 186 'host/client_connection.cc',
185 'host/client_connection.h', 187 'host/client_connection.h',
186 'host/differ.h', 188 'host/differ.h',
187 'host/differ.cc', 189 'host/differ.cc',
188 'host/differ_block.h', 190 'host/differ_block.h',
189 'host/differ_block.cc', 191 'host/differ_block.cc',
190 'host/event_executor.h', 192 'host/event_executor.h',
191 'host/session_manager.cc', 193 'host/session_manager.cc',
192 'host/session_manager.h', 194 'host/session_manager.h',
193 'host/heartbeat_sender.cc', 195 'host/heartbeat_sender.cc',
194 'host/heartbeat_sender.h', 196 'host/heartbeat_sender.h',
195 'host/host_config.cc', 197 'host/host_config.cc',
196 'host/host_config.h', 198 'host/host_config.h',
197 'host/host_key_pair.cc', 199 'host/host_key_pair.cc',
198 'host/host_key_pair.h', 200 'host/host_key_pair.h',
199 'host/json_host_config.cc', 201 'host/json_host_config.cc',
200 'host/json_host_config.h', 202 'host/json_host_config.h',
203 'host/in_memory_host_config.cc',
204 'host/in_memory_host_config.h',
201 ], 205 ],
202 'conditions': [ 206 'conditions': [
203 ['OS=="win"', { 207 ['OS=="win"', {
204 'sources': [ 208 'sources': [
205 'host/capturer_gdi.cc', 209 'host/capturer_gdi.cc',
206 'host/capturer_gdi.h', 210 'host/capturer_gdi.h',
207 'host/event_executor_win.cc', 211 'host/event_executor_win.cc',
208 'host/event_executor_win.h', 212 'host/event_executor_win.h',
209 ], 213 ],
210 }], 214 }],
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
356 'base/decompressor_zlib_unittest.cc', 360 'base/decompressor_zlib_unittest.cc',
357 'base/encoder_verbatim_unittest.cc', 361 'base/encoder_verbatim_unittest.cc',
358 # TODO(hclam): Enable VP8 in the build. 362 # TODO(hclam): Enable VP8 in the build.
359 #'base/encoder_vp8_unittest.cc', 363 #'base/encoder_vp8_unittest.cc',
360 'base/encoder_zlib_unittest.cc', 364 'base/encoder_zlib_unittest.cc',
361 'base/mock_objects.h', 365 'base/mock_objects.h',
362 'base/multiple_array_input_stream_unittest.cc', 366 'base/multiple_array_input_stream_unittest.cc',
363 'base/protocol_decoder_unittest.cc', 367 'base/protocol_decoder_unittest.cc',
364 'client/chromoting_view_unittest.cc', 368 'client/chromoting_view_unittest.cc',
365 'client/mock_objects.h', 369 'client/mock_objects.h',
370 'host/access_verifier_unittest.cc',
366 'host/chromoting_host_context_unittest.cc', 371 'host/chromoting_host_context_unittest.cc',
367 'host/client_connection_unittest.cc', 372 'host/client_connection_unittest.cc',
368 'host/differ_unittest.cc', 373 'host/differ_unittest.cc',
369 'host/differ_block_unittest.cc', 374 'host/differ_block_unittest.cc',
370 'host/heartbeat_sender_unittest.cc', 375 'host/heartbeat_sender_unittest.cc',
371 'host/host_key_pair_unittest.cc', 376 'host/host_key_pair_unittest.cc',
372 'host/json_host_config_unittest.cc', 377 'host/json_host_config_unittest.cc',
373 'host/mock_objects.h', 378 'host/mock_objects.h',
374 'host/session_manager_unittest.cc', 379 'host/session_manager_unittest.cc',
375 'host/test_key_pair.h', 380 'host/test_key_pair.h',
(...skipping 30 matching lines...) Expand all
406 ], # end of 'conditions' 411 ], # end of 'conditions'
407 }, # end of target 'chromoting_unittests' 412 }, # end of target 'chromoting_unittests'
408 ], # end of targets 413 ], # end of targets
409 } 414 }
410 415
411 # Local Variables: 416 # Local Variables:
412 # tab-width:2 417 # tab-width:2
413 # indent-tabs-mode:nil 418 # indent-tabs-mode:nil
414 # End: 419 # End:
415 # vim: set expandtab tabstop=2 shiftwidth=2: 420 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « remoting/host/in_memory_host_config.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698