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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
107 ], # end of 'conditions' | 107 ], # end of 'conditions' |
108 }, # end of target 'chromoting_plugin' | 108 }, # end of target 'chromoting_plugin' |
109 | 109 |
110 { | 110 { |
111 'target_name': 'chromoting_base', | 111 'target_name': 'chromoting_base', |
112 'type': '<(library)', | 112 'type': '<(library)', |
113 'dependencies': [ | 113 'dependencies': [ |
114 '../gfx/gfx.gyp:gfx', | 114 '../gfx/gfx.gyp:gfx', |
115 '../media/media.gyp:media', | 115 '../media/media.gyp:media', |
116 '../third_party/protobuf2/protobuf.gyp:protobuf_lite', | 116 '../third_party/protobuf2/protobuf.gyp:protobuf_lite', |
| 117 '../third_party/libvpx/libvpx.gyp:libvpx_include', |
117 '../third_party/zlib/zlib.gyp:zlib', | 118 '../third_party/zlib/zlib.gyp:zlib', |
118 'base/protocol/chromotocol.gyp:chromotocol_proto_lib', | 119 'base/protocol/chromotocol.gyp:chromotocol_proto_lib', |
119 'base/protocol/chromotocol.gyp:trace_proto_lib', | 120 'base/protocol/chromotocol.gyp:trace_proto_lib', |
120 'chromoting_jingle_glue', | 121 'chromoting_jingle_glue', |
121 # TODO(hclam): Enable VP8 in the build. | |
122 #'third_party/on2/on2.gyp:vp8', | |
123 ], | 122 ], |
124 'export_dependent_settings': [ | 123 'export_dependent_settings': [ |
125 '../third_party/protobuf2/protobuf.gyp:protobuf_lite', | 124 '../third_party/protobuf2/protobuf.gyp:protobuf_lite', |
126 'base/protocol/chromotocol.gyp:chromotocol_proto_lib', | 125 'base/protocol/chromotocol.gyp:chromotocol_proto_lib', |
127 # TODO(hclam): Enable VP8 in the build. | |
128 #'third_party/on2/on2.gyp:vp8', | |
129 ], | 126 ], |
130 # This target needs a hard dependency because dependent targets | 127 # This target needs a hard dependency because dependent targets |
131 # depend on chromotocol_proto_lib for headers. | 128 # depend on chromotocol_proto_lib for headers. |
132 'hard_dependency': 1, | 129 'hard_dependency': 1, |
133 'sources': [ | 130 'sources': [ |
134 'base/capture_data.h', | 131 'base/capture_data.h', |
135 'base/compressor.h', | 132 'base/compressor.h', |
136 'base/compressor_zlib.cc', | 133 'base/compressor_zlib.cc', |
137 'base/compressor_zlib.h', | 134 'base/compressor_zlib.h', |
138 'base/constants.cc', | 135 'base/constants.cc', |
139 'base/constants.h', | 136 'base/constants.h', |
140 'base/decoder.h', | 137 'base/decoder.h', |
141 'base/decoder_verbatim.cc', | 138 'base/decoder_verbatim.cc', |
142 'base/decoder_verbatim.h', | 139 'base/decoder_verbatim.h', |
143 'base/decoder_zlib.cc', | 140 'base/decoder_zlib.cc', |
144 'base/decoder_zlib.h', | 141 'base/decoder_zlib.h', |
145 'base/decompressor.h', | 142 'base/decompressor.h', |
146 'base/decompressor_zlib.cc', | 143 'base/decompressor_zlib.cc', |
147 'base/decompressor_zlib.h', | 144 'base/decompressor_zlib.h', |
148 'base/encoder.h', | 145 'base/encoder.h', |
149 'base/encoder_verbatim.cc', | 146 'base/encoder_verbatim.cc', |
150 'base/encoder_verbatim.h', | 147 'base/encoder_verbatim.h', |
| 148 'base/encoder_vp8.cc', |
| 149 'base/encoder_vp8.h', |
151 'base/encoder_zlib.cc', | 150 'base/encoder_zlib.cc', |
152 'base/encoder_zlib.h', | 151 'base/encoder_zlib.h', |
153 # TODO(hclam): Enable VP8 in the build. | |
154 #'base/encoder_vp8.cc', | |
155 #'base/encoder_vp8.h', | |
156 'base/multiple_array_input_stream.cc', | 152 'base/multiple_array_input_stream.cc', |
157 'base/multiple_array_input_stream.h', | 153 'base/multiple_array_input_stream.h', |
158 'base/protocol_decoder.cc', | 154 'base/protocol_decoder.cc', |
159 'base/protocol_decoder.h', | 155 'base/protocol_decoder.h', |
160 'base/protocol_util.cc', | 156 'base/protocol_util.cc', |
161 'base/protocol_util.h', | 157 'base/protocol_util.h', |
162 'base/tracer.cc', | 158 'base/tracer.cc', |
163 'base/tracer.h', | 159 'base/tracer.h', |
164 'base/types.h', | 160 'base/types.h', |
165 ], | 161 ], |
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
358 '../testing/gmock/include', | 354 '../testing/gmock/include', |
359 ], | 355 ], |
360 'sources': [ | 356 'sources': [ |
361 'base/codec_test.cc', | 357 'base/codec_test.cc', |
362 'base/codec_test.h', | 358 'base/codec_test.h', |
363 'base/compressor_zlib_unittest.cc', | 359 'base/compressor_zlib_unittest.cc', |
364 'base/decoder_verbatim_unittest.cc', | 360 'base/decoder_verbatim_unittest.cc', |
365 'base/decoder_zlib_unittest.cc', | 361 'base/decoder_zlib_unittest.cc', |
366 'base/decompressor_zlib_unittest.cc', | 362 'base/decompressor_zlib_unittest.cc', |
367 'base/encoder_verbatim_unittest.cc', | 363 'base/encoder_verbatim_unittest.cc', |
368 # TODO(hclam): Enable VP8 in the build. | 364 'base/encoder_vp8_unittest.cc', |
369 #'base/encoder_vp8_unittest.cc', | |
370 'base/encoder_zlib_unittest.cc', | 365 'base/encoder_zlib_unittest.cc', |
371 'base/mock_objects.h', | 366 'base/mock_objects.h', |
372 'base/multiple_array_input_stream_unittest.cc', | 367 'base/multiple_array_input_stream_unittest.cc', |
373 'base/protocol_decoder_unittest.cc', | 368 'base/protocol_decoder_unittest.cc', |
374 'client/chromoting_view_unittest.cc', | 369 'client/chromoting_view_unittest.cc', |
375 'client/mock_objects.h', | 370 'client/mock_objects.h', |
376 'host/access_verifier_unittest.cc', | 371 'host/access_verifier_unittest.cc', |
377 'host/chromoting_host_context_unittest.cc', | 372 'host/chromoting_host_context_unittest.cc', |
378 'host/client_connection_unittest.cc', | 373 'host/client_connection_unittest.cc', |
379 'host/differ_unittest.cc', | 374 'host/differ_unittest.cc', |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
417 ], # end of 'conditions' | 412 ], # end of 'conditions' |
418 }, # end of target 'chromoting_unittests' | 413 }, # end of target 'chromoting_unittests' |
419 ], # end of targets | 414 ], # end of targets |
420 } | 415 } |
421 | 416 |
422 # Local Variables: | 417 # Local Variables: |
423 # tab-width:2 | 418 # tab-width:2 |
424 # indent-tabs-mode:nil | 419 # indent-tabs-mode:nil |
425 # End: | 420 # End: |
426 # vim: set expandtab tabstop=2 shiftwidth=2: | 421 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |