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 'base.gypi', | 10 'base.gypi', |
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
163 'base_i18n', | 163 'base_i18n', |
164 '../testing/gmock.gyp:gmock', | 164 '../testing/gmock.gyp:gmock', |
165 '../testing/gtest.gyp:gtest', | 165 '../testing/gtest.gyp:gtest', |
166 ], | 166 ], |
167 'conditions': [ | 167 'conditions': [ |
168 ['OS == "linux" or OS == "freebsd" or OS == "openbsd" or OS == "solaris"
', { | 168 ['OS == "linux" or OS == "freebsd" or OS == "openbsd" or OS == "solaris"
', { |
169 'sources!': [ | 169 'sources!': [ |
170 'file_version_info_unittest.cc', | 170 'file_version_info_unittest.cc', |
171 'worker_pool_linux_unittest.cc', | 171 'worker_pool_linux_unittest.cc', |
172 ], | 172 ], |
| 173 'sources': [ |
| 174 'linux_util_unittest.cc', |
| 175 ], |
173 'dependencies': [ | 176 'dependencies': [ |
174 '../build/linux/system.gyp:gtk', | 177 '../build/linux/system.gyp:gtk', |
175 '../build/linux/system.gyp:nss', | 178 '../build/linux/system.gyp:nss', |
176 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', | 179 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
177 ], | 180 ], |
178 }, { # OS != "linux" and OS != "freebsd" and OS != "openbsd" and OS !=
"solaris" | 181 }, { # OS != "linux" and OS != "freebsd" and OS != "openbsd" and OS !=
"solaris" |
179 'sources!': [ | 182 'sources!': [ |
180 'message_pump_glib_unittest.cc', | 183 'message_pump_glib_unittest.cc', |
181 ] | 184 ] |
182 }], | 185 }], |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
269 ], | 272 ], |
270 }], | 273 }], |
271 ], | 274 ], |
272 } | 275 } |
273 | 276 |
274 # Local Variables: | 277 # Local Variables: |
275 # tab-width:2 | 278 # tab-width:2 |
276 # indent-tabs-mode:nil | 279 # indent-tabs-mode:nil |
277 # End: | 280 # End: |
278 # vim: set expandtab tabstop=2 shiftwidth=2: | 281 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |