| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 # This file is meant to be included into targets which run gpu tests. | 5 # This file is meant to be included into targets which run gpu tests. |
| 6 { | 6 { |
| 7 'variables': { | 7 'variables': { |
| 8 'test_list_out_dir': '<(SHARED_INTERMEDIATE_DIR)/chrome/test/gpu', | 8 'test_list_out_dir': '<(SHARED_INTERMEDIATE_DIR)/chrome/test/gpu', |
| 9 'src_dir': '../../..', | 9 'src_dir': '../../..', |
| 10 }, | 10 }, |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 'defines': [ | 27 'defines': [ |
| 28 'HAS_OUT_OF_PROC_TEST_RUNNER', | 28 'HAS_OUT_OF_PROC_TEST_RUNNER', |
| 29 'BROWSER_TESTS_HEADER_OVERRIDE="chrome/test/base/in_process_browser_test.h"'
, | 29 'BROWSER_TESTS_HEADER_OVERRIDE="chrome/test/base/in_process_browser_test.h"'
, |
| 30 ], | 30 ], |
| 31 'include_dirs': [ | 31 'include_dirs': [ |
| 32 '<(src_dir)', | 32 '<(src_dir)', |
| 33 '<(test_list_out_dir)', | 33 '<(test_list_out_dir)', |
| 34 ], | 34 ], |
| 35 'sources': [ | 35 'sources': [ |
| 36 '<(src_dir)/chrome/test/base/chrome_test_launcher.cc', | 36 '<(src_dir)/chrome/test/base/chrome_test_launcher.cc', |
| 37 '<(src_dir)/content/app/startup_helper_win.cc', | |
| 38 '<(src_dir)/content/test/gpu/test_switches.cc', | 37 '<(src_dir)/content/test/gpu/test_switches.cc', |
| 39 '<(src_dir)/content/test/gpu/test_switches.h', | 38 '<(src_dir)/content/test/gpu/test_switches.h', |
| 40 ], | 39 ], |
| 41 # hard_dependency is necessary for this target because it has actions | 40 # hard_dependency is necessary for this target because it has actions |
| 42 # that generate a header file included by dependent targets. The header | 41 # that generate a header file included by dependent targets. The header |
| 43 # file must be generated before the dependents are compiled. The usual | 42 # file must be generated before the dependents are compiled. The usual |
| 44 # semantics are to allow the two targets to build concurrently. | 43 # semantics are to allow the two targets to build concurrently. |
| 45 'hard_dependency': 1, | 44 'hard_dependency': 1, |
| 46 'conditions': [ | 45 'conditions': [ |
| 47 ['OS=="win"', { | 46 ['OS=="win"', { |
| 48 'dependencies': [ | 47 'dependencies': [ |
| 49 'chrome_version_resources', | 48 'chrome_version_resources', |
| 50 '../sandbox/sandbox.gyp:sandbox', | |
| 51 ], | 49 ], |
| 52 'include_dirs': [ | 50 'include_dirs': [ |
| 53 '<(DEPTH)/third_party/wtl/include', | 51 '<(DEPTH)/third_party/wtl/include', |
| 54 ], | 52 ], |
| 55 'sources': [ | 53 'sources': [ |
| 56 '<(src_dir)/chrome/app/chrome_dll.rc', | 54 '<(src_dir)/chrome/app/chrome_dll.rc', |
| 57 '<(src_dir)/chrome/app/chrome_dll_resource.h', | 55 '<(src_dir)/chrome/app/chrome_dll_resource.h', |
| 58 '<(src_dir)/chrome/app/chrome_version.rc.version', | 56 '<(src_dir)/chrome/app/chrome_version.rc.version', |
| 59 '<(SHARED_INTERMEDIATE_DIR)/chrome/browser_resources.rc', | 57 '<(SHARED_INTERMEDIATE_DIR)/chrome/browser_resources.rc', |
| 60 '<(SHARED_INTERMEDIATE_DIR)/chrome/common_resources.rc', | 58 '<(SHARED_INTERMEDIATE_DIR)/chrome/common_resources.rc', |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 '<(src_dir)/build/linux/system.gyp:ssl', | 99 '<(src_dir)/build/linux/system.gyp:ssl', |
| 102 ], | 100 ], |
| 103 }], | 101 }], |
| 104 ['toolkit_views==1', { | 102 ['toolkit_views==1', { |
| 105 'dependencies': [ | 103 'dependencies': [ |
| 106 '<(src_dir)/ui/views/views.gyp:views', | 104 '<(src_dir)/ui/views/views.gyp:views', |
| 107 ], | 105 ], |
| 108 }], | 106 }], |
| 109 ], | 107 ], |
| 110 } | 108 } |
| OLD | NEW |