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', | |
23 ], | 22 ], |
24 'defines': [ | 23 'defines': [ |
25 'COMPOSITOR_IMPLEMENTATION', | 24 'COMPOSITOR_IMPLEMENTATION', |
26 ], | 25 ], |
27 'sources': [ | 26 'sources': [ |
28 'compositor.cc', | 27 'compositor.cc', |
29 'compositor.h', | 28 'compositor.h', |
30 'compositor_export.h', | 29 'compositor_export.h', |
31 'compositor_observer.h', | 30 'compositor_observer.h', |
32 'compositor_switches.cc', | 31 'compositor_switches.cc', |
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
153 'dependencies': [ | 152 'dependencies': [ |
154 '<(DEPTH)/base/allocator/allocator.gyp:allocator', | 153 '<(DEPTH)/base/allocator/allocator.gyp:allocator', |
155 ], | 154 ], |
156 }], | 155 }], |
157 ], | 156 ], |
158 }], | 157 }], |
159 ], | 158 ], |
160 }, | 159 }, |
161 ], | 160 ], |
162 } | 161 } |
OLD | NEW |