OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 # TODO(dmaclach): can we pick this up some other way? Right now it's | 7 # TODO(dmaclach): can we pick this up some other way? Right now it's |
8 # duplicated from chrome.gyp | 8 # duplicated from chrome.gyp |
9 'chromium_code': 1, | 9 'chromium_code': 1, |
10 # Use a consistent MIME-type independent of branding. | 10 # Use a consistent MIME-type independent of branding. |
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
206 }, | 206 }, |
207 }], | 207 }], |
208 ], # conditions | 208 ], # conditions |
209 }], # OS=="mac" | 209 }], # OS=="mac" |
210 ['OS!="win"', { | 210 ['OS!="win"', { |
211 'sources!': [ | 211 'sources!': [ |
212 'host/plugin/host_plugin.def', | 212 'host/plugin/host_plugin.def', |
213 'host/plugin/host_plugin.rc', | 213 'host/plugin/host_plugin.rc', |
214 ], | 214 ], |
215 }], | 215 }], |
216 ['target_arch=="arm"', { | |
217 'dependencies': [ | |
218 '../third_party/libvpx/libvpx.gyp:libvpx_lib', | |
219 ], | |
220 }, { | |
221 'dependencies': [ | |
222 '../third_party/libvpx/libvpx.gyp:libvpx', | |
223 ], | |
224 }], | |
225 ], | 216 ], |
226 }, # end of target 'remoting_host_plugin' | 217 }, # end of target 'remoting_host_plugin' |
227 { | 218 { |
228 'target_name': 'webapp_it2me', | 219 'target_name': 'webapp_it2me', |
229 'type': 'none', | 220 'type': 'none', |
230 'dependencies': [ | 221 'dependencies': [ |
231 'remoting_host_plugin', | 222 'remoting_host_plugin', |
232 ], | 223 ], |
233 'sources': [ | 224 'sources': [ |
234 'webapp/build-webapp.py', | 225 'webapp/build-webapp.py', |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
337 'base/task_thread_proxy.cc', | 328 'base/task_thread_proxy.cc', |
338 'base/task_thread_proxy.h', | 329 'base/task_thread_proxy.h', |
339 'base/tracer.cc', | 330 'base/tracer.cc', |
340 'base/tracer.h', | 331 'base/tracer.h', |
341 'base/types.h', | 332 'base/types.h', |
342 'base/util.cc', | 333 'base/util.cc', |
343 'base/util.h', | 334 'base/util.h', |
344 ], | 335 ], |
345 'conditions': [ | 336 'conditions': [ |
346 ['target_arch=="arm"', { | 337 ['target_arch=="arm"', { |
| 338 'dependencies': [ |
| 339 '../third_party/libvpx/libvpx.gyp:libvpx_lib', |
| 340 ], |
347 'sources!': [ | 341 'sources!': [ |
348 'base/decoder_vp8.cc', | 342 'base/decoder_vp8.cc', |
349 'base/decoder_vp8.h', | 343 'base/decoder_vp8.h', |
350 'base/encoder_vp8.cc', | 344 'base/encoder_vp8.cc', |
351 'base/encoder_vp8.h', | 345 'base/encoder_vp8.h', |
352 ], | 346 ], |
| 347 }, { |
| 348 'dependencies': [ |
| 349 '../third_party/libvpx/libvpx.gyp:libvpx', |
| 350 ], |
353 }], | 351 }], |
354 ], | 352 ], |
355 }, # end of target 'remoting_base' | 353 }, # end of target 'remoting_base' |
356 | 354 |
357 { | 355 { |
358 'target_name': 'remoting_host', | 356 'target_name': 'remoting_host', |
359 'type': 'static_library', | 357 'type': 'static_library', |
360 'dependencies': [ | 358 'dependencies': [ |
361 'remoting_base', | 359 'remoting_base', |
362 'remoting_jingle_glue', | 360 'remoting_jingle_glue', |
(...skipping 460 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
823 ['target_arch=="arm"', { | 821 ['target_arch=="arm"', { |
824 'sources!': [ | 822 'sources!': [ |
825 'base/decoder_vp8_unittest.cc', | 823 'base/decoder_vp8_unittest.cc', |
826 'base/encoder_vp8_unittest.cc', | 824 'base/encoder_vp8_unittest.cc', |
827 ], | 825 ], |
828 }], | 826 }], |
829 ], # end of 'conditions' | 827 ], # end of 'conditions' |
830 }, # end of target 'remoting_unittests' | 828 }, # end of target 'remoting_unittests' |
831 ], # end of targets | 829 ], # end of targets |
832 } | 830 } |
OLD | NEW |