| 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 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 'base/decompressor.h', | 152 'base/decompressor.h', |
| 153 'base/decompressor_verbatim.cc', | 153 'base/decompressor_verbatim.cc', |
| 154 'base/decompressor_verbatim.h', | 154 'base/decompressor_verbatim.h', |
| 155 'base/decompressor_zlib.cc', | 155 'base/decompressor_zlib.cc', |
| 156 'base/decompressor_zlib.h', | 156 'base/decompressor_zlib.h', |
| 157 'base/encoder.h', | 157 'base/encoder.h', |
| 158 'base/encoder_vp8.cc', | 158 'base/encoder_vp8.cc', |
| 159 'base/encoder_vp8.h', | 159 'base/encoder_vp8.h', |
| 160 'base/encoder_row_based.cc', | 160 'base/encoder_row_based.cc', |
| 161 'base/encoder_row_based.h', | 161 'base/encoder_row_based.h', |
| 162 'base/rate_counter.cc', |
| 163 'base/rate_counter.h', |
| 164 'base/running_average.cc', |
| 165 'base/running_avarage.h', |
| 162 'base/tracer.cc', | 166 'base/tracer.cc', |
| 163 'base/tracer.h', | 167 'base/tracer.h', |
| 164 'base/types.h', | 168 'base/types.h', |
| 165 'base/util.cc', | 169 'base/util.cc', |
| 166 'base/util.h', | 170 'base/util.h', |
| 167 ], | 171 ], |
| 168 'conditions': [ | 172 'conditions': [ |
| 169 ['target_arch=="arm"', { | 173 ['target_arch=="arm"', { |
| 170 'sources!': [ | 174 'sources!': [ |
| 171 'base/decoder_vp8.cc', | 175 'base/decoder_vp8.cc', |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 265 'target_name': 'chromoting_client', | 269 'target_name': 'chromoting_client', |
| 266 'type': '<(library)', | 270 'type': '<(library)', |
| 267 'dependencies': [ | 271 'dependencies': [ |
| 268 'chromoting_base', | 272 'chromoting_base', |
| 269 'chromoting_jingle_glue', | 273 'chromoting_jingle_glue', |
| 270 'chromoting_protocol', | 274 'chromoting_protocol', |
| 271 ], | 275 ], |
| 272 'sources': [ | 276 'sources': [ |
| 273 'client/chromoting_client.cc', | 277 'client/chromoting_client.cc', |
| 274 'client/chromoting_client.h', | 278 'client/chromoting_client.h', |
| 279 'client/chromoting_stats.cc', |
| 280 'client/chromoting_stats.h', |
| 275 'client/chromoting_view.cc', | 281 'client/chromoting_view.cc', |
| 276 'client/chromoting_view.h', | 282 'client/chromoting_view.h', |
| 277 'client/client_config.h', | 283 'client/client_config.h', |
| 278 'client/client_context.cc', | 284 'client/client_context.cc', |
| 279 'client/client_context.h', | 285 'client/client_context.h', |
| 280 'client/client_util.cc', | 286 'client/client_util.cc', |
| 281 'client/client_util.h', | 287 'client/client_util.h', |
| 282 'client/frame_consumer.h', | 288 'client/frame_consumer.h', |
| 283 'client/input_handler.cc', | 289 'client/input_handler.cc', |
| 284 'client/input_handler.h', | 290 'client/input_handler.h', |
| (...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 572 ], # end of 'conditions' | 578 ], # end of 'conditions' |
| 573 }, # end of target 'chromoting_unittests' | 579 }, # end of target 'chromoting_unittests' |
| 574 ], # end of targets | 580 ], # end of targets |
| 575 } | 581 } |
| 576 | 582 |
| 577 # Local Variables: | 583 # Local Variables: |
| 578 # tab-width:2 | 584 # tab-width:2 |
| 579 # indent-tabs-mode:nil | 585 # indent-tabs-mode:nil |
| 580 # End: | 586 # End: |
| 581 # vim: set expandtab tabstop=2 shiftwidth=2: | 587 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |