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 'target_defaults': { | 6 'target_defaults': { |
7 'sources/': [ | 7 'sources/': [ |
8 ['exclude', '/(cocoa|gtk|win)/'], | 8 ['exclude', '/(cocoa|gtk|win)/'], |
9 ['exclude', '_(cocoa|gtk|linux|mac|posix|win|x)\\.(cc|mm?)$'], | 9 ['exclude', '_(cocoa|gtk|linux|mac|posix|win|x)\\.(cc|mm?)$'], |
10 ['exclude', '/(gtk|win|x11)_[^/]*\\.cc$'], | 10 ['exclude', '/(gtk|win|x11)_[^/]*\\.cc$'], |
(...skipping 20 matching lines...) Expand all Loading... |
31 ]}], | 31 ]}], |
32 ], | 32 ], |
33 }, | 33 }, |
34 'targets': [ | 34 'targets': [ |
35 { | 35 { |
36 'target_name': 'surface', | 36 'target_name': 'surface', |
37 'type': '<(library)', | 37 'type': '<(library)', |
38 'msvs_guid': '6C99567D-6F02-43B5-BB35-D8E3F8D0D6D2', | 38 'msvs_guid': '6C99567D-6F02-43B5-BB35-D8E3F8D0D6D2', |
39 'dependencies': [ | 39 'dependencies': [ |
40 '<(DEPTH)/base/base.gyp:base', | 40 '<(DEPTH)/base/base.gyp:base', |
41 '<(DEPTH)/app/app.gyp:app_base', | |
42 '<(DEPTH)/skia/skia.gyp:skia', | 41 '<(DEPTH)/skia/skia.gyp:skia', |
| 42 '<(DEPTH)/ui/gfx/gl/gl.gyp:gl', |
43 '<(DEPTH)/ui/ui.gyp:ui_gfx', | 43 '<(DEPTH)/ui/ui.gyp:ui_gfx', |
44 ], | 44 ], |
45 'sources': [ | 45 'sources': [ |
46 'accelerated_surface_mac.cc', | 46 'accelerated_surface_mac.cc', |
47 'accelerated_surface_mac.h', | 47 'accelerated_surface_mac.h', |
48 'io_surface_support_mac.cc', | 48 'io_surface_support_mac.cc', |
49 'io_surface_support_mac.h', | 49 'io_surface_support_mac.h', |
50 'transport_dib.h', | 50 'transport_dib.h', |
51 'transport_dib_linux.cc', | 51 'transport_dib_linux.cc', |
52 'transport_dib_mac.cc', | 52 'transport_dib_mac.cc', |
53 'transport_dib_win.cc', | 53 'transport_dib_win.cc', |
54 ], | 54 ], |
55 }, | 55 }, |
56 ], | 56 ], |
57 } | 57 } |
OLD | NEW |