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