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/gfx/gfx.gyp:gfx', | 20 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', |
20 '<(DEPTH)/ui/gl/gl.gyp:gl', | 21 '<(DEPTH)/ui/gl/gl.gyp:gl', |
21 '<(DEPTH)/ui/ui.gyp:ui', | 22 '<(DEPTH)/ui/ui.gyp:ui', |
22 '<(DEPTH)/webkit/common/gpu/webkit_gpu.gyp:webkit_gpu', | 23 '<(DEPTH)/webkit/common/gpu/webkit_gpu.gyp:webkit_gpu', |
23 ], | 24 ], |
24 'defines': [ | 25 'defines': [ |
25 'COMPOSITOR_IMPLEMENTATION', | 26 'COMPOSITOR_IMPLEMENTATION', |
26 ], | 27 ], |
27 'sources': [ | 28 'sources': [ |
28 'compositor.cc', | 29 'compositor.cc', |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
71 ], | 72 ], |
72 }], | 73 }], |
73 ], | 74 ], |
74 }, | 75 }, |
75 { | 76 { |
76 'target_name': 'compositor_test_support', | 77 'target_name': 'compositor_test_support', |
77 'type': 'static_library', | 78 'type': 'static_library', |
78 'dependencies': [ | 79 'dependencies': [ |
79 '<(DEPTH)/base/base.gyp:base', | 80 '<(DEPTH)/base/base.gyp:base', |
80 '<(DEPTH)/skia/skia.gyp:skia', | 81 '<(DEPTH)/skia/skia.gyp:skia', |
| 82 '<(DEPTH)/ui/events/events.gyp:events', |
81 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', | 83 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', |
82 '<(DEPTH)/ui/gl/gl.gyp:gl', | 84 '<(DEPTH)/ui/gl/gl.gyp:gl', |
83 '<(DEPTH)/ui/ui.gyp:ui', | 85 '<(DEPTH)/ui/ui.gyp:ui', |
84 'compositor', | 86 'compositor', |
85 ], | 87 ], |
86 'sources': [ | 88 'sources': [ |
87 'test/test_layers.cc', | 89 'test/test_layers.cc', |
88 'test/test_layers.h', | 90 'test/test_layers.h', |
89 'test/test_suite.cc', | 91 'test/test_suite.cc', |
90 'test/test_suite.h', | 92 'test/test_suite.h', |
91 ], | 93 ], |
92 }, | 94 }, |
93 { | 95 { |
94 'target_name': 'compositor_unittests', | 96 'target_name': 'compositor_unittests', |
95 'type': 'executable', | 97 'type': 'executable', |
96 'dependencies': [ | 98 'dependencies': [ |
97 '<(DEPTH)/base/base.gyp:base', | 99 '<(DEPTH)/base/base.gyp:base', |
98 '<(DEPTH)/base/base.gyp:test_support_base', | 100 '<(DEPTH)/base/base.gyp:test_support_base', |
99 '<(DEPTH)/cc/cc.gyp:cc', | 101 '<(DEPTH)/cc/cc.gyp:cc', |
100 '<(DEPTH)/cc/cc_tests.gyp:cc_test_utils', | 102 '<(DEPTH)/cc/cc_tests.gyp:cc_test_utils', |
101 '<(DEPTH)/skia/skia.gyp:skia', | 103 '<(DEPTH)/skia/skia.gyp:skia', |
102 '<(DEPTH)/testing/gtest.gyp:gtest', | 104 '<(DEPTH)/testing/gtest.gyp:gtest', |
| 105 '<(DEPTH)/ui/events/events.gyp:events', |
103 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', | 106 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', |
104 '<(DEPTH)/ui/gl/gl.gyp:gl', | 107 '<(DEPTH)/ui/gl/gl.gyp:gl', |
105 '<(DEPTH)/ui/ui.gyp:ui', | 108 '<(DEPTH)/ui/ui.gyp:ui', |
106 '<(DEPTH)/ui/ui.gyp:ui_resources', | 109 '<(DEPTH)/ui/ui.gyp:ui_resources', |
107 'compositor', | 110 'compositor', |
108 'compositor_test_support', | 111 'compositor_test_support', |
109 ], | 112 ], |
110 'sources': [ | 113 'sources': [ |
111 'layer_animation_element_unittest.cc', | 114 'layer_animation_element_unittest.cc', |
112 'layer_animation_sequence_unittest.cc', | 115 'layer_animation_sequence_unittest.cc', |
(...skipping 28 matching lines...) Expand all Loading... |
141 'dependencies': [ | 144 'dependencies': [ |
142 '<(DEPTH)/base/allocator/allocator.gyp:allocator', | 145 '<(DEPTH)/base/allocator/allocator.gyp:allocator', |
143 ], | 146 ], |
144 }], | 147 }], |
145 ], | 148 ], |
146 }], | 149 }], |
147 ], | 150 ], |
148 }, | 151 }, |
149 ], | 152 ], |
150 } | 153 } |
OLD | NEW |