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 }, | 8 }, |
9 'includes': [ | 9 'includes': [ |
10 'base.gypi', | 10 'base.gypi', |
(...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
250 'conditions': [ | 250 'conditions': [ |
251 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', { | 251 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', { |
252 'dependencies': [ | 252 'dependencies': [ |
253 # test_suite initializes GTK. | 253 # test_suite initializes GTK. |
254 '../build/linux/system.gyp:gtk', | 254 '../build/linux/system.gyp:gtk', |
255 ], | 255 ], |
256 }], | 256 }], |
257 ], | 257 ], |
258 'sources': [ | 258 'sources': [ |
259 'perftimer.cc', | 259 'perftimer.cc', |
| 260 'test/mock_chrome_application_mac.h', |
| 261 'test/mock_chrome_application_mac.mm', |
260 'test/multiprocess_test.cc', | 262 'test/multiprocess_test.cc', |
261 'test/multiprocess_test.h', | 263 'test/multiprocess_test.h', |
262 'test/perf_test_suite.cc', | 264 'test/perf_test_suite.cc', |
263 'test/perf_test_suite.h', | 265 'test/perf_test_suite.h', |
264 'test/test_file_util.h', | 266 'test/test_file_util.h', |
265 'test/test_file_util_linux.cc', | 267 'test/test_file_util_linux.cc', |
266 'test/test_file_util_mac.cc', | 268 'test/test_file_util_mac.cc', |
267 'test/test_file_util_posix.cc', | 269 'test/test_file_util_posix.cc', |
268 'test/test_file_util_win.cc', | 270 'test/test_file_util_win.cc', |
269 'test/test_suite.cc', | 271 'test/test_suite.cc', |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
321 ], | 323 ], |
322 }], | 324 }], |
323 ], | 325 ], |
324 } | 326 } |
325 | 327 |
326 # Local Variables: | 328 # Local Variables: |
327 # tab-width:2 | 329 # tab-width:2 |
328 # indent-tabs-mode:nil | 330 # indent-tabs-mode:nil |
329 # End: | 331 # End: |
330 # vim: set expandtab tabstop=2 shiftwidth=2: | 332 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |