| OLD | NEW | 
|    1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. |    1 # Copyright (c) 2011 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 294 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  305       'export_dependent_settings': [ |  305       'export_dependent_settings': [ | 
|  306         'base', |  306         'base', | 
|  307       ], |  307       ], | 
|  308       'conditions': [ |  308       'conditions': [ | 
|  309         ['toolkit_uses_gtk==1', { |  309         ['toolkit_uses_gtk==1', { | 
|  310           'dependencies': [ |  310           'dependencies': [ | 
|  311             # test_suite initializes GTK. |  311             # test_suite initializes GTK. | 
|  312             '../build/linux/system.gyp:gtk', |  312             '../build/linux/system.gyp:gtk', | 
|  313           ], |  313           ], | 
|  314         }], |  314         }], | 
 |  315         ['os_posix==0', { | 
 |  316           'sources!': [ | 
 |  317             'test/scoped_locale.cc', | 
 |  318             'test/scoped_locale.h', | 
 |  319           ], | 
 |  320         }], | 
|  315       ], |  321       ], | 
|  316       'sources': [ |  322       'sources': [ | 
|  317         'perftimer.cc', |  323         'perftimer.cc', | 
|  318         'test/mock_chrome_application_mac.h', |  324         'test/mock_chrome_application_mac.h', | 
|  319         'test/mock_chrome_application_mac.mm', |  325         'test/mock_chrome_application_mac.mm', | 
|  320         'test/multiprocess_test.cc', |  326         'test/multiprocess_test.cc', | 
|  321         'test/multiprocess_test.h', |  327         'test/multiprocess_test.h', | 
|  322         'test/perf_test_suite.cc', |  328         'test/perf_test_suite.cc', | 
|  323         'test/perf_test_suite.h', |  329         'test/perf_test_suite.h', | 
 |  330         'test/scoped_locale.cc', | 
 |  331         'test/scoped_locale.h', | 
|  324         'test/test_file_util.h', |  332         'test/test_file_util.h', | 
|  325         'test/test_file_util_linux.cc', |  333         'test/test_file_util_linux.cc', | 
|  326         'test/test_file_util_mac.cc', |  334         'test/test_file_util_mac.cc', | 
|  327         'test/test_file_util_posix.cc', |  335         'test/test_file_util_posix.cc', | 
|  328         'test/test_file_util_win.cc', |  336         'test/test_file_util_win.cc', | 
|  329         'test/test_suite.cc', |  337         'test/test_suite.cc', | 
|  330         'test/test_suite.h', |  338         'test/test_suite.h', | 
|  331         'test/test_switches.cc', |  339         'test/test_switches.cc', | 
|  332         'test/test_switches.h', |  340         'test/test_switches.h', | 
|  333         'test/test_timeouts.cc', |  341         'test/test_timeouts.cc', | 
|  334         'test/test_timeouts.h', |  342         'test/test_timeouts.h', | 
|  335         'test/test_util.h', |  | 
|  336       ], |  343       ], | 
|  337     }, |  344     }, | 
|  338     { |  345     { | 
|  339       'target_name': 'test_support_perf', |  346       'target_name': 'test_support_perf', | 
|  340       'type': 'static_library', |  347       'type': 'static_library', | 
|  341       'dependencies': [ |  348       'dependencies': [ | 
|  342         'base', |  349         'base', | 
|  343         '../testing/gtest.gyp:gtest', |  350         '../testing/gtest.gyp:gtest', | 
|  344       ], |  351       ], | 
|  345       'sources': [ |  352       'sources': [ | 
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  382       ], |  389       ], | 
|  383     }], |  390     }], | 
|  384   ], |  391   ], | 
|  385 } |  392 } | 
|  386  |  393  | 
|  387 # Local Variables: |  394 # Local Variables: | 
|  388 # tab-width:2 |  395 # tab-width:2 | 
|  389 # indent-tabs-mode:nil |  396 # indent-tabs-mode:nil | 
|  390 # End: |  397 # End: | 
|  391 # vim: set expandtab tabstop=2 shiftwidth=2: |  398 # vim: set expandtab tabstop=2 shiftwidth=2: | 
| OLD | NEW |