| 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 }, |
| 11 'dependencies': [ | 11 'dependencies': [ |
| 12 'browser', | 12 'browser', |
| 13 'chrome', | 13 'chrome', |
| 14 'chrome_resources.gyp:chrome_resources', | 14 'chrome_resources.gyp:chrome_resources', |
| 15 'chrome_resources.gyp:chrome_strings', | 15 'chrome_resources.gyp:chrome_strings', |
| 16 'renderer', | 16 'renderer', |
| 17 'test_support_common', | 17 'test_support_common', |
| 18 'test_support_ui', | 18 'test_support_ui', |
| 19 '<(src_dir)/base/base.gyp:base', | 19 '<(src_dir)/base/base.gyp:base', |
| 20 '<(src_dir)/base/base.gyp:test_support_base', | 20 '<(src_dir)/base/base.gyp:test_support_base', |
| 21 '<(src_dir)/net/net.gyp:net_test_support', | 21 '<(src_dir)/net/net.gyp:net_test_support', |
| 22 '<(src_dir)/skia/skia.gyp:skia', | 22 '<(src_dir)/skia/skia.gyp:skia', |
| 23 '<(src_dir)/testing/gtest.gyp:gtest', | 23 '<(src_dir)/testing/gtest.gyp:gtest', |
| 24 '<(src_dir)/third_party/icu/icu.gyp:icui18n', | 24 '<(src_dir)/third_party/icu/icu.gyp:icui18n', |
| 25 '<(src_dir)/third_party/icu/icu.gyp:icuuc', | 25 '<(src_dir)/third_party/icu/icu.gyp:icuuc', |
| 26 ], | 26 ], |
| 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"'
, | |
| 30 ], | 29 ], |
| 31 'include_dirs': [ | 30 'include_dirs': [ |
| 32 '<(src_dir)', | 31 '<(src_dir)', |
| 33 '<(test_list_out_dir)', | 32 '<(test_list_out_dir)', |
| 34 ], | 33 ], |
| 35 'sources': [ | 34 'sources': [ |
| 36 '<(src_dir)/chrome/test/base/chrome_test_launcher.cc', | 35 '<(src_dir)/chrome/test/base/chrome_test_launcher.cc', |
| 37 ], | 36 ], |
| 38 # hard_dependency is necessary for this target because it has actions | 37 # hard_dependency is necessary for this target because it has actions |
| 39 # that generate a header file included by dependent targets. The header | 38 # that generate a header file included by dependent targets. The header |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 '<(src_dir)/build/linux/system.gyp:ssl', | 94 '<(src_dir)/build/linux/system.gyp:ssl', |
| 96 ], | 95 ], |
| 97 }], | 96 }], |
| 98 ['toolkit_views==1', { | 97 ['toolkit_views==1', { |
| 99 'dependencies': [ | 98 'dependencies': [ |
| 100 '<(src_dir)/ui/views/views.gyp:views', | 99 '<(src_dir)/ui/views/views.gyp:views', |
| 101 ], | 100 ], |
| 102 }], | 101 }], |
| 103 ], | 102 ], |
| 104 } | 103 } |
| OLD | NEW |