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': 'ppapi_shared_impl', | 8 'target_name': 'ppapi_shared_impl', |
9 'type': 'static_library', | 9 'type': 'static_library', |
10 'dependencies': [ | 10 'dependencies': [ |
(...skipping 10 matching lines...) Expand all Loading... |
21 'export_dependent_settings': [ | 21 'export_dependent_settings': [ |
22 '../base/base.gyp:base', | 22 '../base/base.gyp:base', |
23 ], | 23 ], |
24 'sources': [ | 24 'sources': [ |
25 'shared_impl/audio_impl.cc', | 25 'shared_impl/audio_impl.cc', |
26 'shared_impl/audio_impl.h', | 26 'shared_impl/audio_impl.h', |
27 'shared_impl/char_set_impl.cc', | 27 'shared_impl/char_set_impl.cc', |
28 'shared_impl/char_set_impl.h', | 28 'shared_impl/char_set_impl.h', |
29 'shared_impl/crypto_impl.cc', | 29 'shared_impl/crypto_impl.cc', |
30 'shared_impl/crypto_impl.h', | 30 'shared_impl/crypto_impl.h', |
| 31 'shared_impl/font_impl.cc', |
| 32 'shared_impl/font_impl.h', |
31 'shared_impl/image_data_impl.cc', | 33 'shared_impl/image_data_impl.cc', |
32 'shared_impl/image_data_impl.h', | 34 'shared_impl/image_data_impl.h', |
33 'shared_impl/tracker_base.cc', | 35 'shared_impl/tracker_base.cc', |
34 'shared_impl/tracker_base.h', | 36 'shared_impl/tracker_base.h', |
35 'shared_impl/url_util_impl.cc', | 37 'shared_impl/url_util_impl.cc', |
36 'shared_impl/url_util_impl.h', | 38 'shared_impl/url_util_impl.h', |
37 | 39 |
38 'thunk/enter.h', | 40 'thunk/enter.h', |
| 41 'thunk/ppb_font_api.h', |
| 42 'thunk/ppb_font_thunk.cc', |
39 'thunk/ppb_graphics_2d_api.h', | 43 'thunk/ppb_graphics_2d_api.h', |
40 'thunk/ppb_graphics_2d_thunk.cc', | 44 'thunk/ppb_graphics_2d_thunk.cc', |
41 'thunk/ppb_image_data_api.h', | 45 'thunk/ppb_image_data_api.h', |
42 'thunk/ppb_image_data_thunk.cc', | 46 'thunk/ppb_image_data_thunk.cc', |
43 'thunk/thunk.h', | 47 'thunk/thunk.h', |
44 ], | 48 ], |
45 'conditions': [ | 49 'conditions': [ |
46 ['OS=="win"', { | 50 ['OS=="win"', { |
47 'msvs_guid': 'E7420D65-A885-41EB-B4BE-04DE0C97033B', | 51 'msvs_guid': 'E7420D65-A885-41EB-B4BE-04DE0C97033B', |
48 }], | 52 }], |
49 ], | 53 ], |
50 }, | 54 }, |
51 { | 55 { |
52 'target_name': 'ppapi_proxy', | 56 'target_name': 'ppapi_proxy', |
53 'type': 'static_library', | 57 'type': 'static_library', |
54 'dependencies': [ | 58 'dependencies': [ |
55 '../ipc/ipc.gyp:ipc', | 59 '../ipc/ipc.gyp:ipc', |
56 '../gpu/gpu.gyp:gpu_ipc', | 60 '../gpu/gpu.gyp:gpu_ipc', |
| 61 '../skia/skia.gyp:skia', |
57 'ppapi_c', | 62 'ppapi_c', |
58 'ppapi_shared_impl', | 63 'ppapi_shared_impl', |
59 ], | 64 ], |
60 'all_dependent_settings': { | 65 'all_dependent_settings': { |
61 'include_dirs': [ | 66 'include_dirs': [ |
62 '..', | 67 '..', |
63 ], | 68 ], |
64 }, | 69 }, |
65 'include_dirs': [ | 70 'include_dirs': [ |
66 '..', | 71 '..', |
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
188 ['OS=="win"', { | 193 ['OS=="win"', { |
189 }], | 194 }], |
190 ['OS=="linux"', { | 195 ['OS=="linux"', { |
191 }], | 196 }], |
192 ['OS=="mac"', { | 197 ['OS=="mac"', { |
193 }] | 198 }] |
194 ], | 199 ], |
195 }, | 200 }, |
196 ], | 201 ], |
197 } | 202 } |
OLD | NEW |