OLD | NEW |
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 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
165 { | 165 { |
166 'target_name': 'chromoting_host', | 166 'target_name': 'chromoting_host', |
167 'type': '<(library)', | 167 'type': '<(library)', |
168 'dependencies': [ | 168 'dependencies': [ |
169 'chromoting_base', | 169 'chromoting_base', |
170 'chromoting_jingle_glue', | 170 'chromoting_jingle_glue', |
171 ], | 171 ], |
172 'sources': [ | 172 'sources': [ |
173 'host/capturer.cc', | 173 'host/capturer.cc', |
174 'host/capturer.h', | 174 'host/capturer.h', |
| 175 'host/capturer_fake.cc', |
| 176 'host/capturer_fake.h', |
175 'host/chromoting_host.cc', | 177 'host/chromoting_host.cc', |
176 'host/chromoting_host.h', | 178 'host/chromoting_host.h', |
177 'host/chromoting_host_context.cc', | 179 'host/chromoting_host_context.cc', |
178 'host/chromoting_host_context.h', | 180 'host/chromoting_host_context.h', |
179 'host/client_connection.cc', | 181 'host/client_connection.cc', |
180 'host/client_connection.h', | 182 'host/client_connection.h', |
181 'host/differ.h', | 183 'host/differ.h', |
182 'host/differ.cc', | 184 'host/differ.cc', |
183 'host/differ_block.h', | 185 'host/differ_block.h', |
184 'host/differ_block.cc', | 186 'host/differ_block.cc', |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
254 'target_name': 'chromoting_simple_host', | 256 'target_name': 'chromoting_simple_host', |
255 'type': 'executable', | 257 'type': 'executable', |
256 'dependencies': [ | 258 'dependencies': [ |
257 'chromoting_base', | 259 'chromoting_base', |
258 'chromoting_host', | 260 'chromoting_host', |
259 'chromoting_jingle_glue', | 261 'chromoting_jingle_glue', |
260 '../base/base.gyp:base', | 262 '../base/base.gyp:base', |
261 '../base/base.gyp:base_i18n', | 263 '../base/base.gyp:base_i18n', |
262 ], | 264 ], |
263 'sources': [ | 265 'sources': [ |
264 'host/capturer_fake.cc', | |
265 'host/capturer_fake.h', | |
266 'host/capturer_fake_ascii.cc', | 266 'host/capturer_fake_ascii.cc', |
267 'host/capturer_fake_ascii.h', | 267 'host/capturer_fake_ascii.h', |
268 'host/simple_host_process.cc', | 268 'host/simple_host_process.cc', |
269 ], | 269 ], |
270 }, # end of target 'chromoting_simple_host' | 270 }, # end of target 'chromoting_simple_host' |
271 | 271 |
272 { | 272 { |
273 'target_name': 'chromoting_host_keygen', | 273 'target_name': 'chromoting_host_keygen', |
274 'type': 'executable', | 274 'type': 'executable', |
275 'dependencies': [ | 275 'dependencies': [ |
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
406 ], # end of 'conditions' | 406 ], # end of 'conditions' |
407 }, # end of target 'chromoting_unittests' | 407 }, # end of target 'chromoting_unittests' |
408 ], # end of targets | 408 ], # end of targets |
409 } | 409 } |
410 | 410 |
411 # Local Variables: | 411 # Local Variables: |
412 # tab-width:2 | 412 # tab-width:2 |
413 # indent-tabs-mode:nil | 413 # indent-tabs-mode:nil |
414 # End: | 414 # End: |
415 # vim: set expandtab tabstop=2 shiftwidth=2: | 415 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |