| 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 'player_x11_renderer%': 'x11', | 8 'player_x11_renderer%': 'x11', |
| 9 }, | 9 }, |
| 10 'targets': [ | 10 'targets': [ |
| (...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 195 'filters/ffmpeg_video_decode_engine_unittest.cc', | 195 'filters/ffmpeg_video_decode_engine_unittest.cc', |
| 196 'filters/file_data_source_unittest.cc', | 196 'filters/file_data_source_unittest.cc', |
| 197 'filters/video_decoder_impl_unittest.cc', | 197 'filters/video_decoder_impl_unittest.cc', |
| 198 'filters/video_renderer_base_unittest.cc', | 198 'filters/video_renderer_base_unittest.cc', |
| 199 'omx/mock_omx.cc', | 199 'omx/mock_omx.cc', |
| 200 'omx/mock_omx.h', | 200 'omx/mock_omx.h', |
| 201 'omx/omx_codec_unittest.cc', | 201 'omx/omx_codec_unittest.cc', |
| 202 'omx/omx_input_buffer_unittest.cc', | 202 'omx/omx_input_buffer_unittest.cc', |
| 203 ], | 203 ], |
| 204 'conditions': [ | 204 'conditions': [ |
| 205 ['OS=="linux" or OS=="freebsd"', { | 205 ['OS=="linux" or OS=="freebsd" or OS=="solaris"', { |
| 206 'dependencies': [ | 206 'dependencies': [ |
| 207 # Needed for the following #include chain: | 207 # Needed for the following #include chain: |
| 208 # base/run_all_unittests.cc | 208 # base/run_all_unittests.cc |
| 209 # ../base/test_suite.h | 209 # ../base/test_suite.h |
| 210 # gtk/gtk.h | 210 # gtk/gtk.h |
| 211 '../build/linux/system.gyp:gtk', | 211 '../build/linux/system.gyp:gtk', |
| 212 ], | 212 ], |
| 213 'conditions': [ | 213 'conditions': [ |
| 214 ['linux_use_tcmalloc==1', { | 214 ['linux_use_tcmalloc==1', { |
| 215 'dependencies': [ | 215 'dependencies': [ |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 283 { | 283 { |
| 284 'target_name': 'omx_unittests', | 284 'target_name': 'omx_unittests', |
| 285 'type': 'executable', | 285 'type': 'executable', |
| 286 'dependencies': [ | 286 'dependencies': [ |
| 287 'omx_wrapper', | 287 'omx_wrapper', |
| 288 '../base/base.gyp:base', | 288 '../base/base.gyp:base', |
| 289 '../base/base.gyp:base_i18n', | 289 '../base/base.gyp:base_i18n', |
| 290 '../testing/gtest.gyp:gtest', | 290 '../testing/gtest.gyp:gtest', |
| 291 ], | 291 ], |
| 292 'conditions': [ | 292 'conditions': [ |
| 293 ['OS=="linux" or OS=="freebsd"', { | 293 ['OS=="linux" or OS=="freebsd" or OS=="solaris"', { |
| 294 'dependencies': [ | 294 'dependencies': [ |
| 295 '../build/linux/system.gyp:gtk', | 295 '../build/linux/system.gyp:gtk', |
| 296 ], | 296 ], |
| 297 }], | 297 }], |
| 298 ], | 298 ], |
| 299 'sources': [ | 299 'sources': [ |
| 300 'omx/omx_unittest.cc', | 300 'omx/omx_unittest.cc', |
| 301 'omx/run_all_unittests.cc', | 301 'omx/run_all_unittests.cc', |
| 302 ], | 302 ], |
| 303 }, | 303 }, |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 419 ], | 419 ], |
| 420 }], | 420 }], |
| 421 ], | 421 ], |
| 422 } | 422 } |
| 423 | 423 |
| 424 # Local Variables: | 424 # Local Variables: |
| 425 # tab-width:2 | 425 # tab-width:2 |
| 426 # indent-tabs-mode:nil | 426 # indent-tabs-mode:nil |
| 427 # End: | 427 # End: |
| 428 # vim: set expandtab tabstop=2 shiftwidth=2: | 428 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |