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 'pyautolib_sources': [ | 7 'pyautolib_sources': [ |
8 'app/chrome_command_ids.h', | 8 'app/chrome_command_ids.h', |
9 'app/chrome_dll_resource.h', | 9 'app/chrome_dll_resource.h', |
10 'common/automation_constants.h', | 10 'common/automation_constants.h', |
(...skipping 3989 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4000 ### If you want to both build and run coverage from your IDE, | 4000 ### If you want to both build and run coverage from your IDE, |
4001 ### use the 'coverage' target. | 4001 ### use the 'coverage' target. |
4002 { | 4002 { |
4003 'target_name': 'coverage_build', | 4003 'target_name': 'coverage_build', |
4004 # do NOT place this in the 'all' list; most won't want it. | 4004 # do NOT place this in the 'all' list; most won't want it. |
4005 # In gyp, booleans are 0/1 not True/False. | 4005 # In gyp, booleans are 0/1 not True/False. |
4006 'suppress_wildcard': 1, | 4006 'suppress_wildcard': 1, |
4007 'type': 'none', | 4007 'type': 'none', |
4008 'dependencies': [ | 4008 'dependencies': [ |
4009 'automated_ui_tests', | 4009 'automated_ui_tests', |
4010 '../app/app.gyp:app_unittests', | |
4011 '../base/base.gyp:base_unittests', | 4010 '../base/base.gyp:base_unittests', |
4012 # browser_tests's use of subprocesses chokes gcov on 10.6? | 4011 # browser_tests's use of subprocesses chokes gcov on 10.6? |
4013 # Disabling for now (enabled on linux/windows below). | 4012 # Disabling for now (enabled on linux/windows below). |
4014 # 'browser_tests', | 4013 # 'browser_tests', |
4015 '../ipc/ipc.gyp:ipc_tests', | 4014 '../ipc/ipc.gyp:ipc_tests', |
4016 '../media/media.gyp:media_unittests', | 4015 '../media/media.gyp:media_unittests', |
4017 'nacl_sandbox_tests', | 4016 'nacl_sandbox_tests', |
4018 'nacl_ui_tests', | 4017 'nacl_ui_tests', |
4019 '../net/net.gyp:net_unittests', | 4018 '../net/net.gyp:net_unittests', |
4020 '../printing/printing.gyp:printing_unittests', | 4019 '../printing/printing.gyp:printing_unittests', |
4021 '../remoting/remoting.gyp:remoting_unittests', | 4020 '../remoting/remoting.gyp:remoting_unittests', |
| 4021 '../sql/sql.gyp:sql_unittests', |
4022 # ui_tests seem unhappy on both Mac and Win when run under | 4022 # ui_tests seem unhappy on both Mac and Win when run under |
4023 # coverage (all tests fail, often with a | 4023 # coverage (all tests fail, often with a |
4024 # "server_->WaitForInitialLoads()"). TODO(jrg): | 4024 # "server_->WaitForInitialLoads()"). TODO(jrg): |
4025 # investigate why. | 4025 # investigate why. |
4026 # 'ui_tests', | 4026 # 'ui_tests', |
4027 'unit_tests', | 4027 'unit_tests', |
4028 ], # 'dependencies' | 4028 ], # 'dependencies' |
4029 'conditions': [ | 4029 'conditions': [ |
4030 ['OS=="win"', { | 4030 ['OS=="win"', { |
4031 'dependencies': [ | 4031 'dependencies': [ |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4129 ] | 4129 ] |
4130 }], # 'coverage!=0' | 4130 }], # 'coverage!=0' |
4131 ], # 'conditions' | 4131 ], # 'conditions' |
4132 } | 4132 } |
4133 | 4133 |
4134 # Local Variables: | 4134 # Local Variables: |
4135 # tab-width:2 | 4135 # tab-width:2 |
4136 # indent-tabs-mode:nil | 4136 # indent-tabs-mode:nil |
4137 # End: | 4137 # End: |
4138 # vim: set expandtab tabstop=2 shiftwidth=2: | 4138 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |