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 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
151 'base/encoder_zlib.h', | 151 'base/encoder_zlib.h', |
152 # TODO(hclam): Enable VP8 in the build. | 152 # TODO(hclam): Enable VP8 in the build. |
153 #'base/encoder_vp8.cc', | 153 #'base/encoder_vp8.cc', |
154 #'base/encoder_vp8.h', | 154 #'base/encoder_vp8.h', |
155 'base/multiple_array_input_stream.cc', | 155 'base/multiple_array_input_stream.cc', |
156 'base/multiple_array_input_stream.h', | 156 'base/multiple_array_input_stream.h', |
157 'base/protocol_decoder.cc', | 157 'base/protocol_decoder.cc', |
158 'base/protocol_decoder.h', | 158 'base/protocol_decoder.h', |
159 'base/protocol_util.cc', | 159 'base/protocol_util.cc', |
160 'base/protocol_util.h', | 160 'base/protocol_util.h', |
| 161 'base/types.h', |
161 ], | 162 ], |
162 }, # end of target 'chromoting_base' | 163 }, # end of target 'chromoting_base' |
163 | 164 |
164 { | 165 { |
165 'target_name': 'chromoting_host', | 166 'target_name': 'chromoting_host', |
166 'type': '<(library)', | 167 'type': '<(library)', |
167 'dependencies': [ | 168 'dependencies': [ |
168 'chromoting_base', | 169 'chromoting_base', |
169 'chromoting_jingle_glue', | 170 'chromoting_jingle_glue', |
170 ], | 171 ], |
(...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
405 ], # end of 'conditions' | 406 ], # end of 'conditions' |
406 }, # end of target 'chromoting_unittests' | 407 }, # end of target 'chromoting_unittests' |
407 ], # end of targets | 408 ], # end of targets |
408 } | 409 } |
409 | 410 |
410 # Local Variables: | 411 # Local Variables: |
411 # tab-width:2 | 412 # tab-width:2 |
412 # indent-tabs-mode:nil | 413 # indent-tabs-mode:nil |
413 # End: | 414 # End: |
414 # vim: set expandtab tabstop=2 shiftwidth=2: | 415 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |