OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'compositor', | 8 'target_name': 'compositor', |
9 'type': '<(library)', | 9 'type': '<(library)', |
10 'msvs_guid': '21CEE0E3-6F4E-4F01-B8C9-F7751CC21AA9', | 10 'msvs_guid': '21CEE0E3-6F4E-4F01-B8C9-F7751CC21AA9', |
11 'dependencies': [ | 11 'dependencies': [ |
12 '<(DEPTH)/base/base.gyp:base', | 12 '<(DEPTH)/base/base.gyp:base', |
13 '<(DEPTH)/app/app.gyp:app_base', | 13 '<(DEPTH)/ui/gfx/gl/gl.gyp:gl', |
14 '<(DEPTH)/ui/ui.gyp:ui_gfx', | 14 '<(DEPTH)/ui/ui.gyp:ui_gfx', |
15 ], | 15 ], |
16 'sources': [ | 16 'sources': [ |
17 'compositor.cc', | 17 'compositor.cc', |
18 'compositor_gl.cc', | 18 'compositor_gl.cc', |
19 'compositor.h', | 19 'compositor.h', |
20 ], | 20 ], |
21 'conditions': [ | 21 'conditions': [ |
22 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', { | 22 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', { |
23 'sources!': [ | 23 'sources!': [ |
24 'compositor.cc', | 24 'compositor.cc', |
25 ], | 25 ], |
26 }, { | 26 }, { |
27 'sources!': [ | 27 'sources!': [ |
28 'compositor_gl.cc', | 28 'compositor_gl.cc', |
29 ] | 29 ] |
30 }], | 30 }], |
31 ], | 31 ], |
32 }, | 32 }, |
33 ], | 33 ], |
34 } | 34 } |
OLD | NEW |