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)/gpu/gpu.gyp:gpu', |
17 '<(DEPTH)/skia/skia.gyp:skia', | 18 '<(DEPTH)/skia/skia.gyp:skia', |
18 '<(DEPTH)/third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', | 19 '<(DEPTH)/third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', |
19 '<(DEPTH)/ui/gl/gl.gyp:gl', | 20 '<(DEPTH)/ui/gl/gl.gyp:gl', |
20 '<(DEPTH)/ui/ui.gyp:ui', | 21 '<(DEPTH)/ui/ui.gyp:ui', |
21 '<(DEPTH)/webkit/gpu/webkit_gpu.gyp:webkit_gpu', | 22 '<(DEPTH)/webkit/gpu/webkit_gpu.gyp:webkit_gpu', |
22 ], | 23 ], |
23 'defines': [ | 24 'defines': [ |
24 'COMPOSITOR_IMPLEMENTATION', | 25 'COMPOSITOR_IMPLEMENTATION', |
25 ], | 26 ], |
26 'sources': [ | 27 'sources': [ |
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
139 # osmesa GL implementation is used on linux. | 140 # osmesa GL implementation is used on linux. |
140 ['OS=="linux"', { | 141 ['OS=="linux"', { |
141 'dependencies': [ | 142 'dependencies': [ |
142 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa', | 143 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa', |
143 ], | 144 ], |
144 }], | 145 }], |
145 ], | 146 ], |
146 }, | 147 }, |
147 ], | 148 ], |
148 } | 149 } |
OLD | NEW |