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 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
115 'export_dependent_settings': [ | 115 'export_dependent_settings': [ |
116 '../third_party/protobuf2/protobuf.gyp:protobuf_lite', | 116 '../third_party/protobuf2/protobuf.gyp:protobuf_lite', |
117 'base/protocol/chromotocol.gyp:chromotocol_proto_lib', | 117 'base/protocol/chromotocol.gyp:chromotocol_proto_lib', |
118 # TODO(hclam): Enable VP8 in the build. | 118 # TODO(hclam): Enable VP8 in the build. |
119 #'third_party/on2/on2.gyp:vp8', | 119 #'third_party/on2/on2.gyp:vp8', |
120 ], | 120 ], |
121 # This target needs a hard dependency because dependent targets | 121 # This target needs a hard dependency because dependent targets |
122 # depend on chromotocol_proto_lib for headers. | 122 # depend on chromotocol_proto_lib for headers. |
123 'hard_dependency': 1, | 123 'hard_dependency': 1, |
124 'sources': [ | 124 'sources': [ |
| 125 'base/compressor.h', |
| 126 'base/compressor_zlib.cc', |
| 127 'base/compressor_zlib.h', |
125 'base/constants.cc', | 128 'base/constants.cc', |
126 'base/constants.h', | 129 'base/constants.h', |
127 'base/lossless_compressor.h', | 130 'base/decompressor.h', |
| 131 'base/decompressor_zlib.cc', |
| 132 'base/decompressor_zlib.h', |
128 'base/multiple_array_input_stream.cc', | 133 'base/multiple_array_input_stream.cc', |
129 'base/multiple_array_input_stream.h', | 134 'base/multiple_array_input_stream.h', |
130 'base/protocol_decoder.cc', | 135 'base/protocol_decoder.cc', |
131 'base/protocol_decoder.h', | 136 'base/protocol_decoder.h', |
132 'base/protocol_util.cc', | 137 'base/protocol_util.cc', |
133 'base/protocol_util.h', | 138 'base/protocol_util.h', |
134 'base/compressor_zlib.cc', | |
135 'base/compressor_zlib.h', | |
136 ], | 139 ], |
137 }, # end of target 'chromoting_base' | 140 }, # end of target 'chromoting_base' |
138 | 141 |
139 { | 142 { |
140 'target_name': 'chromoting_host', | 143 'target_name': 'chromoting_host', |
141 'type': '<(library)', | 144 'type': '<(library)', |
142 'dependencies': [ | 145 'dependencies': [ |
143 'chromoting_base', | 146 'chromoting_base', |
144 'chromoting_jingle_glue', | 147 'chromoting_jingle_glue', |
145 ], | 148 ], |
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
321 '../base/base.gyp:base_i18n', | 324 '../base/base.gyp:base_i18n', |
322 '../gfx/gfx.gyp:gfx', | 325 '../gfx/gfx.gyp:gfx', |
323 '../testing/gmock.gyp:gmock', | 326 '../testing/gmock.gyp:gmock', |
324 '../testing/gtest.gyp:gtest', | 327 '../testing/gtest.gyp:gtest', |
325 ], | 328 ], |
326 'include_dirs': [ | 329 'include_dirs': [ |
327 '../testing/gmock/include', | 330 '../testing/gmock/include', |
328 ], | 331 ], |
329 'sources': [ | 332 'sources': [ |
330 'base/compressor_zlib_unittest.cc', | 333 'base/compressor_zlib_unittest.cc', |
| 334 'base/decompressor_zlib_unittest.cc', |
331 'base/mock_objects.h', | 335 'base/mock_objects.h', |
332 'base/multiple_array_input_stream_unittest.cc', | 336 'base/multiple_array_input_stream_unittest.cc', |
333 'base/protocol_decoder_unittest.cc', | 337 'base/protocol_decoder_unittest.cc', |
334 'client/mock_objects.h', | 338 'client/mock_objects.h', |
335 'client/decoder_verbatim_unittest.cc', | 339 'client/decoder_verbatim_unittest.cc', |
336 'host/chromoting_host_context_unittest.cc', | 340 'host/chromoting_host_context_unittest.cc', |
337 'host/client_connection_unittest.cc', | 341 'host/client_connection_unittest.cc', |
338 'host/differ_unittest.cc', | 342 'host/differ_unittest.cc', |
339 'host/differ_block_unittest.cc', | 343 'host/differ_block_unittest.cc', |
340 'host/json_host_config_unittest.cc', | 344 'host/json_host_config_unittest.cc', |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
374 ], # end of 'conditions' | 378 ], # end of 'conditions' |
375 }, # end of target 'chromoting_unittests' | 379 }, # end of target 'chromoting_unittests' |
376 ], # end of targets | 380 ], # end of targets |
377 } | 381 } |
378 | 382 |
379 # Local Variables: | 383 # Local Variables: |
380 # tab-width:2 | 384 # tab-width:2 |
381 # indent-tabs-mode:nil | 385 # indent-tabs-mode:nil |
382 # End: | 386 # End: |
383 # vim: set expandtab tabstop=2 shiftwidth=2: | 387 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |