OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 'target_defaults': { | 9 'target_defaults': { |
10 'sources/': [ | 10 'sources/': [ |
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
100 'dependencies': [ | 100 'dependencies': [ |
101 '<(DEPTH)/third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:web
kit', | 101 '<(DEPTH)/third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:web
kit', |
102 '<(DEPTH)/webkit/support/webkit_support.gyp:fileapi', | 102 '<(DEPTH)/webkit/support/webkit_support.gyp:fileapi', |
103 '<(DEPTH)/webkit/support/webkit_support.gyp:glue', | 103 '<(DEPTH)/webkit/support/webkit_support.gyp:glue', |
104 '<(DEPTH)/webkit/support/webkit_support.gyp:webkit_gpu', | 104 '<(DEPTH)/webkit/support/webkit_support.gyp:webkit_gpu', |
105 ], | 105 ], |
106 }, { | 106 }, { |
107 'sources!': [ | 107 'sources!': [ |
108 'compositor_cc.cc', | 108 'compositor_cc.cc', |
109 'compositor_cc.h', | 109 'compositor_cc.h', |
| 110 'test_web_graphics_context_3d.cc', |
| 111 'test_web_graphics_context_3d.h', |
110 ], | 112 ], |
111 } | 113 } |
112 ], | 114 ], |
113 ], | 115 ], |
114 }, | 116 }, |
115 { | 117 { |
116 'target_name': 'compositor_test_support', | 118 'target_name': 'compositor_test_support', |
117 'type': 'static_library', | 119 'type': 'static_library', |
118 'dependencies': [ | 120 'dependencies': [ |
119 '<(DEPTH)/base/base.gyp:base', | 121 '<(DEPTH)/base/base.gyp:base', |
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
209 'test/test_compositor.cc', | 211 'test/test_compositor.cc', |
210 'test/test_compositor.h', | 212 'test/test_compositor.h', |
211 'test/test_texture.cc', | 213 'test/test_texture.cc', |
212 'test/test_texture.h', | 214 'test/test_texture.h', |
213 ], | 215 ], |
214 }], | 216 }], |
215 ], | 217 ], |
216 }, | 218 }, |
217 ], | 219 ], |
218 } | 220 } |
OLD | NEW |