| 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 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 }, | 8 }, |
| 9 | 9 |
| 10 'target_defaults': { | 10 'target_defaults': { |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 ], | 89 ], |
| 90 'conditions': [ | 90 'conditions': [ |
| 91 ['OS == "win"', { | 91 ['OS == "win"', { |
| 92 'targets': [ | 92 'targets': [ |
| 93 { | 93 { |
| 94 'target_name': 'surface_gpu_tests', | 94 'target_name': 'surface_gpu_tests', |
| 95 'type': '<(gtest_target_type)', | 95 'type': '<(gtest_target_type)', |
| 96 'dependencies': [ | 96 'dependencies': [ |
| 97 '<(DEPTH)/base/base.gyp:base', | 97 '<(DEPTH)/base/base.gyp:base', |
| 98 '<(DEPTH)/base/base.gyp:run_all_unittests', | 98 '<(DEPTH)/base/base.gyp:run_all_unittests', |
| 99 '<(DEPTH)/media/media.gyp:yuv_convert', |
| 100 '<(DEPTH)/skia/skia.gyp:skia', |
| 99 '<(DEPTH)/testing/gtest.gyp:gtest', | 101 '<(DEPTH)/testing/gtest.gyp:gtest', |
| 100 '<(DEPTH)/ui/ui.gyp:ui', | 102 '<(DEPTH)/ui/ui.gyp:ui', |
| 101 'surface', | 103 'surface', |
| 102 ], | 104 ], |
| 103 'sources': [ | 105 'sources': [ |
| 104 'accelerated_surface_transformer_win_unittest.cc', | 106 'accelerated_surface_transformer_win_unittest.cc', |
| 105 ], | 107 ], |
| 106 }, | 108 }, |
| 107 ], | 109 ], |
| 108 }], | 110 }], |
| 109 ], | 111 ], |
| 110 } | 112 } |
| OLD | NEW |