| 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 'variables': { | 9 'variables': { |
| 10 'version_py_path': '../tools/build/version.py', | 10 'version_py_path': '../tools/build/version.py', |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 'test/urlmon_moniker_unittest.cc', | 114 'test/urlmon_moniker_unittest.cc', |
| 115 'test/util_unittests.cc', | 115 'test/util_unittests.cc', |
| 116 'test/win_event_receiver.h', | 116 'test/win_event_receiver.h', |
| 117 'test/win_event_receiver.cc', | 117 'test/win_event_receiver.cc', |
| 118 'unittest_precompile.h', | 118 'unittest_precompile.h', |
| 119 'unittest_precompile.cc', | 119 'unittest_precompile.cc', |
| 120 'urlmon_upload_data_stream_unittest.cc', | 120 'urlmon_upload_data_stream_unittest.cc', |
| 121 'vtable_patch_manager_unittest.cc', | 121 'vtable_patch_manager_unittest.cc', |
| 122 ], | 122 ], |
| 123 'include_dirs': [ | 123 'include_dirs': [ |
| 124 '<(DEPTH)/breakpad/src', |
| 124 ], | 125 ], |
| 125 'resource_include_dirs': [ | 126 'resource_include_dirs': [ |
| 126 '<(INTERMEDIATE_DIR)', | 127 '<(INTERMEDIATE_DIR)', |
| 127 '<(SHARED_INTERMEDIATE_DIR)', | 128 '<(SHARED_INTERMEDIATE_DIR)', |
| 128 ], | 129 ], |
| 129 'conditions': [ | 130 'conditions': [ |
| 130 # We needed to extract this test from the chrome_frame_unittests because | 131 # We needed to extract this test from the chrome_frame_unittests because |
| 131 # we can't instrument code for coverage if it depends on 3rd party | 132 # we can't instrument code for coverage if it depends on 3rd party |
| 132 # binaries that we don't have PDBs for. See here for more details: | 133 # binaries that we don't have PDBs for. See here for more details: |
| 133 # http://connect.microsoft.com/VisualStudio/feedback/details/176188/can-
not-disable-warning-lnk4099 | 134 # http://connect.microsoft.com/VisualStudio/feedback/details/176188/can-
not-disable-warning-lnk4099 |
| 134 ['coverage==0', { | 135 ['coverage==0', { |
| 135 'dependencies': [ | 136 'dependencies': [ |
| 136 'chrome_frame_npapi', | 137 'chrome_frame_npapi', |
| 137 ], | 138 ], |
| 138 'sources': [ | 139 'sources': [ |
| 139 'chrome_frame_npapi_unittest.cc', | 140 'chrome_frame_npapi_unittest.cc', |
| 140 ], | 141 ], |
| 141 'conditions': [ | 142 'conditions': [ |
| 142 ['OS=="win"', { | 143 ['OS=="win"', { |
| 143 'dependencies': [ | 144 'dependencies': [ |
| 145 '../breakpad/breakpad.gyp:breakpad_handler', |
| 144 # TODO(slightlyoff): Get automation targets working on OS X | 146 # TODO(slightlyoff): Get automation targets working on OS X |
| 145 '../chrome/chrome.gyp:automation', | 147 '../chrome/chrome.gyp:automation', |
| 146 ], | 148 ], |
| 147 }], | 149 }], |
| 148 ], | 150 ], |
| 149 }], | 151 }], |
| 150 ['OS=="win" and buildtype=="Official"', { | 152 ['OS=="win" and buildtype=="Official"', { |
| 151 'configurations': { | 153 'configurations': { |
| 152 'Release': { | 154 'Release': { |
| 153 'msvs_settings': { | 155 'msvs_settings': { |
| (...skipping 936 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1090 ], # 'conditions' | 1092 ], # 'conditions' |
| 1091 } | 1093 } |
| 1092 | 1094 |
| 1093 # vim: shiftwidth=2:et:ai:tabstop=2 | 1095 # vim: shiftwidth=2:et:ai:tabstop=2 |
| 1094 | 1096 |
| 1095 # Local Variables: | 1097 # Local Variables: |
| 1096 # tab-width:2 | 1098 # tab-width:2 |
| 1097 # indent-tabs-mode:nil | 1099 # indent-tabs-mode:nil |
| 1098 # End: | 1100 # End: |
| 1099 # vim: set expandtab tabstop=2 shiftwidth=2: | 1101 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |