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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 'dependencies': [ | 59 'dependencies': [ |
60 '<(DEPTH)/base/base.gyp:base', | 60 '<(DEPTH)/base/base.gyp:base', |
61 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', | 61 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', |
62 '<(DEPTH)/skia/skia.gyp:skia', | 62 '<(DEPTH)/skia/skia.gyp:skia', |
63 '<(DEPTH)/ui/gl/gl.gyp:gl', | 63 '<(DEPTH)/ui/gl/gl.gyp:gl', |
64 '<(DEPTH)/ui/ui.gyp:ui', | 64 '<(DEPTH)/ui/ui.gyp:ui', |
65 ], | 65 ], |
66 'sources': [ | 66 'sources': [ |
67 'accelerated_surface_mac.cc', | 67 'accelerated_surface_mac.cc', |
68 'accelerated_surface_mac.h', | 68 'accelerated_surface_mac.h', |
| 69 'accelerated_surface_transformer_win.cc', |
| 70 'accelerated_surface_transformer_win.h', |
| 71 'accelerated_surface_transformer_win.hlsl', |
69 'accelerated_surface_win.cc', | 72 'accelerated_surface_win.cc', |
70 'accelerated_surface_win.h', | 73 'accelerated_surface_win.h', |
71 'accelerated_surface_win.hlsl', | 74 'd3d9_utils_win.cc', |
| 75 'd3d9_utils_win.h', |
72 'io_surface_support_mac.cc', | 76 'io_surface_support_mac.cc', |
73 'io_surface_support_mac.h', | 77 'io_surface_support_mac.h', |
74 'surface_export.h', | 78 'surface_export.h', |
75 'transport_dib.h', | 79 'transport_dib.h', |
76 'transport_dib_android.cc', | 80 'transport_dib_android.cc', |
77 'transport_dib_linux.cc', | 81 'transport_dib_linux.cc', |
78 'transport_dib_mac.cc', | 82 'transport_dib_mac.cc', |
79 'transport_dib_win.cc', | 83 'transport_dib_win.cc', |
80 ], | 84 ], |
81 'defines': [ | 85 'defines': [ |
82 'SURFACE_IMPLEMENTATION', | 86 'SURFACE_IMPLEMENTATION', |
83 ], | 87 ], |
84 }, | 88 }, |
85 ], | 89 ], |
| 90 'conditions': [ |
| 91 ['OS == "win"', { |
| 92 'targets': [ |
| 93 { |
| 94 'target_name': 'surface_gpu_tests', |
| 95 'type': '<(gtest_target_type)', |
| 96 'dependencies': [ |
| 97 '<(DEPTH)/base/base.gyp:base', |
| 98 '<(DEPTH)/base/base.gyp:run_all_unittests', |
| 99 '<(DEPTH)/testing/gtest.gyp:gtest', |
| 100 '<(DEPTH)/ui/ui.gyp:ui', |
| 101 'surface', |
| 102 ], |
| 103 'sources': [ |
| 104 'accelerated_surface_transformer_win_unittest.cc', |
| 105 ], |
| 106 }, |
| 107 ], |
| 108 }], |
| 109 ], |
86 } | 110 } |
OLD | NEW |