| OLD | NEW |
| 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 'target_defaults': { | 9 'target_defaults': { |
| 10 'conditions': [ | 10 'conditions': [ |
| (...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 'tools/wav_ola_test.cc' | 231 'tools/wav_ola_test.cc' |
| 232 ], | 232 ], |
| 233 }, | 233 }, |
| 234 { | 234 { |
| 235 'target_name': 'qt_faststart', | 235 'target_name': 'qt_faststart', |
| 236 'type': 'executable', | 236 'type': 'executable', |
| 237 'sources': [ | 237 'sources': [ |
| 238 'tools/qt_faststart.c' | 238 'tools/qt_faststart.c' |
| 239 ], | 239 ], |
| 240 }, | 240 }, |
| 241 { | |
| 242 'target_name': 'omx_test', | |
| 243 'type': 'executable', | |
| 244 'dependencies': [ | |
| 245 '../base/base.gyp:base', | |
| 246 '../third_party/openmax/openmax.gyp:il', | |
| 247 ], | |
| 248 'sources': [ | |
| 249 'omx/input_buffer.cc', | |
| 250 'omx/input_buffer.h', | |
| 251 'omx/omx_test.cc', | |
| 252 'omx/omx_video_decoder.cc', | |
| 253 'omx/omx_video_decoder.h', | |
| 254 ], | |
| 255 }, | |
| 256 ], | 241 ], |
| 257 'conditions': [ | 242 'conditions': [ |
| 258 ['OS=="win"', { | 243 ['OS=="win"', { |
| 259 'targets': [ | 244 'targets': [ |
| 260 { | 245 { |
| 261 'target_name': 'media_player', | 246 'target_name': 'media_player', |
| 262 'type': 'executable', | 247 'type': 'executable', |
| 263 'dependencies': [ | 248 'dependencies': [ |
| 264 'media', | 249 'media', |
| 265 '../base/base.gyp:base', | 250 '../base/base.gyp:base', |
| (...skipping 27 matching lines...) Expand all Loading... |
| 293 ], | 278 ], |
| 294 }], | 279 }], |
| 295 ], | 280 ], |
| 296 } | 281 } |
| 297 | 282 |
| 298 # Local Variables: | 283 # Local Variables: |
| 299 # tab-width:2 | 284 # tab-width:2 |
| 300 # indent-tabs-mode:nil | 285 # indent-tabs-mode:nil |
| 301 # End: | 286 # End: |
| 302 # vim: set expandtab tabstop=2 shiftwidth=2: | 287 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |