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)/skia/skia.gyp:skia', | 16 '<(DEPTH)/skia/skia.gyp:skia', |
17 '<(DEPTH)/third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', | 17 '<(DEPTH)/third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', |
18 '<(DEPTH)/ui/gl/gl.gyp:gl', | 18 '<(DEPTH)/ui/gl/gl.gyp:gl', |
19 '<(DEPTH)/ui/ui.gyp:ui', | 19 '<(DEPTH)/ui/ui.gyp:ui', |
| 20 '<(DEPTH)/ui/cc/cc.gyp:cc', |
20 '<(DEPTH)/webkit/support/webkit_support.gyp:fileapi', | 21 '<(DEPTH)/webkit/support/webkit_support.gyp:fileapi', |
21 '<(DEPTH)/webkit/support/webkit_support.gyp:glue', | 22 '<(DEPTH)/webkit/support/webkit_support.gyp:glue', |
22 '<(DEPTH)/webkit/support/webkit_support.gyp:webkit_gpu', | 23 '<(DEPTH)/webkit/support/webkit_support.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', |
29 'compositor.h', | 30 'compositor.h', |
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
135 # osmesa GL implementation is used on linux. | 136 # osmesa GL implementation is used on linux. |
136 ['OS=="linux"', { | 137 ['OS=="linux"', { |
137 'dependencies': [ | 138 'dependencies': [ |
138 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa', | 139 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa', |
139 ], | 140 ], |
140 }], | 141 }], |
141 ], | 142 ], |
142 }, | 143 }, |
143 ], | 144 ], |
144 } | 145 } |
OLD | NEW |