| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| (...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 'sources': [ | 168 'sources': [ |
| 169 'app/shell_main.cc', | 169 'app/shell_main.cc', |
| 170 ], | 170 ], |
| 171 'conditions': [ | 171 'conditions': [ |
| 172 ['OS=="win"', { | 172 ['OS=="win"', { |
| 173 'msvs_settings': { | 173 'msvs_settings': { |
| 174 'VCLinkerTool': { | 174 'VCLinkerTool': { |
| 175 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS | 175 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS |
| 176 }, | 176 }, |
| 177 }, | 177 }, |
| 178 'msvs_large_pdb': 1, | |
| 179 'dependencies': [ | 178 'dependencies': [ |
| 180 '<(DEPTH)/sandbox/sandbox.gyp:sandbox', | 179 '<(DEPTH)/sandbox/sandbox.gyp:sandbox', |
| 181 ], | 180 ], |
| 182 }], | 181 }], |
| 183 ], | 182 ], |
| 184 }, | 183 }, |
| 185 { | 184 { |
| 186 'target_name': 'app_shell_browsertests', | 185 'target_name': 'app_shell_browsertests', |
| 187 'type': '<(gtest_target_type)', | 186 'type': '<(gtest_target_type)', |
| 188 'dependencies': [ | 187 'dependencies': [ |
| 189 'app_shell_lib', | 188 'app_shell_lib', |
| 190 # TODO(yoz): find the right deps | 189 # TODO(yoz): find the right deps |
| 191 '<(DEPTH)/base/base.gyp:test_support_base', | 190 '<(DEPTH)/base/base.gyp:test_support_base', |
| 192 '<(DEPTH)/content/content.gyp:content_app_both', | 191 '<(DEPTH)/content/content.gyp:content_app_both', |
| 193 '<(DEPTH)/content/content_shell_and_tests.gyp:content_browser_test_suppo
rt', | 192 '<(DEPTH)/content/content_shell_and_tests.gyp:content_browser_test_suppo
rt', |
| 194 '<(DEPTH)/content/content_shell_and_tests.gyp:test_support_content', | 193 '<(DEPTH)/content/content_shell_and_tests.gyp:test_support_content', |
| 195 '<(DEPTH)/testing/gtest.gyp:gtest', | 194 '<(DEPTH)/testing/gtest.gyp:gtest', |
| 196 ], | 195 ], |
| 197 'defines': [ | 196 'defines': [ |
| 198 'HAS_OUT_OF_PROC_TEST_RUNNER', | 197 'HAS_OUT_OF_PROC_TEST_RUNNER', |
| 199 ], | 198 ], |
| 200 'msvs_large_pdb': 1, | |
| 201 'sources': [ | 199 'sources': [ |
| 202 # TODO(yoz): Refactor once we have a second test target. | 200 # TODO(yoz): Refactor once we have a second test target. |
| 203 'browser/shell_browsertest.cc', | 201 'browser/shell_browsertest.cc', |
| 204 'test/shell_test.h', | 202 'test/shell_test.h', |
| 205 'test/shell_test.cc', | 203 'test/shell_test.cc', |
| 206 'test/shell_test_launcher_delegate.cc', | 204 'test/shell_test_launcher_delegate.cc', |
| 207 'test/shell_test_launcher_delegate.h', | 205 'test/shell_test_launcher_delegate.h', |
| 208 'test/shell_tests_main.cc', | 206 'test/shell_tests_main.cc', |
| 209 ], | 207 ], |
| 210 }, | 208 }, |
| 211 ], # targets | 209 ], # targets |
| 212 } | 210 } |
| OLD | NEW |