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 'includes': [ | 9 'includes': [ |
10 '../build/common.gypi', | 10 '../build/common.gypi', |
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
91 'audio/win/audio_output_win_unittest.cc', | 91 'audio/win/audio_output_win_unittest.cc', |
92 'base/data_buffer_unittest.cc', | 92 'base/data_buffer_unittest.cc', |
93 'base/pipeline_impl_unittest.cc', | 93 'base/pipeline_impl_unittest.cc', |
94 'base/run_all_unittests.cc', | 94 'base/run_all_unittests.cc', |
95 'base/video_frame_impl_unittest.cc', | 95 'base/video_frame_impl_unittest.cc', |
96 'base/yuv_convert_unittest.cc', | 96 'base/yuv_convert_unittest.cc', |
97 'filters/file_data_source_unittest.cc', | 97 'filters/file_data_source_unittest.cc', |
98 'filters/video_decoder_unittest.cc', | 98 'filters/video_decoder_unittest.cc', |
99 'filters/video_renderer_unittest.cc', | 99 'filters/video_renderer_unittest.cc', |
100 ], | 100 ], |
| 101 'conditions': [ |
| 102 ['OS=="linux"', { |
| 103 'dependencies': [ |
| 104 # Needed for the following #include chain: |
| 105 # base/run_all_unittests.cc |
| 106 # ../base/test_suite.h |
| 107 # gtk/gtk.h |
| 108 '../build/linux/system.gyp:gtk', |
| 109 ], |
| 110 }], |
| 111 ], |
101 }, | 112 }, |
102 ], | 113 ], |
103 } | 114 } |
OLD | NEW |