| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 '<(DEPTH)/third_party/wtl/include', | 49 '<(DEPTH)/third_party/wtl/include', |
| 50 ], | 50 ], |
| 51 'sources': [ | 51 'sources': [ |
| 52 '<(src_dir)/chrome/app/chrome_dll.rc', | 52 '<(src_dir)/chrome/app/chrome_dll.rc', |
| 53 '<(src_dir)/chrome/app/chrome_dll_resource.h', | 53 '<(src_dir)/chrome/app/chrome_dll_resource.h', |
| 54 '<(src_dir)/chrome/app/chrome_version.rc.version', | 54 '<(src_dir)/chrome/app/chrome_version.rc.version', |
| 55 '<(SHARED_INTERMEDIATE_DIR)/chrome/browser_resources.rc', | 55 '<(SHARED_INTERMEDIATE_DIR)/chrome/browser_resources.rc', |
| 56 '<(SHARED_INTERMEDIATE_DIR)/chrome/common_resources.rc', | 56 '<(SHARED_INTERMEDIATE_DIR)/chrome/common_resources.rc', |
| 57 '<(SHARED_INTERMEDIATE_DIR)/chrome/extensions_api_resources.rc', | 57 '<(SHARED_INTERMEDIATE_DIR)/chrome/extensions_api_resources.rc', |
| 58 '<(SHARED_INTERMEDIATE_DIR)/chrome/renderer_resources.rc', | 58 '<(SHARED_INTERMEDIATE_DIR)/chrome/renderer_resources.rc', |
| 59 '<(SHARED_INTERMEDIATE_DIR)/chrome/theme_resources.rc', | |
| 60 '<(SHARED_INTERMEDIATE_DIR)/chrome/theme_resources_standard.rc', | 59 '<(SHARED_INTERMEDIATE_DIR)/chrome/theme_resources_standard.rc', |
| 61 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/other_version.rc', | 60 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/other_version.rc', |
| 62 '<(SHARED_INTERMEDIATE_DIR)/content/content_resources.rc', | 61 '<(SHARED_INTERMEDIATE_DIR)/content/content_resources.rc', |
| 63 '<(SHARED_INTERMEDIATE_DIR)/net/net_resources.rc', | 62 '<(SHARED_INTERMEDIATE_DIR)/net/net_resources.rc', |
| 64 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc', | 63 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources_standard.rc', |
| 65 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources_standard/ui_resources_standa
rd.rc', | |
| 66 '<(SHARED_INTERMEDIATE_DIR)/webkit/webkit_chromium_resources.rc', | 64 '<(SHARED_INTERMEDIATE_DIR)/webkit/webkit_chromium_resources.rc', |
| 67 '<(SHARED_INTERMEDIATE_DIR)/webkit/webkit_resources.rc', | 65 '<(SHARED_INTERMEDIATE_DIR)/webkit/webkit_resources.rc', |
| 68 ], | 66 ], |
| 69 'conditions': [ | 67 'conditions': [ |
| 70 ['win_use_allocator_shim==1', { | 68 ['win_use_allocator_shim==1', { |
| 71 'dependencies': [ | 69 'dependencies': [ |
| 72 '<(allocator_target)', | 70 '<(allocator_target)', |
| 73 ], | 71 ], |
| 74 }], | 72 }], |
| 75 ], | 73 ], |
| (...skipping 21 matching lines...) Expand all Loading... |
| 97 '<(src_dir)/build/linux/system.gyp:ssl', | 95 '<(src_dir)/build/linux/system.gyp:ssl', |
| 98 ], | 96 ], |
| 99 }], | 97 }], |
| 100 ['toolkit_views==1', { | 98 ['toolkit_views==1', { |
| 101 'dependencies': [ | 99 'dependencies': [ |
| 102 '<(src_dir)/ui/views/views.gyp:views', | 100 '<(src_dir)/ui/views/views.gyp:views', |
| 103 ], | 101 ], |
| 104 }], | 102 }], |
| 105 ], | 103 ], |
| 106 } | 104 } |
| OLD | NEW |