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 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
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': [ | 173 'sources': [ |
174 'linux_util_unittest.cc', | 174 'xdg_util_unittest.cc', |
willchan no longer on Chromium
2010/04/22 23:01:18
It's unfortunate your changelist didn't show the d
| |
175 ], | 175 ], |
176 'dependencies': [ | 176 'dependencies': [ |
177 '../build/linux/system.gyp:gtk', | 177 '../build/linux/system.gyp:gtk', |
178 '../build/linux/system.gyp:nss', | 178 '../build/linux/system.gyp:nss', |
179 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', | 179 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
180 ], | 180 ], |
181 }, { # OS != "linux" and OS != "freebsd" and OS != "openbsd" and OS != "solaris" | 181 }, { # OS != "linux" and OS != "freebsd" and OS != "openbsd" and OS != "solaris" |
182 'sources!': [ | 182 'sources!': [ |
183 'message_pump_glib_unittest.cc', | 183 'message_pump_glib_unittest.cc', |
184 ] | 184 ] |
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
272 ], | 272 ], |
273 }], | 273 }], |
274 ], | 274 ], |
275 } | 275 } |
276 | 276 |
277 # Local Variables: | 277 # Local Variables: |
278 # tab-width:2 | 278 # tab-width:2 |
279 # indent-tabs-mode:nil | 279 # indent-tabs-mode:nil |
280 # End: | 280 # End: |
281 # vim: set expandtab tabstop=2 shiftwidth=2: | 281 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |