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 'targets': [ | 9 'targets': [ |
10 { | 10 { |
11 'target_name': 'compositor', | 11 'target_name': 'compositor', |
12 'type': '<(component)', | 12 'type': '<(component)', |
13 'dependencies': [ | 13 'dependencies': [ |
14 '<(DEPTH)/base/base.gyp:base', | 14 '<(DEPTH)/base/base.gyp:base', |
15 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', | 15 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', |
16 '<(DEPTH)/cc/cc.gyp:cc', | 16 '<(DEPTH)/cc/cc.gyp:cc', |
17 '<(DEPTH)/skia/skia.gyp:skia', | 17 '<(DEPTH)/skia/skia.gyp:skia', |
18 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink_minimal', | 18 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink_minimal', |
19 '<(DEPTH)/ui/events/events.gyp:events', | 19 '<(DEPTH)/ui/events/events.gyp:events', |
20 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', | 20 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', |
21 '<(DEPTH)/ui/gl/gl.gyp:gl', | 21 '<(DEPTH)/ui/gl/gl.gyp:gl', |
22 '<(DEPTH)/ui/ui.gyp:ui', | 22 '<(DEPTH)/ui/ui.gyp:ui', |
23 '<(DEPTH)/webkit/common/gpu/webkit_gpu.gyp:webkit_gpu', | |
24 ], | 23 ], |
25 'defines': [ | 24 'defines': [ |
26 'COMPOSITOR_IMPLEMENTATION', | 25 'COMPOSITOR_IMPLEMENTATION', |
27 ], | 26 ], |
28 'sources': [ | 27 'sources': [ |
29 'compositor.cc', | 28 'compositor.cc', |
30 'compositor.h', | 29 'compositor.h', |
31 'compositor_export.h', | 30 'compositor_export.h', |
32 'compositor_observer.h', | 31 'compositor_observer.h', |
33 'compositor_switches.cc', | 32 'compositor_switches.cc', |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
71 '<(angle_path)/src/build_angle.gyp:libGLESv2', | 70 '<(angle_path)/src/build_angle.gyp:libGLESv2', |
72 ], | 71 ], |
73 }], | 72 }], |
74 ], | 73 ], |
75 }, | 74 }, |
76 { | 75 { |
77 'target_name': 'compositor_test_support', | 76 'target_name': 'compositor_test_support', |
78 'type': 'static_library', | 77 'type': 'static_library', |
79 'dependencies': [ | 78 'dependencies': [ |
80 '<(DEPTH)/base/base.gyp:base', | 79 '<(DEPTH)/base/base.gyp:base', |
| 80 '<(DEPTH)/cc/cc.gyp:cc', |
81 '<(DEPTH)/skia/skia.gyp:skia', | 81 '<(DEPTH)/skia/skia.gyp:skia', |
| 82 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink_minimal', |
82 '<(DEPTH)/ui/events/events.gyp:events', | 83 '<(DEPTH)/ui/events/events.gyp:events', |
83 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', | 84 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', |
84 '<(DEPTH)/ui/gl/gl.gyp:gl', | 85 '<(DEPTH)/ui/gl/gl.gyp:gl', |
85 '<(DEPTH)/ui/ui.gyp:ui', | 86 '<(DEPTH)/ui/ui.gyp:ui', |
| 87 '<(DEPTH)/webkit/common/gpu/webkit_gpu.gyp:webkit_gpu', |
86 'compositor', | 88 'compositor', |
87 ], | 89 ], |
88 'sources': [ | 90 'sources': [ |
89 'test/test_layers.cc', | 91 'test/test_layers.cc', |
90 'test/test_layers.h', | 92 'test/test_layers.h', |
| 93 'test/test_context_factory.cc', |
| 94 'test/test_context_factory.h', |
| 95 'test/default_context_factory.cc', |
| 96 'test/default_context_factory.h', |
| 97 'test/context_factories_for_test.cc', |
| 98 'test/context_factories_for_test.h', |
91 'test/test_suite.cc', | 99 'test/test_suite.cc', |
92 'test/test_suite.h', | 100 'test/test_suite.h', |
93 ], | 101 ], |
94 }, | 102 }, |
95 { | 103 { |
96 'target_name': 'compositor_unittests', | 104 'target_name': 'compositor_unittests', |
97 'type': 'executable', | 105 'type': 'executable', |
98 'dependencies': [ | 106 'dependencies': [ |
99 '<(DEPTH)/base/base.gyp:base', | 107 '<(DEPTH)/base/base.gyp:base', |
100 '<(DEPTH)/base/base.gyp:test_support_base', | 108 '<(DEPTH)/base/base.gyp:test_support_base', |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
144 'dependencies': [ | 152 'dependencies': [ |
145 '<(DEPTH)/base/allocator/allocator.gyp:allocator', | 153 '<(DEPTH)/base/allocator/allocator.gyp:allocator', |
146 ], | 154 ], |
147 }], | 155 }], |
148 ], | 156 ], |
149 }], | 157 }], |
150 ], | 158 ], |
151 }, | 159 }, |
152 ], | 160 ], |
153 } | 161 } |
OLD | NEW |